Subversion Repositories group.electronics

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
158 pfowler 1
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>Newtonsoft.Json</name>
5
    </assembly>
6
    <members>
7
        <member name="T:Newtonsoft.Json.Bson.BsonReader">
8
            <summary>
9
            Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
10
            </summary>
11
        </member>
12
        <member name="T:Newtonsoft.Json.JsonReader">
13
            <summary>
14
            Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
15
            </summary>
16
        </member>
17
        <member name="M:Newtonsoft.Json.JsonReader.#ctor">
18
            <summary>
19
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
20
            </summary>
21
        </member>
22
        <member name="M:Newtonsoft.Json.JsonReader.Read">
23
            <summary>
24
            Reads the next JSON token from the stream.
25
            </summary>
26
            <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
27
        </member>
28
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
29
            <summary>
30
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
31
            </summary>
32
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
33
        </member>
34
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
35
            <summary>
36
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
37
            </summary>
38
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
39
        </member>
40
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
41
            <summary>
42
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
43
            </summary>
44
            <returns>A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>
45
        </member>
46
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
47
            <summary>
48
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
49
            </summary>
50
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
51
        </member>
52
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
53
            <summary>
54
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
55
            </summary>
56
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
57
        </member>
58
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">
59
            <summary>
60
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
61
            </summary>
62
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
63
        </member>
64
        <member name="M:Newtonsoft.Json.JsonReader.Skip">
65
            <summary>
66
            Skips the children of the current token.
67
            </summary>
68
        </member>
69
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
70
            <summary>
71
            Sets the current token.
72
            </summary>
73
            <param name="newToken">The new token.</param>
74
        </member>
75
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
76
            <summary>
77
            Sets the current token and value.
78
            </summary>
79
            <param name="newToken">The new token.</param>
80
            <param name="value">The value.</param>
81
        </member>
82
        <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
83
            <summary>
84
            Sets the state based on current token type.
85
            </summary>
86
        </member>
87
        <member name="M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose">
88
            <summary>
89
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
90
            </summary>
91
        </member>
92
        <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
93
            <summary>
94
            Releases unmanaged and - optionally - managed resources
95
            </summary>
96
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
97
        </member>
98
        <member name="M:Newtonsoft.Json.JsonReader.Close">
99
            <summary>
100
            Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed. 
101
            </summary>
102
        </member>
103
        <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
104
            <summary>
105
            Gets the current reader state.
106
            </summary>
107
            <value>The current reader state.</value>
108
        </member>
109
        <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
110
            <summary>
111
            Gets or sets a value indicating whether the underlying stream or
112
            <see cref="T:System.IO.TextReader"/> should be closed when the reader is closed.
113
            </summary>
114
            <value>
115
            true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
116
            the reader is closed; otherwise false. The default is true.
117
            </value>
118
        </member>
119
        <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">
120
            <summary>
121
            Gets or sets a value indicating whether multiple pieces of JSON content can
122
            be read from a continuous stream without erroring.
123
            </summary>
124
            <value>
125
            true to support reading multiple pieces of JSON content; otherwise false. The default is false.
126
            </value>
127
        </member>
128
        <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
129
            <summary>
130
            Gets the quotation mark character used to enclose the value of a string.
131
            </summary>
132
        </member>
133
        <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
134
            <summary>
135
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when reading JSON.
136
            </summary>
137
        </member>
138
        <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
139
            <summary>
140
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
141
            </summary>
142
        </member>
143
        <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
144
            <summary>
145
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
146
            </summary>
147
        </member>
148
        <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
149
            <summary>
150
            Get or set how custom date formatted strings are parsed when reading JSON.
151
            </summary>
152
        </member>
153
        <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
154
            <summary>
155
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
156
            </summary>
157
        </member>
158
        <member name="P:Newtonsoft.Json.JsonReader.TokenType">
159
            <summary>
160
            Gets the type of the current JSON token. 
161
            </summary>
162
        </member>
163
        <member name="P:Newtonsoft.Json.JsonReader.Value">
164
            <summary>
165
            Gets the text value of the current JSON token.
166
            </summary>
167
        </member>
168
        <member name="P:Newtonsoft.Json.JsonReader.ValueType">
169
            <summary>
170
            Gets The Common Language Runtime (CLR) type for the current JSON token.
171
            </summary>
172
        </member>
173
        <member name="P:Newtonsoft.Json.JsonReader.Depth">
174
            <summary>
175
            Gets the depth of the current token in the JSON document.
176
            </summary>
177
            <value>The depth of the current token in the JSON document.</value>
178
        </member>
179
        <member name="P:Newtonsoft.Json.JsonReader.Path">
180
            <summary>
181
            Gets the path of the current JSON token. 
182
            </summary>
183
        </member>
184
        <member name="P:Newtonsoft.Json.JsonReader.Culture">
185
            <summary>
186
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
187
            </summary>
188
        </member>
189
        <member name="T:Newtonsoft.Json.JsonReader.State">
190
            <summary>
191
            Specifies the state of the reader.
192
            </summary>
193
        </member>
194
        <member name="F:Newtonsoft.Json.JsonReader.State.Start">
195
            <summary>
196
            The Read method has not been called.
197
            </summary>
198
        </member>
199
        <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
200
            <summary>
201
            The end of the file has been reached successfully.
202
            </summary>
203
        </member>
204
        <member name="F:Newtonsoft.Json.JsonReader.State.Property">
205
            <summary>
206
            Reader is at a property.
207
            </summary>
208
        </member>
209
        <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
210
            <summary>
211
            Reader is at the start of an object.
212
            </summary>
213
        </member>
214
        <member name="F:Newtonsoft.Json.JsonReader.State.Object">
215
            <summary>
216
            Reader is in an object.
217
            </summary>
218
        </member>
219
        <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
220
            <summary>
221
            Reader is at the start of an array.
222
            </summary>
223
        </member>
224
        <member name="F:Newtonsoft.Json.JsonReader.State.Array">
225
            <summary>
226
            Reader is in an array.
227
            </summary>
228
        </member>
229
        <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
230
            <summary>
231
            The Close method has been called.
232
            </summary>
233
        </member>
234
        <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
235
            <summary>
236
            Reader has just read a value.
237
            </summary>
238
        </member>
239
        <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
240
            <summary>
241
            Reader is at the start of a constructor.
242
            </summary>
243
        </member>
244
        <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
245
            <summary>
246
            Reader in a constructor.
247
            </summary>
248
        </member>
249
        <member name="F:Newtonsoft.Json.JsonReader.State.Error">
250
            <summary>
251
            An error occurred that prevents the read operation from continuing.
252
            </summary>
253
        </member>
254
        <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
255
            <summary>
256
            The end of the file has been reached successfully.
257
            </summary>
258
        </member>
259
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
260
            <summary>
261
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
262
            </summary>
263
            <param name="stream">The stream.</param>
264
        </member>
265
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
266
            <summary>
267
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
268
            </summary>
269
            <param name="reader">The reader.</param>
270
        </member>
271
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
272
            <summary>
273
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
274
            </summary>
275
            <param name="stream">The stream.</param>
276
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
277
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
278
        </member>
279
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
280
            <summary>
281
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
282
            </summary>
283
            <param name="reader">The reader.</param>
284
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
285
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
286
        </member>
287
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
288
            <summary>
289
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
290
            </summary>
291
            <returns>
292
            A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
293
            </returns>
294
        </member>
295
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal">
296
            <summary>
297
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
298
            </summary>
299
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
300
        </member>
301
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
302
            <summary>
303
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
304
            </summary>
305
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
306
        </member>
307
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsString">
308
            <summary>
309
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
310
            </summary>
311
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
312
        </member>
313
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime">
314
            <summary>
315
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
316
            </summary>
317
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
318
        </member>
319
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset">
320
            <summary>
321
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
322
            </summary>
323
            <returns>
324
            A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.
325
            </returns>
326
        </member>
327
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
328
            <summary>
329
            Reads the next JSON token from the stream.
330
            </summary>
331
            <returns>
332
            true if the next token was read successfully; false if there are no more tokens to read.
333
            </returns>
334
        </member>
335
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
336
            <summary>
337
            Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed.
338
            </summary>
339
        </member>
340
        <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
341
            <summary>
342
            Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.
343
            </summary>
344
            <value>
345
            	<c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
346
            </value>
347
        </member>
348
        <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
349
            <summary>
350
            Gets or sets a value indicating whether the root object will be read as a JSON array.
351
            </summary>
352
            <value>
353
            	<c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
354
            </value>
355
        </member>
356
        <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
357
            <summary>
358
            Gets or sets the <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.
359
            </summary>
360
            <value>The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
361
        </member>
362
        <member name="T:Newtonsoft.Json.Bson.BsonWriter">
363
            <summary>
364
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
365
            </summary>
366
        </member>
367
        <member name="T:Newtonsoft.Json.JsonWriter">
368
            <summary>
369
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
370
            </summary>
371
        </member>
372
        <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
373
            <summary>
374
            Creates an instance of the <c>JsonWriter</c> class. 
375
            </summary>
376
        </member>
377
        <member name="M:Newtonsoft.Json.JsonWriter.Flush">
378
            <summary>
379
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
380
            </summary>
381
        </member>
382
        <member name="M:Newtonsoft.Json.JsonWriter.Close">
383
            <summary>
384
            Closes this stream and the underlying stream.
385
            </summary>
386
        </member>
387
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
388
            <summary>
389
            Writes the beginning of a Json object.
390
            </summary>
391
        </member>
392
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
393
            <summary>
394
            Writes the end of a Json object.
395
            </summary>
396
        </member>
397
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
398
            <summary>
399
            Writes the beginning of a Json array.
400
            </summary>
401
        </member>
402
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
403
            <summary>
404
            Writes the end of an array.
405
            </summary>
406
        </member>
407
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
408
            <summary>
409
            Writes the start of a constructor with the given name.
410
            </summary>
411
            <param name="name">The name of the constructor.</param>
412
        </member>
413
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
414
            <summary>
415
            Writes the end constructor.
416
            </summary>
417
        </member>
418
        <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
419
            <summary>
420
            Writes the property name of a name/value pair on a JSON object.
421
            </summary>
422
            <param name="name">The name of the property.</param>
423
        </member>
424
        <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">
425
            <summary>
426
            Writes the property name of a name/value pair on a JSON object.
427
            </summary>
428
            <param name="name">The name of the property.</param>
429
            <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
430
        </member>
431
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
432
            <summary>
433
            Writes the end of the current Json object or array.
434
            </summary>
435
        </member>
436
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
437
            <summary>
438
            Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.
439
            </summary>
440
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
441
        </member>
442
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">
443
            <summary>
444
            Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
445
            </summary>
446
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
447
            <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
448
        </member>
449
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken,System.Object)">
450
            <summary>
451
            Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.
452
            </summary>
453
            <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
454
            <param name="value">
455
            The value to write.
456
            A value is only required for tokens that have an associated value, e.g. the <see cref="T:System.String"/> property name for <see cref="F:Newtonsoft.Json.JsonToken.PropertyName"/>.
457
            A null value can be passed to the method for token's that don't have a value, e.g. <see cref="F:Newtonsoft.Json.JsonToken.StartObject"/>.</param>
458
        </member>
459
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken)">
460
            <summary>
461
            Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token.
462
            </summary>
463
            <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
464
        </member>
465
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
466
            <summary>
467
            Writes the specified end token.
468
            </summary>
469
            <param name="token">The end token to write.</param>
470
        </member>
471
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
472
            <summary>
473
            Writes indent characters.
474
            </summary>
475
        </member>
476
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
477
            <summary>
478
            Writes the JSON value delimiter.
479
            </summary>
480
        </member>
481
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
482
            <summary>
483
            Writes an indent space.
484
            </summary>
485
        </member>
486
        <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
487
            <summary>
488
            Writes a null value.
489
            </summary>
490
        </member>
491
        <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
492
            <summary>
493
            Writes an undefined value.
494
            </summary>
495
        </member>
496
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
497
            <summary>
498
            Writes raw JSON without changing the writer's state.
499
            </summary>
500
            <param name="json">The raw JSON to write.</param>
501
        </member>
502
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
503
            <summary>
504
            Writes raw JSON where a value is expected and updates the writer's state.
505
            </summary>
506
            <param name="json">The raw JSON to write.</param>
507
        </member>
508
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
509
            <summary>
510
            Writes a <see cref="T:System.String"/> value.
511
            </summary>
512
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
513
        </member>
514
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
515
            <summary>
516
            Writes a <see cref="T:System.Int32"/> value.
517
            </summary>
518
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
519
        </member>
520
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
521
            <summary>
522
            Writes a <see cref="T:System.UInt32"/> value.
523
            </summary>
524
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
525
        </member>
526
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
527
            <summary>
528
            Writes a <see cref="T:System.Int64"/> value.
529
            </summary>
530
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
531
        </member>
532
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
533
            <summary>
534
            Writes a <see cref="T:System.UInt64"/> value.
535
            </summary>
536
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
537
        </member>
538
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
539
            <summary>
540
            Writes a <see cref="T:System.Single"/> value.
541
            </summary>
542
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
543
        </member>
544
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
545
            <summary>
546
            Writes a <see cref="T:System.Double"/> value.
547
            </summary>
548
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
549
        </member>
550
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
551
            <summary>
552
            Writes a <see cref="T:System.Boolean"/> value.
553
            </summary>
554
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
555
        </member>
556
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
557
            <summary>
558
            Writes a <see cref="T:System.Int16"/> value.
559
            </summary>
560
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
561
        </member>
562
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
563
            <summary>
564
            Writes a <see cref="T:System.UInt16"/> value.
565
            </summary>
566
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
567
        </member>
568
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
569
            <summary>
570
            Writes a <see cref="T:System.Char"/> value.
571
            </summary>
572
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
573
        </member>
574
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
575
            <summary>
576
            Writes a <see cref="T:System.Byte"/> value.
577
            </summary>
578
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
579
        </member>
580
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
581
            <summary>
582
            Writes a <see cref="T:System.SByte"/> value.
583
            </summary>
584
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
585
        </member>
586
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
587
            <summary>
588
            Writes a <see cref="T:System.Decimal"/> value.
589
            </summary>
590
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
591
        </member>
592
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
593
            <summary>
594
            Writes a <see cref="T:System.DateTime"/> value.
595
            </summary>
596
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
597
        </member>
598
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
599
            <summary>
600
            Writes a <see cref="T:System.DateTimeOffset"/> value.
601
            </summary>
602
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
603
        </member>
604
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
605
            <summary>
606
            Writes a <see cref="T:System.Guid"/> value.
607
            </summary>
608
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
609
        </member>
610
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
611
            <summary>
612
            Writes a <see cref="T:System.TimeSpan"/> value.
613
            </summary>
614
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
615
        </member>
616
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
617
            <summary>
618
            Writes a <see cref="T:System.Nullable`1"/> value.
619
            </summary>
620
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
621
        </member>
622
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
623
            <summary>
624
            Writes a <see cref="T:System.Nullable`1"/> value.
625
            </summary>
626
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
627
        </member>
628
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
629
            <summary>
630
            Writes a <see cref="T:System.Nullable`1"/> value.
631
            </summary>
632
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
633
        </member>
634
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
635
            <summary>
636
            Writes a <see cref="T:System.Nullable`1"/> value.
637
            </summary>
638
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
639
        </member>
640
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
641
            <summary>
642
            Writes a <see cref="T:System.Nullable`1"/> value.
643
            </summary>
644
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
645
        </member>
646
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
647
            <summary>
648
            Writes a <see cref="T:System.Nullable`1"/> value.
649
            </summary>
650
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
651
        </member>
652
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
653
            <summary>
654
            Writes a <see cref="T:System.Nullable`1"/> value.
655
            </summary>
656
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
657
        </member>
658
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
659
            <summary>
660
            Writes a <see cref="T:System.Nullable`1"/> value.
661
            </summary>
662
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
663
        </member>
664
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
665
            <summary>
666
            Writes a <see cref="T:System.Nullable`1"/> value.
667
            </summary>
668
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
669
        </member>
670
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
671
            <summary>
672
            Writes a <see cref="T:System.Nullable`1"/> value.
673
            </summary>
674
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
675
        </member>
676
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
677
            <summary>
678
            Writes a <see cref="T:System.Nullable`1"/> value.
679
            </summary>
680
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
681
        </member>
682
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
683
            <summary>
684
            Writes a <see cref="T:System.Nullable`1"/> value.
685
            </summary>
686
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
687
        </member>
688
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
689
            <summary>
690
            Writes a <see cref="T:System.Nullable`1"/> value.
691
            </summary>
692
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
693
        </member>
694
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
695
            <summary>
696
            Writes a <see cref="T:System.Nullable`1"/> value.
697
            </summary>
698
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
699
        </member>
700
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">
701
            <summary>
702
            Writes a <see cref="T:System.Nullable`1"/> value.
703
            </summary>
704
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
705
        </member>
706
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
707
            <summary>
708
            Writes a <see cref="T:System.Nullable`1"/> value.
709
            </summary>
710
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
711
        </member>
712
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
713
            <summary>
714
            Writes a <see cref="T:System.Nullable`1"/> value.
715
            </summary>
716
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
717
        </member>
718
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
719
            <summary>
720
            Writes a <see cref="T:System.Byte"/>[] value.
721
            </summary>
722
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
723
        </member>
724
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
725
            <summary>
726
            Writes a <see cref="T:System.Uri"/> value.
727
            </summary>
728
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
729
        </member>
730
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
731
            <summary>
732
            Writes a <see cref="T:System.Object"/> value.
733
            An error will raised if the value cannot be written as a single JSON token.
734
            </summary>
735
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
736
        </member>
737
        <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
738
            <summary>
739
            Writes out a comment <code>/*...*/</code> containing the specified text. 
740
            </summary>
741
            <param name="text">Text to place inside the comment.</param>
742
        </member>
743
        <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
744
            <summary>
745
            Writes out the given white space.
746
            </summary>
747
            <param name="ws">The string of white space characters.</param>
748
        </member>
749
        <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">
750
            <summary>
751
            Sets the state of the JsonWriter,
752
            </summary>
753
            <param name="token">The JsonToken being written.</param>
754
            <param name="value">The value being written.</param>
755
        </member>
756
        <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
757
            <summary>
758
            Gets or sets a value indicating whether the underlying stream or
759
            <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed.
760
            </summary>
761
            <value>
762
            true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
763
            the writer is closed; otherwise false. The default is true.
764
            </value>
765
        </member>
766
        <member name="P:Newtonsoft.Json.JsonWriter.Top">
767
            <summary>
768
            Gets the top.
769
            </summary>
770
            <value>The top.</value>
771
        </member>
772
        <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
773
            <summary>
774
            Gets the state of the writer.
775
            </summary>
776
        </member>
777
        <member name="P:Newtonsoft.Json.JsonWriter.Path">
778
            <summary>
779
            Gets the path of the writer. 
780
            </summary>
781
        </member>
782
        <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
783
            <summary>
784
            Indicates how JSON text output is formatted.
785
            </summary>
786
        </member>
787
        <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
788
            <summary>
789
            Get or set how dates are written to JSON text.
790
            </summary>
791
        </member>
792
        <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
793
            <summary>
794
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when writing JSON text.
795
            </summary>
796
        </member>
797
        <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
798
            <summary>
799
            Get or set how strings are escaped when writing JSON text.
800
            </summary>
801
        </member>
802
        <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
803
            <summary>
804
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
805
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
806
            are written to JSON text.
807
            </summary>
808
        </member>
809
        <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
810
            <summary>
811
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
812
            </summary>
813
        </member>
814
        <member name="P:Newtonsoft.Json.JsonWriter.Culture">
815
            <summary>
816
            Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
817
            </summary>
818
        </member>
819
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
820
            <summary>
821
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
822
            </summary>
823
            <param name="stream">The stream.</param>
824
        </member>
825
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
826
            <summary>
827
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
828
            </summary>
829
            <param name="writer">The writer.</param>
830
        </member>
831
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
832
            <summary>
833
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
834
            </summary>
835
        </member>
836
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
837
            <summary>
838
            Writes the end.
839
            </summary>
840
            <param name="token">The token.</param>
841
        </member>
842
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
843
            <summary>
844
            Writes out a comment <code>/*...*/</code> containing the specified text.
845
            </summary>
846
            <param name="text">Text to place inside the comment.</param>
847
        </member>
848
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
849
            <summary>
850
            Writes the start of a constructor with the given name.
851
            </summary>
852
            <param name="name">The name of the constructor.</param>
853
        </member>
854
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
855
            <summary>
856
            Writes raw JSON.
857
            </summary>
858
            <param name="json">The raw JSON to write.</param>
859
        </member>
860
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
861
            <summary>
862
            Writes raw JSON where a value is expected and updates the writer's state.
863
            </summary>
864
            <param name="json">The raw JSON to write.</param>
865
        </member>
866
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
867
            <summary>
868
            Writes the beginning of a Json array.
869
            </summary>
870
        </member>
871
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
872
            <summary>
873
            Writes the beginning of a Json object.
874
            </summary>
875
        </member>
876
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
877
            <summary>
878
            Writes the property name of a name/value pair on a Json object.
879
            </summary>
880
            <param name="name">The name of the property.</param>
881
        </member>
882
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
883
            <summary>
884
            Closes this stream and the underlying stream.
885
            </summary>
886
        </member>
887
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">
888
            <summary>
889
            Writes a <see cref="T:System.Object"/> value.
890
            An error will raised if the value cannot be written as a single JSON token.
891
            </summary>
892
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
893
        </member>
894
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
895
            <summary>
896
            Writes a null value.
897
            </summary>
898
        </member>
899
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
900
            <summary>
901
            Writes an undefined value.
902
            </summary>
903
        </member>
904
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
905
            <summary>
906
            Writes a <see cref="T:System.String"/> value.
907
            </summary>
908
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
909
        </member>
910
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
911
            <summary>
912
            Writes a <see cref="T:System.Int32"/> value.
913
            </summary>
914
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
915
        </member>
916
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
917
            <summary>
918
            Writes a <see cref="T:System.UInt32"/> value.
919
            </summary>
920
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
921
        </member>
922
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
923
            <summary>
924
            Writes a <see cref="T:System.Int64"/> value.
925
            </summary>
926
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
927
        </member>
928
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
929
            <summary>
930
            Writes a <see cref="T:System.UInt64"/> value.
931
            </summary>
932
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
933
        </member>
934
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
935
            <summary>
936
            Writes a <see cref="T:System.Single"/> value.
937
            </summary>
938
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
939
        </member>
940
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
941
            <summary>
942
            Writes a <see cref="T:System.Double"/> value.
943
            </summary>
944
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
945
        </member>
946
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
947
            <summary>
948
            Writes a <see cref="T:System.Boolean"/> value.
949
            </summary>
950
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
951
        </member>
952
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
953
            <summary>
954
            Writes a <see cref="T:System.Int16"/> value.
955
            </summary>
956
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
957
        </member>
958
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
959
            <summary>
960
            Writes a <see cref="T:System.UInt16"/> value.
961
            </summary>
962
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
963
        </member>
964
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
965
            <summary>
966
            Writes a <see cref="T:System.Char"/> value.
967
            </summary>
968
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
969
        </member>
970
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
971
            <summary>
972
            Writes a <see cref="T:System.Byte"/> value.
973
            </summary>
974
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
975
        </member>
976
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
977
            <summary>
978
            Writes a <see cref="T:System.SByte"/> value.
979
            </summary>
980
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
981
        </member>
982
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
983
            <summary>
984
            Writes a <see cref="T:System.Decimal"/> value.
985
            </summary>
986
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
987
        </member>
988
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
989
            <summary>
990
            Writes a <see cref="T:System.DateTime"/> value.
991
            </summary>
992
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
993
        </member>
994
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)">
995
            <summary>
996
            Writes a <see cref="T:System.DateTimeOffset"/> value.
997
            </summary>
998
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
999
        </member>
1000
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
1001
            <summary>
1002
            Writes a <see cref="T:System.Byte"/>[] value.
1003
            </summary>
1004
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
1005
        </member>
1006
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
1007
            <summary>
1008
            Writes a <see cref="T:System.Guid"/> value.
1009
            </summary>
1010
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
1011
        </member>
1012
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
1013
            <summary>
1014
            Writes a <see cref="T:System.TimeSpan"/> value.
1015
            </summary>
1016
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
1017
        </member>
1018
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
1019
            <summary>
1020
            Writes a <see cref="T:System.Uri"/> value.
1021
            </summary>
1022
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
1023
        </member>
1024
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
1025
            <summary>
1026
            Writes a <see cref="T:System.Byte"/>[] value that represents a BSON object id.
1027
            </summary>
1028
            <param name="value">The Object ID value to write.</param>
1029
        </member>
1030
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
1031
            <summary>
1032
            Writes a BSON regex.
1033
            </summary>
1034
            <param name="pattern">The regex pattern.</param>
1035
            <param name="options">The regex options.</param>
1036
        </member>
1037
        <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
1038
            <summary>
1039
            Gets or sets the <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.
1040
            When set to <see cref="F:System.DateTimeKind.Unspecified"/> no conversion will occur.
1041
            </summary>
1042
            <value>The <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
1043
        </member>
1044
        <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
1045
            <summary>
1046
            Represents a BSON Oid (object id).
1047
            </summary>
1048
        </member>
1049
        <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">
1050
            <summary>
1051
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.
1052
            </summary>
1053
            <param name="value">The Oid value.</param>
1054
        </member>
1055
        <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
1056
            <summary>
1057
            Gets or sets the value of the Oid.
1058
            </summary>
1059
            <value>The value of the Oid.</value>
1060
        </member>
1061
        <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
1062
            <summary>
1063
            Converts a binary value to and from a base 64 string value.
1064
            </summary>
1065
        </member>
1066
        <member name="T:Newtonsoft.Json.JsonConverter">
1067
            <summary>
1068
            Converts an object to and from JSON.
1069
            </summary>
1070
        </member>
1071
        <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1072
            <summary>
1073
            Writes the JSON representation of the object.
1074
            </summary>
1075
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1076
            <param name="value">The value.</param>
1077
            <param name="serializer">The calling serializer.</param>
1078
        </member>
1079
        <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1080
            <summary>
1081
            Reads the JSON representation of the object.
1082
            </summary>
1083
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1084
            <param name="objectType">Type of the object.</param>
1085
            <param name="existingValue">The existing value of object being read.</param>
1086
            <param name="serializer">The calling serializer.</param>
1087
            <returns>The object value.</returns>
1088
        </member>
1089
        <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
1090
            <summary>
1091
            Determines whether this instance can convert the specified object type.
1092
            </summary>
1093
            <param name="objectType">Type of the object.</param>
1094
            <returns>
1095
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1096
            </returns>
1097
        </member>
1098
        <member name="M:Newtonsoft.Json.JsonConverter.GetSchema">
1099
            <summary>
1100
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.
1101
            </summary>
1102
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns>
1103
        </member>
1104
        <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
1105
            <summary>
1106
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
1107
            </summary>
1108
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
1109
        </member>
1110
        <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
1111
            <summary>
1112
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1113
            </summary>
1114
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
1115
        </member>
1116
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1117
            <summary>
1118
            Writes the JSON representation of the object.
1119
            </summary>
1120
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1121
            <param name="value">The value.</param>
1122
            <param name="serializer">The calling serializer.</param>
1123
        </member>
1124
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1125
            <summary>
1126
            Reads the JSON representation of the object.
1127
            </summary>
1128
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1129
            <param name="objectType">Type of the object.</param>
1130
            <param name="existingValue">The existing value of object being read.</param>
1131
            <param name="serializer">The calling serializer.</param>
1132
            <returns>The object value.</returns>
1133
        </member>
1134
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
1135
            <summary>
1136
            Determines whether this instance can convert the specified object type.
1137
            </summary>
1138
            <param name="objectType">Type of the object.</param>
1139
            <returns>
1140
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1141
            </returns>
1142
        </member>
1143
        <member name="T:Newtonsoft.Json.Converters.DataSetConverter">
1144
            <summary>
1145
            Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.
1146
            </summary>
1147
        </member>
1148
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1149
            <summary>
1150
            Writes the JSON representation of the object.
1151
            </summary>
1152
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1153
            <param name="value">The value.</param>
1154
            <param name="serializer">The calling serializer.</param>
1155
        </member>
1156
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1157
            <summary>
1158
            Reads the JSON representation of the object.
1159
            </summary>
1160
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1161
            <param name="objectType">Type of the object.</param>
1162
            <param name="existingValue">The existing value of object being read.</param>
1163
            <param name="serializer">The calling serializer.</param>
1164
            <returns>The object value.</returns>
1165
        </member>
1166
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
1167
            <summary>
1168
            Determines whether this instance can convert the specified value type.
1169
            </summary>
1170
            <param name="valueType">Type of the value.</param>
1171
            <returns>
1172
            	<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1173
            </returns>
1174
        </member>
1175
        <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
1176
            <summary>
1177
            Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
1178
            </summary>
1179
        </member>
1180
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1181
            <summary>
1182
            Writes the JSON representation of the object.
1183
            </summary>
1184
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1185
            <param name="value">The value.</param>
1186
            <param name="serializer">The calling serializer.</param>
1187
        </member>
1188
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1189
            <summary>
1190
            Reads the JSON representation of the object.
1191
            </summary>
1192
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1193
            <param name="objectType">Type of the object.</param>
1194
            <param name="existingValue">The existing value of object being read.</param>
1195
            <param name="serializer">The calling serializer.</param>
1196
            <returns>The object value.</returns>
1197
        </member>
1198
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
1199
            <summary>
1200
            Determines whether this instance can convert the specified value type.
1201
            </summary>
1202
            <param name="valueType">Type of the value.</param>
1203
            <returns>
1204
            	<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1205
            </returns>
1206
        </member>
1207
        <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
1208
            <summary>
1209
            Create a custom object
1210
            </summary>
1211
            <typeparam name="T">The object type to convert.</typeparam>
1212
        </member>
1213
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1214
            <summary>
1215
            Writes the JSON representation of the object.
1216
            </summary>
1217
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1218
            <param name="value">The value.</param>
1219
            <param name="serializer">The calling serializer.</param>
1220
        </member>
1221
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1222
            <summary>
1223
            Reads the JSON representation of the object.
1224
            </summary>
1225
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1226
            <param name="objectType">Type of the object.</param>
1227
            <param name="existingValue">The existing value of object being read.</param>
1228
            <param name="serializer">The calling serializer.</param>
1229
            <returns>The object value.</returns>
1230
        </member>
1231
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
1232
            <summary>
1233
            Creates an object which will then be populated by the serializer.
1234
            </summary>
1235
            <param name="objectType">Type of the object.</param>
1236
            <returns>The created object.</returns>
1237
        </member>
1238
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
1239
            <summary>
1240
            Determines whether this instance can convert the specified object type.
1241
            </summary>
1242
            <param name="objectType">Type of the object.</param>
1243
            <returns>
1244
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1245
            </returns>
1246
        </member>
1247
        <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
1248
            <summary>
1249
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1250
            </summary>
1251
            <value>
1252
            	<c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
1253
            </value>
1254
        </member>
1255
        <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
1256
            <summary>
1257
            Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
1258
            </summary>
1259
        </member>
1260
        <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">
1261
            <summary>
1262
            Determines whether this instance can convert the specified object type.
1263
            </summary>
1264
            <param name="objectType">Type of the object.</param>
1265
            <returns>
1266
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1267
            </returns>
1268
        </member>
1269
        <member name="T:Newtonsoft.Json.Converters.DiscriminatedUnionConverter">
1270
            <summary>
1271
            Converts a F# discriminated union type to and from JSON.
1272
            </summary>
1273
        </member>
1274
        <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1275
            <summary>
1276
            Writes the JSON representation of the object.
1277
            </summary>
1278
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1279
            <param name="value">The value.</param>
1280
            <param name="serializer">The calling serializer.</param>
1281
        </member>
1282
        <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1283
            <summary>
1284
            Reads the JSON representation of the object.
1285
            </summary>
1286
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1287
            <param name="objectType">Type of the object.</param>
1288
            <param name="existingValue">The existing value of object being read.</param>
1289
            <param name="serializer">The calling serializer.</param>
1290
            <returns>The object value.</returns>
1291
        </member>
1292
        <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.CanConvert(System.Type)">
1293
            <summary>
1294
            Determines whether this instance can convert the specified object type.
1295
            </summary>
1296
            <param name="objectType">Type of the object.</param>
1297
            <returns>
1298
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1299
            </returns>
1300
        </member>
1301
        <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter">
1302
            <summary>
1303
            Converts an Entity Framework EntityKey to and from JSON.
1304
            </summary>
1305
        </member>
1306
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1307
            <summary>
1308
            Writes the JSON representation of the object.
1309
            </summary>
1310
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1311
            <param name="value">The value.</param>
1312
            <param name="serializer">The calling serializer.</param>
1313
        </member>
1314
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1315
            <summary>
1316
            Reads the JSON representation of the object.
1317
            </summary>
1318
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1319
            <param name="objectType">Type of the object.</param>
1320
            <param name="existingValue">The existing value of object being read.</param>
1321
            <param name="serializer">The calling serializer.</param>
1322
            <returns>The object value.</returns>
1323
        </member>
1324
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)">
1325
            <summary>
1326
            Determines whether this instance can convert the specified object type.
1327
            </summary>
1328
            <param name="objectType">Type of the object.</param>
1329
            <returns>
1330
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1331
            </returns>
1332
        </member>
1333
        <member name="T:Newtonsoft.Json.Converters.ExpandoObjectConverter">
1334
            <summary>
1335
            Converts an ExpandoObject to and from JSON.
1336
            </summary>
1337
        </member>
1338
        <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1339
            <summary>
1340
            Writes the JSON representation of the object.
1341
            </summary>
1342
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1343
            <param name="value">The value.</param>
1344
            <param name="serializer">The calling serializer.</param>
1345
        </member>
1346
        <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1347
            <summary>
1348
            Reads the JSON representation of the object.
1349
            </summary>
1350
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1351
            <param name="objectType">Type of the object.</param>
1352
            <param name="existingValue">The existing value of object being read.</param>
1353
            <param name="serializer">The calling serializer.</param>
1354
            <returns>The object value.</returns>
1355
        </member>
1356
        <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)">
1357
            <summary>
1358
            Determines whether this instance can convert the specified object type.
1359
            </summary>
1360
            <param name="objectType">Type of the object.</param>
1361
            <returns>
1362
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1363
            </returns>
1364
        </member>
1365
        <member name="P:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanWrite">
1366
            <summary>
1367
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1368
            </summary>
1369
            <value>
1370
            	<c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
1371
            </value>
1372
        </member>
1373
        <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
1374
            <summary>
1375
            Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
1376
            </summary>
1377
        </member>
1378
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1379
            <summary>
1380
            Writes the JSON representation of the object.
1381
            </summary>
1382
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1383
            <param name="value">The value.</param>
1384
            <param name="serializer">The calling serializer.</param>
1385
        </member>
1386
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1387
            <summary>
1388
            Reads the JSON representation of the object.
1389
            </summary>
1390
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1391
            <param name="objectType">Type of the object.</param>
1392
            <param name="existingValue">The existing value of object being read.</param>
1393
            <param name="serializer">The calling serializer.</param>
1394
            <returns>The object value.</returns>
1395
        </member>
1396
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
1397
            <summary>
1398
            Determines whether this instance can convert the specified object type.
1399
            </summary>
1400
            <param name="objectType">Type of the object.</param>
1401
            <returns>
1402
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1403
            </returns>
1404
        </member>
1405
        <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
1406
            <summary>
1407
            Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
1408
            </summary>
1409
        </member>
1410
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1411
            <summary>
1412
            Writes the JSON representation of the object.
1413
            </summary>
1414
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1415
            <param name="value">The value.</param>
1416
            <param name="serializer">The calling serializer.</param>
1417
        </member>
1418
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1419
            <summary>
1420
            Reads the JSON representation of the object.
1421
            </summary>
1422
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1423
            <param name="objectType">Type of the object.</param>
1424
            <param name="existingValue">The existing value of object being read.</param>
1425
            <param name="serializer">The calling serializer.</param>
1426
            <returns>The object value.</returns>
1427
        </member>
1428
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
1429
            <summary>
1430
            Determines whether this instance can convert the specified object type.
1431
            </summary>
1432
            <param name="objectType">Type of the object.</param>
1433
            <returns>
1434
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1435
            </returns>
1436
        </member>
1437
        <member name="T:Newtonsoft.Json.Converters.RegexConverter">
1438
            <summary>
1439
            Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
1440
            </summary>
1441
        </member>
1442
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1443
            <summary>
1444
            Writes the JSON representation of the object.
1445
            </summary>
1446
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1447
            <param name="value">The value.</param>
1448
            <param name="serializer">The calling serializer.</param>
1449
        </member>
1450
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1451
            <summary>
1452
            Reads the JSON representation of the object.
1453
            </summary>
1454
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1455
            <param name="objectType">Type of the object.</param>
1456
            <param name="existingValue">The existing value of object being read.</param>
1457
            <param name="serializer">The calling serializer.</param>
1458
            <returns>The object value.</returns>
1459
        </member>
1460
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
1461
            <summary>
1462
            Determines whether this instance can convert the specified object type.
1463
            </summary>
1464
            <param name="objectType">Type of the object.</param>
1465
            <returns>
1466
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1467
            </returns>
1468
        </member>
1469
        <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
1470
            <summary>
1471
            Converts an <see cref="T:System.Enum"/> to and from its name string value.
1472
            </summary>
1473
        </member>
1474
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
1475
            <summary>
1476
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
1477
            </summary>
1478
        </member>
1479
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1480
            <summary>
1481
            Writes the JSON representation of the object.
1482
            </summary>
1483
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1484
            <param name="value">The value.</param>
1485
            <param name="serializer">The calling serializer.</param>
1486
        </member>
1487
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1488
            <summary>
1489
            Reads the JSON representation of the object.
1490
            </summary>
1491
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1492
            <param name="objectType">Type of the object.</param>
1493
            <param name="existingValue">The existing value of object being read.</param>
1494
            <param name="serializer">The calling serializer.</param>
1495
            <returns>The object value.</returns>
1496
        </member>
1497
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
1498
            <summary>
1499
            Determines whether this instance can convert the specified object type.
1500
            </summary>
1501
            <param name="objectType">Type of the object.</param>
1502
            <returns>
1503
            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1504
            </returns>
1505
        </member>
1506
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
1507
            <summary>
1508
            Gets or sets a value indicating whether the written enum text should be camel case.
1509
            </summary>
1510
            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
1511
        </member>
1512
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
1513
            <summary>
1514
            Gets or sets a value indicating whether integer values are allowed.
1515
            </summary>
1516
            <value><c>true</c> if integers are allowed; otherwise, <c>false</c>.</value>
1517
        </member>
1518
        <member name="T:Newtonsoft.Json.ConstructorHandling">
1519
            <summary>
1520
            Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1521
            </summary>
1522
        </member>
1523
        <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
1524
            <summary>
1525
            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.
1526
            </summary>
1527
        </member>
1528
        <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
1529
            <summary>
1530
            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.
1531
            </summary>
1532
        </member>
1533
        <member name="T:Newtonsoft.Json.Converters.VersionConverter">
1534
            <summary>
1535
            Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4").
1536
            </summary>
1537
        </member>
1538
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1539
            <summary>
1540
            Writes the JSON representation of the object.
1541
            </summary>
1542
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1543
            <param name="value">The value.</param>
1544
            <param name="serializer">The calling serializer.</param>
1545
        </member>
1546
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1547
            <summary>
1548
            Reads the JSON representation of the object.
1549
            </summary>
1550
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1551
            <param name="objectType">Type of the object.</param>
1552
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
1553
            <param name="serializer">The calling serializer.</param>
1554
            <returns>The object value.</returns>
1555
        </member>
1556
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
1557
            <summary>
1558
            Determines whether this instance can convert the specified object type.
1559
            </summary>
1560
            <param name="objectType">Type of the object.</param>
1561
            <returns>
1562
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1563
            </returns>
1564
        </member>
1565
        <member name="T:Newtonsoft.Json.FloatFormatHandling">
1566
            <summary>
1567
            Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
1568
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1569
            </summary>
1570
        </member>
1571
        <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
1572
            <summary>
1573
            Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".
1574
            </summary>
1575
        </member>
1576
        <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
1577
            <summary>
1578
            Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity.
1579
            Note that this will produce non-valid JSON.
1580
            </summary>
1581
        </member>
1582
        <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
1583
            <summary>
1584
            Write special floating point values as the property's default value in JSON, e.g. 0.0 for a <see cref="T:System.Double"/> property, null for a <see cref="T:System.Nullable`1"/> property.
1585
            </summary>
1586
        </member>
1587
        <member name="T:Newtonsoft.Json.FloatParseHandling">
1588
            <summary>
1589
            Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
1590
            </summary>
1591
        </member>
1592
        <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
1593
            <summary>
1594
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
1595
            </summary>
1596
        </member>
1597
        <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
1598
            <summary>
1599
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
1600
            </summary>
1601
        </member>
1602
        <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
1603
            <summary>
1604
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
1605
            </summary>
1606
        </member>
1607
        <member name="T:Newtonsoft.Json.JsonContainerAttribute">
1608
            <summary>
1609
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
1610
            </summary>
1611
        </member>
1612
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
1613
            <summary>
1614
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
1615
            </summary>
1616
        </member>
1617
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
1618
            <summary>
1619
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
1620
            </summary>
1621
            <param name="id">The container Id.</param>
1622
        </member>
1623
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
1624
            <summary>
1625
            Gets or sets the id.
1626
            </summary>
1627
            <value>The id.</value>
1628
        </member>
1629
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
1630
            <summary>
1631
            Gets or sets the title.
1632
            </summary>
1633
            <value>The title.</value>
1634
        </member>
1635
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
1636
            <summary>
1637
            Gets or sets the description.
1638
            </summary>
1639
            <value>The description.</value>
1640
        </member>
1641
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
1642
            <summary>
1643
            Gets the collection's items converter.
1644
            </summary>
1645
            <value>The collection's items converter.</value>
1646
        </member>
1647
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters">
1648
            <summary>
1649
            The parameter list to use when constructing the JsonConverter described by ItemConverterType.
1650
            If null, the default constructor is used.
1651
            When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
1652
            order, and type of these parameters.
1653
            </summary>
1654
            <example>
1655
            [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
1656
            </example>
1657
        </member>
1658
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
1659
            <summary>
1660
            Gets or sets a value that indicates whether to preserve object references.
1661
            </summary>
1662
            <value>
1663
            	<c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
1664
            </value>
1665
        </member>
1666
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
1667
            <summary>
1668
            Gets or sets a value that indicates whether to preserve collection's items references.
1669
            </summary>
1670
            <value>
1671
            	<c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
1672
            </value>
1673
        </member>
1674
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
1675
            <summary>
1676
            Gets or sets the reference loop handling used when serializing the collection's items.
1677
            </summary>
1678
            <value>The reference loop handling.</value>
1679
        </member>
1680
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
1681
            <summary>
1682
            Gets or sets the type name handling used when serializing the collection's items.
1683
            </summary>
1684
            <value>The type name handling.</value>
1685
        </member>
1686
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
1687
            <summary>
1688
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
1689
            </summary>
1690
        </member>
1691
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
1692
            <summary>
1693
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
1694
            </summary>
1695
            <param name="id">The container Id.</param>
1696
        </member>
1697
        <member name="T:Newtonsoft.Json.JsonException">
1698
            <summary>
1699
            The exception thrown when an error occurs during Json serialization or deserialization.
1700
            </summary>
1701
        </member>
1702
        <member name="M:Newtonsoft.Json.JsonException.#ctor">
1703
            <summary>
1704
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1705
            </summary>
1706
        </member>
1707
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
1708
            <summary>
1709
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1710
            with a specified error message.
1711
            </summary>
1712
            <param name="message">The error message that explains the reason for the exception.</param>
1713
        </member>
1714
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
1715
            <summary>
1716
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1717
            with a specified error message and a reference to the inner exception that is the cause of this exception.
1718
            </summary>
1719
            <param name="message">The error message that explains the reason for the exception.</param>
1720
            <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
1721
        </member>
1722
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1723
            <summary>
1724
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1725
            </summary>
1726
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
1727
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
1728
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
1729
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
1730
        </member>
1731
        <member name="T:Newtonsoft.Json.DateFormatHandling">
1732
            <summary>
1733
            Specifies how dates are formatted when writing JSON text.
1734
            </summary>
1735
        </member>
1736
        <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
1737
            <summary>
1738
            Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
1739
            </summary>
1740
        </member>
1741
        <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
1742
            <summary>
1743
            Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
1744
            </summary>
1745
        </member>
1746
        <member name="T:Newtonsoft.Json.DateParseHandling">
1747
            <summary>
1748
            Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
1749
            </summary>
1750
        </member>
1751
        <member name="F:Newtonsoft.Json.DateParseHandling.None">
1752
            <summary>
1753
            Date formatted strings are not parsed to a date type and are read as strings.
1754
            </summary>
1755
        </member>
1756
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
1757
            <summary>
1758
            Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.
1759
            </summary>
1760
        </member>
1761
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
1762
            <summary>
1763
            Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"/>.
1764
            </summary>
1765
        </member>
1766
        <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
1767
            <summary>
1768
            Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
1769
            </summary>
1770
        </member>
1771
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
1772
            <summary>
1773
            Treat as local time. If the <see cref="T:System.DateTime"/> object represents a Coordinated Universal Time (UTC), it is converted to the local time.
1774
            </summary>
1775
        </member>
1776
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
1777
            <summary>
1778
            Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
1779
            </summary>
1780
        </member>
1781
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
1782
            <summary>
1783
            Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
1784
            If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
1785
            </summary>
1786
        </member>
1787
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
1788
            <summary>
1789
            Time zone information should be preserved when converting.
1790
            </summary>
1791
        </member>
1792
        <member name="T:Newtonsoft.Json.Formatting">
1793
            <summary>
1794
            Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
1795
            </summary>
1796
        </member>
1797
        <member name="F:Newtonsoft.Json.Formatting.None">
1798
            <summary>
1799
            No special formatting is applied. This is the default.
1800
            </summary>
1801
        </member>
1802
        <member name="F:Newtonsoft.Json.Formatting.Indented">
1803
            <summary>
1804
            Causes child objects to be indented according to the <see cref="P:Newtonsoft.Json.JsonTextWriter.Indentation"/> and <see cref="P:Newtonsoft.Json.JsonTextWriter.IndentChar"/> settings.
1805
            </summary>
1806
        </member>
1807
        <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1808
            <summary>
1809
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1810
            </summary>
1811
        </member>
1812
        <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
1813
            <summary>
1814
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection
1815
            and write values during serialization.
1816
            </summary>
1817
        </member>
1818
        <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
1819
            <summary>
1820
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.
1821
            </summary>
1822
        </member>
1823
        <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
1824
            <summary>
1825
            Gets or sets a value that indicates whether to write extension data when serializing the object.
1826
            </summary>
1827
            <value>
1828
            	<c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1829
            </value>
1830
        </member>
1831
        <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
1832
            <summary>
1833
            Gets or sets a value that indicates whether to read extension data when deserializing the object.
1834
            </summary>
1835
            <value>
1836
            	<c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1837
            </value>
1838
        </member>
1839
        <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">
1840
            <summary>
1841
            Specifies the settings used when merging JSON.
1842
            </summary>
1843
        </member>
1844
        <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">
1845
            <summary>
1846
            Gets or sets the method used when merging JSON arrays.
1847
            </summary>
1848
            <value>The method used when merging JSON arrays.</value>
1849
        </member>
1850
        <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
1851
            <summary>
1852
            Specifies how JSON arrays are merged together.
1853
            </summary>
1854
        </member>
1855
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">
1856
            <summary>Concatenate arrays.</summary>
1857
        </member>
1858
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">
1859
            <summary>Union arrays, skipping items that already exist.</summary>
1860
        </member>
1861
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">
1862
            <summary>Replace all array items.</summary>
1863
        </member>
1864
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">
1865
            <summary>Merge array items together, matched by index.</summary>
1866
        </member>
1867
        <member name="T:Newtonsoft.Json.MetadataPropertyHandling">
1868
            <summary>
1869
            Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1870
            </summary>
1871
        </member>
1872
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">
1873
            <summary>
1874
            Read metadata properties located at the start of a JSON object.
1875
            </summary>
1876
        </member>
1877
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">
1878
            <summary>
1879
            Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
1880
            </summary>
1881
        </member>
1882
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">
1883
            <summary>
1884
            Do not try to read metadata properties.
1885
            </summary>
1886
        </member>
1887
        <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">
1888
            <summary>
1889
            Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.
1890
            </summary>
1891
        </member>
1892
        <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
1893
            <summary>
1894
            Represents a trace writer.
1895
            </summary>
1896
        </member>
1897
        <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1898
            <summary>
1899
            Writes the specified trace level, message and optional exception.
1900
            </summary>
1901
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1902
            <param name="message">The trace message.</param>
1903
            <param name="ex">The trace exception. This parameter is optional.</param>
1904
        </member>
1905
        <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
1906
            <summary>
1907
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1908
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1909
            <code>Warning</code> and <code>Error</code> messages.
1910
            </summary>
1911
            <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>
1912
        </member>
1913
        <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1914
            <summary>
1915
            Writes the specified trace level, message and optional exception.
1916
            </summary>
1917
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1918
            <param name="message">The trace message.</param>
1919
            <param name="ex">The trace exception. This parameter is optional.</param>
1920
        </member>
1921
        <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">
1922
            <summary>
1923
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1924
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1925
            <code>Warning</code> and <code>Error</code> messages.
1926
            </summary>
1927
            <value>
1928
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1929
            </value>
1930
        </member>
1931
        <member name="T:Newtonsoft.Json.Serialization.ExpressionValueProvider">
1932
            <summary>
1933
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
1934
            </summary>
1935
        </member>
1936
        <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
1937
            <summary>
1938
            Provides methods to get and set values.
1939
            </summary>
1940
        </member>
1941
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
1942
            <summary>
1943
            Sets the value.
1944
            </summary>
1945
            <param name="target">The target to set the value on.</param>
1946
            <param name="value">The value to set on the target.</param>
1947
        </member>
1948
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
1949
            <summary>
1950
            Gets the value.
1951
            </summary>
1952
            <param name="target">The target to get the value from.</param>
1953
            <returns>The value.</returns>
1954
        </member>
1955
        <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.#ctor(System.Reflection.MemberInfo)">
1956
            <summary>
1957
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ExpressionValueProvider"/> class.
1958
            </summary>
1959
            <param name="memberInfo">The member info.</param>
1960
        </member>
1961
        <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.SetValue(System.Object,System.Object)">
1962
            <summary>
1963
            Sets the value.
1964
            </summary>
1965
            <param name="target">The target to set the value on.</param>
1966
            <param name="value">The value to set on the target.</param>
1967
        </member>
1968
        <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.GetValue(System.Object)">
1969
            <summary>
1970
            Gets the value.
1971
            </summary>
1972
            <param name="target">The target to get the value from.</param>
1973
            <returns>The value.</returns>
1974
        </member>
1975
        <member name="T:Newtonsoft.Json.Serialization.IAttributeProvider">
1976
            <summary>
1977
            Provides methods to get attributes.
1978
            </summary>
1979
        </member>
1980
        <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Boolean)">
1981
            <summary>
1982
            Returns a collection of all of the attributes, or an empty collection if there are no attributes.
1983
            </summary>
1984
            <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
1985
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
1986
        </member>
1987
        <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Type,System.Boolean)">
1988
            <summary>
1989
            Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
1990
            </summary>
1991
            <param name="attributeType">The type of the attributes.</param>
1992
            <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
1993
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
1994
        </member>
1995
        <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
1996
            <summary>
1997
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1998
            </summary>
1999
        </member>
2000
        <member name="T:Newtonsoft.Json.Serialization.JsonContract">
2001
            <summary>
2002
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2003
            </summary>
2004
        </member>
2005
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
2006
            <summary>
2007
            Gets the underlying type for the contract.
2008
            </summary>
2009
            <value>The underlying type for the contract.</value>
2010
        </member>
2011
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
2012
            <summary>
2013
            Gets or sets the type created during deserialization.
2014
            </summary>
2015
            <value>The type created during deserialization.</value>
2016
        </member>
2017
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
2018
            <summary>
2019
            Gets or sets whether this type contract is serialized as a reference.
2020
            </summary>
2021
            <value>Whether this type contract is serialized as a reference.</value>
2022
        </member>
2023
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
2024
            <summary>
2025
            Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for this contract.
2026
            </summary>
2027
            <value>The converter.</value>
2028
        </member>
2029
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">
2030
            <summary>
2031
            Gets or sets all methods called immediately after deserialization of the object.
2032
            </summary>
2033
            <value>The methods called immediately after deserialization of the object.</value>
2034
        </member>
2035
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">
2036
            <summary>
2037
            Gets or sets all methods called during deserialization of the object.
2038
            </summary>
2039
            <value>The methods called during deserialization of the object.</value>
2040
        </member>
2041
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">
2042
            <summary>
2043
            Gets or sets all methods called after serialization of the object graph.
2044
            </summary>
2045
            <value>The methods called after serialization of the object graph.</value>
2046
        </member>
2047
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">
2048
            <summary>
2049
            Gets or sets all methods called before serialization of the object.
2050
            </summary>
2051
            <value>The methods called before serialization of the object.</value>
2052
        </member>
2053
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">
2054
            <summary>
2055
            Gets or sets all method called when an error is thrown during the serialization of the object.
2056
            </summary>
2057
            <value>The methods called when an error is thrown during the serialization of the object.</value>
2058
        </member>
2059
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized">
2060
            <summary>
2061
            Gets or sets the method called immediately after deserialization of the object.
2062
            </summary>
2063
            <value>The method called immediately after deserialization of the object.</value>
2064
        </member>
2065
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing">
2066
            <summary>
2067
            Gets or sets the method called during deserialization of the object.
2068
            </summary>
2069
            <value>The method called during deserialization of the object.</value>
2070
        </member>
2071
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized">
2072
            <summary>
2073
            Gets or sets the method called after serialization of the object graph.
2074
            </summary>
2075
            <value>The method called after serialization of the object graph.</value>
2076
        </member>
2077
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing">
2078
            <summary>
2079
            Gets or sets the method called before serialization of the object.
2080
            </summary>
2081
            <value>The method called before serialization of the object.</value>
2082
        </member>
2083
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError">
2084
            <summary>
2085
            Gets or sets the method called when an error is thrown during the serialization of the object.
2086
            </summary>
2087
            <value>The method called when an error is thrown during the serialization of the object.</value>
2088
        </member>
2089
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
2090
            <summary>
2091
            Gets or sets the default creator method used to create the object.
2092
            </summary>
2093
            <value>The default creator method used to create the object.</value>
2094
        </member>
2095
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
2096
            <summary>
2097
            Gets or sets a value indicating whether the default creator is non public.
2098
            </summary>
2099
            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
2100
        </member>
2101
        <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
2102
            <summary>
2103
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
2104
            </summary>
2105
            <param name="underlyingType">The underlying type for the contract.</param>
2106
        </member>
2107
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
2108
            <summary>
2109
            Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2110
            </summary>
2111
            <value>The converter.</value>
2112
        </member>
2113
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
2114
            <summary>
2115
            Gets or sets a value indicating whether the collection items preserve object references.
2116
            </summary>
2117
            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
2118
        </member>
2119
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
2120
            <summary>
2121
            Gets or sets the collection item reference loop handling.
2122
            </summary>
2123
            <value>The reference loop handling.</value>
2124
        </member>
2125
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
2126
            <summary>
2127
            Gets or sets the collection item type name handling.
2128
            </summary>
2129
            <value>The type name handling.</value>
2130
        </member>
2131
        <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
2132
            <summary>
2133
            Represents a trace writer that writes to memory. When the trace message limit is
2134
            reached then old trace messages will be removed as new messages are added.
2135
            </summary>
2136
        </member>
2137
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
2138
            <summary>
2139
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.
2140
            </summary>
2141
        </member>
2142
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
2143
            <summary>
2144
            Writes the specified trace level, message and optional exception.
2145
            </summary>
2146
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
2147
            <param name="message">The trace message.</param>
2148
            <param name="ex">The trace exception. This parameter is optional.</param>
2149
        </member>
2150
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
2151
            <summary>
2152
            Returns an enumeration of the most recent trace messages.
2153
            </summary>
2154
            <returns>An enumeration of the most recent trace messages.</returns>
2155
        </member>
2156
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
2157
            <summary>
2158
            Returns a <see cref="T:System.String"/> of the most recent trace messages.
2159
            </summary>
2160
            <returns>
2161
            A <see cref="T:System.String"/> of the most recent trace messages.
2162
            </returns>
2163
        </member>
2164
        <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
2165
            <summary>
2166
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
2167
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
2168
            <code>Warning</code> and <code>Error</code> messages.
2169
            </summary>
2170
            <value>
2171
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
2172
            </value>
2173
        </member>
2174
        <member name="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider">
2175
            <summary>
2176
            Provides methods to get attributes from a <see cref="T:System.Type"/>, <see cref="T:System.Reflection.MemberInfo"/>, <see cref="T:System.Reflection.ParameterInfo"/> or <see cref="T:System.Reflection.Assembly"/>.
2177
            </summary>
2178
        </member>
2179
        <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.#ctor(System.Object)">
2180
            <summary>
2181
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider"/> class.
2182
            </summary>
2183
        </member>
2184
        <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Boolean)">
2185
            <summary>
2186
            Returns a collection of all of the attributes, or an empty collection if there are no attributes.
2187
            </summary>
2188
            <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
2189
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
2190
        </member>
2191
        <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Type,System.Boolean)">
2192
            <summary>
2193
            Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
2194
            </summary>
2195
            <param name="attributeType">The type of the attributes.</param>
2196
            <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
2197
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
2198
        </member>
2199
        <member name="T:Newtonsoft.Json.IJsonLineInfo">
2200
            <summary>
2201
            Provides an interface to enable a class to return line and position information.
2202
            </summary>
2203
        </member>
2204
        <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
2205
            <summary>
2206
            Gets a value indicating whether the class can return line information.
2207
            </summary>
2208
            <returns>
2209
            	<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
2210
            </returns>
2211
        </member>
2212
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
2213
            <summary>
2214
            Gets the current line number.
2215
            </summary>
2216
            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>
2217
        </member>
2218
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
2219
            <summary>
2220
            Gets the current line position.
2221
            </summary>
2222
            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>
2223
        </member>
2224
        <member name="T:Newtonsoft.Json.StringEscapeHandling">
2225
            <summary>
2226
            Specifies how strings are escaped when writing JSON text.
2227
            </summary>
2228
        </member>
2229
        <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
2230
            <summary>
2231
            Only control characters (e.g. newline) are escaped.
2232
            </summary>
2233
        </member>
2234
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
2235
            <summary>
2236
            All non-ASCII and control characters (e.g. newline) are escaped.
2237
            </summary>
2238
        </member>
2239
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
2240
            <summary>
2241
            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.
2242
            </summary>
2243
        </member>
2244
        <member name="T:Newtonsoft.Json.Linq.JRaw">
2245
            <summary>
2246
            Represents a raw JSON string.
2247
            </summary>
2248
        </member>
2249
        <member name="T:Newtonsoft.Json.Linq.JValue">
2250
            <summary>
2251
            Represents a value in JSON (string, integer, date, etc).
2252
            </summary>
2253
        </member>
2254
        <member name="T:Newtonsoft.Json.Linq.JToken">
2255
            <summary>
2256
            Represents an abstract JSON token.
2257
            </summary>
2258
        </member>
2259
        <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
2260
            <summary>
2261
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
2262
            </summary>
2263
            <typeparam name="T">The type of token</typeparam>
2264
        </member>
2265
        <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
2266
            <summary>
2267
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
2268
            </summary>
2269
            <value></value>
2270
        </member>
2271
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
2272
            <summary>
2273
            Compares the values of two tokens, including the values of all descendant tokens.
2274
            </summary>
2275
            <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2276
            <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2277
            <returns>true if the tokens are equal; otherwise false.</returns>
2278
        </member>
2279
        <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
2280
            <summary>
2281
            Adds the specified content immediately after this token.
2282
            </summary>
2283
            <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
2284
        </member>
2285
        <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
2286
            <summary>
2287
            Adds the specified content immediately before this token.
2288
            </summary>
2289
            <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
2290
        </member>
2291
        <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
2292
            <summary>
2293
            Returns a collection of the ancestor tokens of this token.
2294
            </summary>
2295
            <returns>A collection of the ancestor tokens of this token.</returns>
2296
        </member>
2297
        <member name="M:Newtonsoft.Json.Linq.JToken.AncestorsAndSelf">
2298
            <summary>
2299
            Returns a collection of tokens that contain this token, and the ancestors of this token.
2300
            </summary>
2301
            <returns>A collection of tokens that contain this token, and the ancestors of this token.</returns>
2302
        </member>
2303
        <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
2304
            <summary>
2305
            Returns a collection of the sibling tokens after this token, in document order.
2306
            </summary>
2307
            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
2308
        </member>
2309
        <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
2310
            <summary>
2311
            Returns a collection of the sibling tokens before this token, in document order.
2312
            </summary>
2313
            <returns>A collection of the sibling tokens before this token, in document order.</returns>
2314
        </member>
2315
        <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
2316
            <summary>
2317
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
2318
            </summary>
2319
            <typeparam name="T">The type to convert the token to.</typeparam>
2320
            <param name="key">The token key.</param>
2321
            <returns>The converted token value.</returns>
2322
        </member>
2323
        <member name="M:Newtonsoft.Json.Linq.JToken.Children">
2324
            <summary>
2325
            Returns a collection of the child tokens of this token, in document order.
2326
            </summary>
2327
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the child tokens of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>, in document order.</returns>
2328
        </member>
2329
        <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
2330
            <summary>
2331
            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
2332
            </summary>
2333
            <typeparam name="T">The type to filter the child tokens on.</typeparam>
2334
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> containing the child tokens of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>, in document order.</returns>
2335
        </member>
2336
        <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
2337
            <summary>
2338
            Returns a collection of the child values of this token, in document order.
2339
            </summary>
2340
            <typeparam name="T">The type to convert the values to.</typeparam>
2341
            <returns>A <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the child values of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>, in document order.</returns>
2342
        </member>
2343
        <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
2344
            <summary>
2345
            Removes this token from its parent.
2346
            </summary>
2347
        </member>
2348
        <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
2349
            <summary>
2350
            Replaces this token with the specified token.
2351
            </summary>
2352
            <param name="value">The value.</param>
2353
        </member>
2354
        <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
2355
            <summary>
2356
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2357
            </summary>
2358
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
2359
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2360
        </member>
2361
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
2362
            <summary>
2363
            Returns the indented JSON for this token.
2364
            </summary>
2365
            <returns>
2366
            The indented JSON for this token.
2367
            </returns>
2368
        </member>
2369
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
2370
            <summary>
2371
            Returns the JSON for this token using the given formatting and converters.
2372
            </summary>
2373
            <param name="formatting">Indicates how the output is formatted.</param>
2374
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2375
            <returns>The JSON for this token using the given formatting and converters.</returns>
2376
        </member>
2377
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
2378
            <summary>
2379
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
2380
            </summary>
2381
            <param name="value">The value.</param>
2382
            <returns>The result of the conversion.</returns>
2383
        </member>
2384
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
2385
            <summary>
2386
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>.
2387
            </summary>
2388
            <param name="value">The value.</param>
2389
            <returns>The result of the conversion.</returns>
2390
        </member>
2391
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
2392
            <summary>
2393
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2394
            </summary>
2395
            <param name="value">The value.</param>
2396
            <returns>The result of the conversion.</returns>
2397
        </member>
2398
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
2399
            <summary>
2400
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>.
2401
            </summary>
2402
            <param name="value">The value.</param>
2403
            <returns>The result of the conversion.</returns>
2404
        </member>
2405
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
2406
            <summary>
2407
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2408
            </summary>
2409
            <param name="value">The value.</param>
2410
            <returns>The result of the conversion.</returns>
2411
        </member>
2412
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">
2413
            <summary>
2414
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2415
            </summary>
2416
            <param name="value">The value.</param>
2417
            <returns>The result of the conversion.</returns>
2418
        </member>
2419
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
2420
            <summary>
2421
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2422
            </summary>
2423
            <param name="value">The value.</param>
2424
            <returns>The result of the conversion.</returns>
2425
        </member>
2426
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
2427
            <summary>
2428
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2429
            </summary>
2430
            <param name="value">The value.</param>
2431
            <returns>The result of the conversion.</returns>
2432
        </member>
2433
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
2434
            <summary>
2435
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2436
            </summary>
2437
            <param name="value">The value.</param>
2438
            <returns>The result of the conversion.</returns>
2439
        </member>
2440
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
2441
            <summary>
2442
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
2443
            </summary>
2444
            <param name="value">The value.</param>
2445
            <returns>The result of the conversion.</returns>
2446
        </member>
2447
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
2448
            <summary>
2449
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
2450
            </summary>
2451
            <param name="value">The value.</param>
2452
            <returns>The result of the conversion.</returns>
2453
        </member>
2454
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
2455
            <summary>
2456
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
2457
            </summary>
2458
            <param name="value">The value.</param>
2459
            <returns>The result of the conversion.</returns>
2460
        </member>
2461
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
2462
            <summary>
2463
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.
2464
            </summary>
2465
            <param name="value">The value.</param>
2466
            <returns>The result of the conversion.</returns>
2467
        </member>
2468
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
2469
            <summary>
2470
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.
2471
            </summary>
2472
            <param name="value">The value.</param>
2473
            <returns>The result of the conversion.</returns>
2474
        </member>
2475
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">
2476
            <summary>
2477
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.
2478
            </summary>
2479
            <param name="value">The value.</param>
2480
            <returns>The result of the conversion.</returns>
2481
        </member>
2482
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
2483
            <summary>
2484
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2485
            </summary>
2486
            <param name="value">The value.</param>
2487
            <returns>The result of the conversion.</returns>
2488
        </member>
2489
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
2490
            <summary>
2491
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2492
            </summary>
2493
            <param name="value">The value.</param>
2494
            <returns>The result of the conversion.</returns>
2495
        </member>
2496
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
2497
            <summary>
2498
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2499
            </summary>
2500
            <param name="value">The value.</param>
2501
            <returns>The result of the conversion.</returns>
2502
        </member>
2503
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
2504
            <summary>
2505
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2506
            </summary>
2507
            <param name="value">The value.</param>
2508
            <returns>The result of the conversion.</returns>
2509
        </member>
2510
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">
2511
            <summary>
2512
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2513
            </summary>
2514
            <param name="value">The value.</param>
2515
            <returns>The result of the conversion.</returns>
2516
        </member>
2517
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
2518
            <summary>
2519
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>.
2520
            </summary>
2521
            <param name="value">The value.</param>
2522
            <returns>The result of the conversion.</returns>
2523
        </member>
2524
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
2525
            <summary>
2526
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2527
            </summary>
2528
            <param name="value">The value.</param>
2529
            <returns>The result of the conversion.</returns>
2530
        </member>
2531
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
2532
            <summary>
2533
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2534
            </summary>
2535
            <param name="value">The value.</param>
2536
            <returns>The result of the conversion.</returns>
2537
        </member>
2538
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
2539
            <summary>
2540
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
2541
            </summary>
2542
            <param name="value">The value.</param>
2543
            <returns>The result of the conversion.</returns>
2544
        </member>
2545
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
2546
            <summary>
2547
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2548
            </summary>
2549
            <param name="value">The value.</param>
2550
            <returns>The result of the conversion.</returns>
2551
        </member>
2552
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
2553
            <summary>
2554
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2555
            </summary>
2556
            <param name="value">The value.</param>
2557
            <returns>The result of the conversion.</returns>
2558
        </member>
2559
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
2560
            <summary>
2561
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
2562
            </summary>
2563
            <param name="value">The value.</param>
2564
            <returns>The result of the conversion.</returns>
2565
        </member>
2566
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
2567
            <summary>
2568
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
2569
            </summary>
2570
            <param name="value">The value.</param>
2571
            <returns>The result of the conversion.</returns>
2572
        </member>
2573
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
2574
            <summary>
2575
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
2576
            </summary>
2577
            <param name="value">The value.</param>
2578
            <returns>The result of the conversion.</returns>
2579
        </member>
2580
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
2581
            <summary>
2582
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
2583
            </summary>
2584
            <param name="value">The value.</param>
2585
            <returns>The result of the conversion.</returns>
2586
        </member>
2587
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
2588
            <summary>
2589
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
2590
            </summary>
2591
            <param name="value">The value.</param>
2592
            <returns>The result of the conversion.</returns>
2593
        </member>
2594
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
2595
            <summary>
2596
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>[].
2597
            </summary>
2598
            <param name="value">The value.</param>
2599
            <returns>The result of the conversion.</returns>
2600
        </member>
2601
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
2602
            <summary>
2603
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2604
            </summary>
2605
            <param name="value">The value.</param>
2606
            <returns>The result of the conversion.</returns>
2607
        </member>
2608
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
2609
            <summary>
2610
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2611
            </summary>
2612
            <param name="value">The value.</param>
2613
            <returns>The result of the conversion.</returns>
2614
        </member>
2615
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
2616
            <summary>
2617
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2618
            </summary>
2619
            <param name="value">The value.</param>
2620
            <returns>The result of the conversion.</returns>
2621
        </member>
2622
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
2623
            <summary>
2624
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2625
            </summary>
2626
            <param name="value">The value.</param>
2627
            <returns>The result of the conversion.</returns>
2628
        </member>
2629
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
2630
            <summary>
2631
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.
2632
            </summary>
2633
            <param name="value">The value.</param>
2634
            <returns>The result of the conversion.</returns>
2635
        </member>
2636
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
2637
            <summary>
2638
            Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2639
            </summary>
2640
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2641
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2642
        </member>
2643
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">
2644
            <summary>
2645
            Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2646
            </summary>
2647
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2648
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2649
        </member>
2650
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">
2651
            <summary>
2652
            Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2653
            </summary>
2654
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2655
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2656
        </member>
2657
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">
2658
            <summary>
2659
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2660
            </summary>
2661
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2662
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2663
        </member>
2664
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">
2665
            <summary>
2666
            Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2667
            </summary>
2668
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2669
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2670
        </member>
2671
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">
2672
            <summary>
2673
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2674
            </summary>
2675
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2676
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2677
        </member>
2678
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
2679
            <summary>
2680
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2681
            </summary>
2682
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2683
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2684
        </member>
2685
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
2686
            <summary>
2687
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2688
            </summary>
2689
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2690
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2691
        </member>
2692
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
2693
            <summary>
2694
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2695
            </summary>
2696
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2697
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2698
        </member>
2699
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">
2700
            <summary>
2701
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2702
            </summary>
2703
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2704
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2705
        </member>
2706
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
2707
            <summary>
2708
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2709
            </summary>
2710
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2711
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2712
        </member>
2713
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
2714
            <summary>
2715
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2716
            </summary>
2717
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2718
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2719
        </member>
2720
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
2721
            <summary>
2722
            Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2723
            </summary>
2724
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2725
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2726
        </member>
2727
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
2728
            <summary>
2729
            Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2730
            </summary>
2731
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2732
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2733
        </member>
2734
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
2735
            <summary>
2736
            Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2737
            </summary>
2738
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2739
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2740
        </member>
2741
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
2742
            <summary>
2743
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2744
            </summary>
2745
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2746
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2747
        </member>
2748
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
2749
            <summary>
2750
            Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2751
            </summary>
2752
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2753
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2754
        </member>
2755
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
2756
            <summary>
2757
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2758
            </summary>
2759
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2760
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2761
        </member>
2762
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
2763
            <summary>
2764
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2765
            </summary>
2766
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2767
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2768
        </member>
2769
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
2770
            <summary>
2771
            Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2772
            </summary>
2773
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2774
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2775
        </member>
2776
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
2777
            <summary>
2778
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2779
            </summary>
2780
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2781
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2782
        </member>
2783
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
2784
            <summary>
2785
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2786
            </summary>
2787
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2788
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2789
        </member>
2790
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
2791
            <summary>
2792
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2793
            </summary>
2794
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2795
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2796
        </member>
2797
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
2798
            <summary>
2799
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2800
            </summary>
2801
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2802
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2803
        </member>
2804
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
2805
            <summary>
2806
            Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2807
            </summary>
2808
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2809
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2810
        </member>
2811
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
2812
            <summary>
2813
            Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2814
            </summary>
2815
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2816
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2817
        </member>
2818
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
2819
            <summary>
2820
            Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2821
            </summary>
2822
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2823
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2824
        </member>
2825
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
2826
            <summary>
2827
            Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2828
            </summary>
2829
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2830
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2831
        </member>
2832
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
2833
            <summary>
2834
            Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2835
            </summary>
2836
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2837
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2838
        </member>
2839
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
2840
            <summary>
2841
            Performs an implicit conversion from <see cref="T:System.Byte"/>[] to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2842
            </summary>
2843
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2844
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2845
        </member>
2846
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
2847
            <summary>
2848
            Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2849
            </summary>
2850
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2851
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2852
        </member>
2853
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
2854
            <summary>
2855
            Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2856
            </summary>
2857
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2858
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2859
        </member>
2860
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
2861
            <summary>
2862
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2863
            </summary>
2864
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2865
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2866
        </member>
2867
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
2868
            <summary>
2869
            Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2870
            </summary>
2871
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2872
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2873
        </member>
2874
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
2875
            <summary>
2876
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2877
            </summary>
2878
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2879
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2880
        </member>
2881
        <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
2882
            <summary>
2883
            Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
2884
            </summary>
2885
            <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
2886
        </member>
2887
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
2888
            <summary>
2889
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
2890
            </summary>
2891
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
2892
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
2893
        </member>
2894
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
2895
            <summary>
2896
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2897
            </summary>
2898
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
2899
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
2900
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
2901
        </member>
2902
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
2903
            <summary>
2904
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2905
            </summary>
2906
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
2907
            <returns>The new object created from the JSON value.</returns>
2908
        </member>
2909
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
2910
            <summary>
2911
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2912
            </summary>
2913
            <param name="objectType">The object type that the token will be deserialized to.</param>
2914
            <returns>The new object created from the JSON value.</returns>
2915
        </member>
2916
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
2917
            <summary>
2918
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2919
            </summary>
2920
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
2921
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
2922
            <returns>The new object created from the JSON value.</returns>
2923
        </member>
2924
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
2925
            <summary>
2926
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2927
            </summary>
2928
            <param name="objectType">The object type that the token will be deserialized to.</param>
2929
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
2930
            <returns>The new object created from the JSON value.</returns>
2931
        </member>
2932
        <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
2933
            <summary>
2934
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
2935
            </summary>
2936
            <param name="reader">An <see cref="T:Newtonsoft.Json.JsonReader"/> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
2937
            <returns>
2938
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
2939
            that were read from the reader. The runtime type of the token is determined
2940
            by the token type of the first token encountered in the reader.
2941
            </returns>
2942
        </member>
2943
        <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
2944
            <summary>
2945
            Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
2946
            </summary>
2947
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
2948
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
2949
        </member>
2950
        <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
2951
            <summary>
2952
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
2953
            </summary>
2954
            <param name="reader">An <see cref="T:Newtonsoft.Json.JsonReader"/> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
2955
            <returns>
2956
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
2957
            that were read from the reader. The runtime type of the token is determined
2958
            by the token type of the first token encountered in the reader.
2959
            </returns>
2960
        </member>
2961
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
2962
            <summary>
2963
            Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
2964
            </summary>
2965
            <param name="path">
2966
            A <see cref="T:System.String"/> that contains a JPath expression.
2967
            </param>
2968
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or null.</returns>
2969
        </member>
2970
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
2971
            <summary>
2972
            Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
2973
            </summary>
2974
            <param name="path">
2975
            A <see cref="T:System.String"/> that contains a JPath expression.
2976
            </param>
2977
            <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.</param>
2978
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
2979
        </member>
2980
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
2981
            <summary>
2982
            Selects a collection of elements using a JPath expression.
2983
            </summary>
2984
            <param name="path">
2985
            A <see cref="T:System.String"/> that contains a JPath expression.
2986
            </param>
2987
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
2988
        </member>
2989
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">
2990
            <summary>
2991
            Selects a collection of elements using a JPath expression.
2992
            </summary>
2993
            <param name="path">
2994
            A <see cref="T:System.String"/> that contains a JPath expression.
2995
            </param>
2996
            <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.</param>
2997
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
2998
        </member>
2999
        <member name="M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)">
3000
            <summary>
3001
            Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
3002
            </summary>
3003
            <param name="parameter">The expression tree representation of the runtime value.</param>
3004
            <returns>
3005
            The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
3006
            </returns>
3007
        </member>
3008
        <member name="M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)">
3009
            <summary>
3010
            Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
3011
            </summary>
3012
            <param name="parameter">The expression tree representation of the runtime value.</param>
3013
            <returns>
3014
            The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
3015
            </returns>
3016
        </member>
3017
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
3018
            <summary>
3019
            Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
3020
            </summary>
3021
            <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3022
        </member>
3023
        <member name="M:Newtonsoft.Json.Linq.JToken.AddAnnotation(System.Object)">
3024
            <summary>
3025
            Adds an object to the annotation list of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3026
            </summary>
3027
            <param name="annotation">The annotation to add.</param>
3028
        </member>
3029
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotation``1">
3030
            <summary>
3031
            Get the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3032
            </summary>
3033
            <typeparam name="T">The type of the annotation to retrieve.</typeparam>
3034
            <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
3035
        </member>
3036
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotation(System.Type)">
3037
            <summary>
3038
            Gets the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3039
            </summary>
3040
            <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotation to retrieve.</param>
3041
            <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
3042
        </member>
3043
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotations``1">
3044
            <summary>
3045
            Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3046
            </summary>
3047
            <typeparam name="T">The type of the annotations to retrieve.</typeparam>
3048
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/>  that contains the annotations for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3049
        </member>
3050
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotations(System.Type)">
3051
            <summary>
3052
            Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3053
            </summary>
3054
            <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotations to retrieve.</param>
3055
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:System.Object"/> that contains the annotations that match the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3056
        </member>
3057
        <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations``1">
3058
            <summary>
3059
            Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3060
            </summary>
3061
            <typeparam name="T">The type of annotations to remove.</typeparam>
3062
        </member>
3063
        <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations(System.Type)">
3064
            <summary>
3065
            Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3066
            </summary>
3067
            <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of annotations to remove.</param>
3068
        </member>
3069
        <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
3070
            <summary>
3071
            Gets a comparer that can compare two tokens for value equality.
3072
            </summary>
3073
            <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
3074
        </member>
3075
        <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
3076
            <summary>
3077
            Gets or sets the parent.
3078
            </summary>
3079
            <value>The parent.</value>
3080
        </member>
3081
        <member name="P:Newtonsoft.Json.Linq.JToken.Root">
3082
            <summary>
3083
            Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3084
            </summary>
3085
            <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
3086
        </member>
3087
        <member name="P:Newtonsoft.Json.Linq.JToken.Type">
3088
            <summary>
3089
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3090
            </summary>
3091
            <value>The type.</value>
3092
        </member>
3093
        <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
3094
            <summary>
3095
            Gets a value indicating whether this token has child tokens.
3096
            </summary>
3097
            <value>
3098
            	<c>true</c> if this token has child values; otherwise, <c>false</c>.
3099
            </value>
3100
        </member>
3101
        <member name="P:Newtonsoft.Json.Linq.JToken.Next">
3102
            <summary>
3103
            Gets the next sibling token of this node.
3104
            </summary>
3105
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
3106
        </member>
3107
        <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
3108
            <summary>
3109
            Gets the previous sibling token of this node.
3110
            </summary>
3111
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
3112
        </member>
3113
        <member name="P:Newtonsoft.Json.Linq.JToken.Path">
3114
            <summary>
3115
            Gets the path of the JSON token. 
3116
            </summary>
3117
        </member>
3118
        <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
3119
            <summary>
3120
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
3121
            </summary>
3122
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
3123
        </member>
3124
        <member name="P:Newtonsoft.Json.Linq.JToken.First">
3125
            <summary>
3126
            Get the first child token of this token.
3127
            </summary>
3128
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
3129
        </member>
3130
        <member name="P:Newtonsoft.Json.Linq.JToken.Last">
3131
            <summary>
3132
            Get the last child token of this token.
3133
            </summary>
3134
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
3135
        </member>
3136
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
3137
            <summary>
3138
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
3139
            </summary>
3140
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
3141
        </member>
3142
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
3143
            <summary>
3144
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3145
            </summary>
3146
            <param name="value">The value.</param>
3147
        </member>
3148
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
3149
            <summary>
3150
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3151
            </summary>
3152
            <param name="value">The value.</param>
3153
        </member>
3154
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
3155
            <summary>
3156
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3157
            </summary>
3158
            <param name="value">The value.</param>
3159
        </member>
3160
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
3161
            <summary>
3162
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3163
            </summary>
3164
            <param name="value">The value.</param>
3165
        </member>
3166
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
3167
            <summary>
3168
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3169
            </summary>
3170
            <param name="value">The value.</param>
3171
        </member>
3172
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
3173
            <summary>
3174
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3175
            </summary>
3176
            <param name="value">The value.</param>
3177
        </member>
3178
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
3179
            <summary>
3180
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3181
            </summary>
3182
            <param name="value">The value.</param>
3183
        </member>
3184
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTimeOffset)">
3185
            <summary>
3186
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3187
            </summary>
3188
            <param name="value">The value.</param>
3189
        </member>
3190
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
3191
            <summary>
3192
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3193
            </summary>
3194
            <param name="value">The value.</param>
3195
        </member>
3196
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
3197
            <summary>
3198
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3199
            </summary>
3200
            <param name="value">The value.</param>
3201
        </member>
3202
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
3203
            <summary>
3204
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3205
            </summary>
3206
            <param name="value">The value.</param>
3207
        </member>
3208
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
3209
            <summary>
3210
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3211
            </summary>
3212
            <param name="value">The value.</param>
3213
        </member>
3214
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
3215
            <summary>
3216
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3217
            </summary>
3218
            <param name="value">The value.</param>
3219
        </member>
3220
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
3221
            <summary>
3222
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3223
            </summary>
3224
            <param name="value">The value.</param>
3225
        </member>
3226
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
3227
            <summary>
3228
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
3229
            </summary>
3230
            <param name="value">The value.</param>
3231
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
3232
        </member>
3233
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
3234
            <summary>
3235
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
3236
            </summary>
3237
            <param name="value">The value.</param>
3238
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
3239
        </member>
3240
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">
3241
            <summary>
3242
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
3243
            </summary>
3244
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
3245
        </member>
3246
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">
3247
            <summary>
3248
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
3249
            </summary>
3250
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
3251
        </member>
3252
        <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
3253
            <summary>
3254
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3255
            </summary>
3256
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
3257
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
3258
        </member>
3259
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
3260
            <summary>
3261
            Indicates whether the current object is equal to another object of the same type.
3262
            </summary>
3263
            <returns>
3264
            true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.
3265
            </returns>
3266
            <param name="other">An object to compare with this object.</param>
3267
        </member>
3268
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
3269
            <summary>
3270
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
3271
            </summary>
3272
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
3273
            <returns>
3274
            true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
3275
            </returns>
3276
            <exception cref="T:System.NullReferenceException">
3277
            The <paramref name="obj"/> parameter is null.
3278
            </exception>
3279
        </member>
3280
        <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
3281
            <summary>
3282
            Serves as a hash function for a particular type.
3283
            </summary>
3284
            <returns>
3285
            A hash code for the current <see cref="T:System.Object"/>.
3286
            </returns>
3287
        </member>
3288
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
3289
            <summary>
3290
            Returns a <see cref="T:System.String"/> that represents this instance.
3291
            </summary>
3292
            <returns>
3293
            A <see cref="T:System.String"/> that represents this instance.
3294
            </returns>
3295
        </member>
3296
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
3297
            <summary>
3298
            Returns a <see cref="T:System.String"/> that represents this instance.
3299
            </summary>
3300
            <param name="format">The format.</param>
3301
            <returns>
3302
            A <see cref="T:System.String"/> that represents this instance.
3303
            </returns>
3304
        </member>
3305
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
3306
            <summary>
3307
            Returns a <see cref="T:System.String"/> that represents this instance.
3308
            </summary>
3309
            <param name="formatProvider">The format provider.</param>
3310
            <returns>
3311
            A <see cref="T:System.String"/> that represents this instance.
3312
            </returns>
3313
        </member>
3314
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
3315
            <summary>
3316
            Returns a <see cref="T:System.String"/> that represents this instance.
3317
            </summary>
3318
            <param name="format">The format.</param>
3319
            <param name="formatProvider">The format provider.</param>
3320
            <returns>
3321
            A <see cref="T:System.String"/> that represents this instance.
3322
            </returns>
3323
        </member>
3324
        <member name="M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)">
3325
            <summary>
3326
            Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
3327
            </summary>
3328
            <param name="parameter">The expression tree representation of the runtime value.</param>
3329
            <returns>
3330
            The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
3331
            </returns>
3332
        </member>
3333
        <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
3334
            <summary>
3335
            Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
3336
            </summary>
3337
            <param name="obj">An object to compare with this instance.</param>
3338
            <returns>
3339
            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
3340
            Value
3341
            Meaning
3342
            Less than zero
3343
            This instance is less than <paramref name="obj"/>.
3344
            Zero
3345
            This instance is equal to <paramref name="obj"/>.
3346
            Greater than zero
3347
            This instance is greater than <paramref name="obj"/>.
3348
            </returns>
3349
            <exception cref="T:System.ArgumentException">
3350
            	<paramref name="obj"/> is not the same type as this instance.
3351
            </exception>
3352
        </member>
3353
        <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
3354
            <summary>
3355
            Gets a value indicating whether this token has child tokens.
3356
            </summary>
3357
            <value>
3358
            	<c>true</c> if this token has child values; otherwise, <c>false</c>.
3359
            </value>
3360
        </member>
3361
        <member name="P:Newtonsoft.Json.Linq.JValue.Type">
3362
            <summary>
3363
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3364
            </summary>
3365
            <value>The type.</value>
3366
        </member>
3367
        <member name="P:Newtonsoft.Json.Linq.JValue.Value">
3368
            <summary>
3369
            Gets or sets the underlying token value.
3370
            </summary>
3371
            <value>The underlying token value.</value>
3372
        </member>
3373
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
3374
            <summary>
3375
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
3376
            </summary>
3377
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
3378
        </member>
3379
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
3380
            <summary>
3381
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
3382
            </summary>
3383
            <param name="rawJson">The raw json.</param>
3384
        </member>
3385
        <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
3386
            <summary>
3387
            Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
3388
            </summary>
3389
            <param name="reader">The reader.</param>
3390
            <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
3391
        </member>
3392
        <member name="T:Newtonsoft.Json.Required">
3393
            <summary>
3394
            Indicating whether a property is required.
3395
            </summary>
3396
        </member>
3397
        <member name="F:Newtonsoft.Json.Required.Default">
3398
            <summary>
3399
            The property is not required. The default state.
3400
            </summary>
3401
        </member>
3402
        <member name="F:Newtonsoft.Json.Required.AllowNull">
3403
            <summary>
3404
            The property must be defined in JSON but can be a null value.
3405
            </summary>
3406
        </member>
3407
        <member name="F:Newtonsoft.Json.Required.Always">
3408
            <summary>
3409
            The property must be defined in JSON and cannot be a null value.
3410
            </summary>
3411
        </member>
3412
        <member name="T:Newtonsoft.Json.Serialization.JsonDynamicContract">
3413
            <summary>
3414
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3415
            </summary>
3416
        </member>
3417
        <member name="M:Newtonsoft.Json.Serialization.JsonDynamicContract.#ctor(System.Type)">
3418
            <summary>
3419
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> class.
3420
            </summary>
3421
            <param name="underlyingType">The underlying type for the contract.</param>
3422
        </member>
3423
        <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.Properties">
3424
            <summary>
3425
            Gets the object's properties.
3426
            </summary>
3427
            <value>The object's properties.</value>
3428
        </member>
3429
        <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.PropertyNameResolver">
3430
            <summary>
3431
            Gets or sets the property name resolver.
3432
            </summary>
3433
            <value>The property name resolver.</value>
3434
        </member>
3435
        <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
3436
            <summary>
3437
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3438
            </summary>
3439
        </member>
3440
        <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
3441
            <summary>
3442
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
3443
            </summary>
3444
            <param name="underlyingType">The underlying type for the contract.</param>
3445
        </member>
3446
        <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
3447
            <summary>
3448
            Gets or sets the ISerializable object constructor.
3449
            </summary>
3450
            <value>The ISerializable object constructor.</value>
3451
        </member>
3452
        <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
3453
            <summary>
3454
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3455
            </summary>
3456
        </member>
3457
        <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
3458
            <summary>
3459
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
3460
            </summary>
3461
            <param name="underlyingType">The underlying type for the contract.</param>
3462
        </member>
3463
        <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
3464
            <summary>
3465
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3466
            </summary>
3467
        </member>
3468
        <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
3469
            <summary>
3470
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
3471
            </summary>
3472
            <param name="underlyingType">The underlying type for the contract.</param>
3473
        </member>
3474
        <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
3475
            <summary>
3476
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
3477
            </summary>
3478
        </member>
3479
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
3480
            <summary>
3481
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
3482
            </summary>
3483
            <param name="memberInfo">The member info.</param>
3484
        </member>
3485
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
3486
            <summary>
3487
            Sets the value.
3488
            </summary>
3489
            <param name="target">The target to set the value on.</param>
3490
            <param name="value">The value to set on the target.</param>
3491
        </member>
3492
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
3493
            <summary>
3494
            Gets the value.
3495
            </summary>
3496
            <param name="target">The target to get the value from.</param>
3497
            <returns>The value.</returns>
3498
        </member>
3499
        <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
3500
            <summary>
3501
            Provides data for the Error event.
3502
            </summary>
3503
        </member>
3504
        <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
3505
            <summary>
3506
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
3507
            </summary>
3508
            <param name="currentObject">The current object.</param>
3509
            <param name="errorContext">The error context.</param>
3510
        </member>
3511
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
3512
            <summary>
3513
            Gets the current object the error event is being raised against.
3514
            </summary>
3515
            <value>The current object the error event is being raised against.</value>
3516
        </member>
3517
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
3518
            <summary>
3519
            Gets the error context.
3520
            </summary>
3521
            <value>The error context.</value>
3522
        </member>
3523
        <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
3524
            <summary>
3525
            Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
3526
            </summary>
3527
        </member>
3528
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">
3529
            <summary>
3530
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
3531
            </summary>
3532
            <param name="name">The name.</param>
3533
        </member>
3534
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
3535
            <summary>
3536
            When overridden in a derived class, returns whether resetting an object changes its value.
3537
            </summary>
3538
            <returns>
3539
            true if resetting the component changes its value; otherwise, false.
3540
            </returns>
3541
            <param name="component">The component to test for reset capability. 
3542
                            </param>
3543
        </member>
3544
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
3545
            <summary>
3546
            When overridden in a derived class, gets the current value of the property on a component.
3547
            </summary>
3548
            <returns>
3549
            The value of a property for a given component.
3550
            </returns>
3551
            <param name="component">The component with the property for which to retrieve the value. 
3552
                            </param>
3553
        </member>
3554
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
3555
            <summary>
3556
            When overridden in a derived class, resets the value for this property of the component to the default value.
3557
            </summary>
3558
            <param name="component">The component with the property value that is to be reset to the default value. 
3559
                            </param>
3560
        </member>
3561
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
3562
            <summary>
3563
            When overridden in a derived class, sets the value of the component to a different value.
3564
            </summary>
3565
            <param name="component">The component with the property value that is to be set. 
3566
                            </param><param name="value">The new value. 
3567
                            </param>
3568
        </member>
3569
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
3570
            <summary>
3571
            When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
3572
            </summary>
3573
            <returns>
3574
            true if the property should be persisted; otherwise, false.
3575
            </returns>
3576
            <param name="component">The component with the property to be examined for persistence. 
3577
                            </param>
3578
        </member>
3579
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
3580
            <summary>
3581
            When overridden in a derived class, gets the type of the component this property is bound to.
3582
            </summary>
3583
            <returns>
3584
            A <see cref="T:System.Type"/> that represents the type of component this property is bound to. When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"/> or <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"/> methods are invoked, the object specified might be an instance of this type.
3585
            </returns>
3586
        </member>
3587
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
3588
            <summary>
3589
            When overridden in a derived class, gets a value indicating whether this property is read-only.
3590
            </summary>
3591
            <returns>
3592
            true if the property is read-only; otherwise, false.
3593
            </returns>
3594
        </member>
3595
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
3596
            <summary>
3597
            When overridden in a derived class, gets the type of the property.
3598
            </summary>
3599
            <returns>
3600
            A <see cref="T:System.Type"/> that represents the type of the property.
3601
            </returns>
3602
        </member>
3603
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
3604
            <summary>
3605
            Gets the hash code for the name of the member.
3606
            </summary>
3607
            <value></value>
3608
            <returns>
3609
            The hash code for the name of the member.
3610
            </returns>
3611
        </member>
3612
        <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
3613
            <summary>
3614
            Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3615
            </summary>
3616
        </member>
3617
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
3618
            <summary>
3619
            Resolves a reference to its object.
3620
            </summary>
3621
            <param name="context">The serialization context.</param>
3622
            <param name="reference">The reference to resolve.</param>
3623
            <returns>The object that</returns>
3624
        </member>
3625
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
3626
            <summary>
3627
            Gets the reference for the sepecified object.
3628
            </summary>
3629
            <param name="context">The serialization context.</param>
3630
            <param name="value">The object to get a reference for.</param>
3631
            <returns>The reference to the object.</returns>
3632
        </member>
3633
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
3634
            <summary>
3635
            Determines whether the specified object is referenced.
3636
            </summary>
3637
            <param name="context">The serialization context.</param>
3638
            <param name="value">The object to test for a reference.</param>
3639
            <returns>
3640
            	<c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
3641
            </returns>
3642
        </member>
3643
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
3644
            <summary>
3645
            Adds a reference to the specified object.
3646
            </summary>
3647
            <param name="context">The serialization context.</param>
3648
            <param name="reference">The reference.</param>
3649
            <param name="value">The object to reference.</param>
3650
        </member>
3651
        <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
3652
            <summary>
3653
            Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3654
            Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable.
3655
            </summary>
3656
            <example>
3657
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References"/>       
3658
            </example>
3659
        </member>
3660
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
3661
            <summary>
3662
            Do not preserve references when serializing types.
3663
            </summary>
3664
        </member>
3665
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
3666
            <summary>
3667
            Preserve references when serializing into a JSON object structure.
3668
            </summary>
3669
        </member>
3670
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
3671
            <summary>
3672
            Preserve references when serializing into a JSON array structure.
3673
            </summary>
3674
        </member>
3675
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
3676
            <summary>
3677
            Preserve references when serializing.
3678
            </summary>
3679
        </member>
3680
        <member name="T:Newtonsoft.Json.JsonArrayAttribute">
3681
            <summary>
3682
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
3683
            </summary>
3684
        </member>
3685
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
3686
            <summary>
3687
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
3688
            </summary>
3689
        </member>
3690
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
3691
            <summary>
3692
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items
3693
            </summary>
3694
            <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
3695
        </member>
3696
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
3697
            <summary>
3698
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
3699
            </summary>
3700
            <param name="id">The container Id.</param>
3701
        </member>
3702
        <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
3703
            <summary>
3704
            Gets or sets a value indicating whether null items are allowed in the collection.
3705
            </summary>
3706
            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
3707
        </member>
3708
        <member name="T:Newtonsoft.Json.DefaultValueHandling">
3709
            <summary>
3710
            Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3711
            </summary>
3712
            <example>
3713
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class"/>
3714
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example"/>
3715
            </example>
3716
        </member>
3717
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
3718
            <summary>
3719
            Include members where the member value is the same as the member's default value when serializing objects.
3720
            Included members are written to JSON. Has no effect when deserializing.
3721
            </summary>
3722
        </member>
3723
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
3724
            <summary>
3725
            Ignore members where the member value is the same as the member's default value when serializing objects
3726
            so that is is not written to JSON.
3727
            This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,
3728
            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
3729
            placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
3730
            </summary>
3731
        </member>
3732
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
3733
            <summary>
3734
            Members with a default value but no JSON will be set to their default value when deserializing.
3735
            </summary>
3736
        </member>
3737
        <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
3738
            <summary>
3739
            Ignore members where the member value is the same as the member's default value when serializing objects
3740
            and sets members to their default value when deserializing.
3741
            </summary>
3742
        </member>
3743
        <member name="T:Newtonsoft.Json.JsonConverterAttribute">
3744
            <summary>
3745
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
3746
            </summary>
3747
        </member>
3748
        <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
3749
            <summary>
3750
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
3751
            </summary>
3752
            <param name="converterType">Type of the converter.</param>
3753
        </member>
3754
        <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])">
3755
            <summary>
3756
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
3757
            </summary>
3758
            <param name="converterType">Type of the converter.</param>
3759
            <param name="converterParameters">Parameter list to use when constructing the JsonConverter.  Can be null.</param>
3760
        </member>
3761
        <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
3762
            <summary>
3763
            Gets the type of the converter.
3764
            </summary>
3765
            <value>The type of the converter.</value>
3766
        </member>
3767
        <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters">
3768
            <summary>
3769
            The parameter list to use when constructing the JsonConverter described by ConverterType.  
3770
            If null, the default constructor is used.
3771
            </summary>
3772
        </member>
3773
        <member name="T:Newtonsoft.Json.JsonObjectAttribute">
3774
            <summary>
3775
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
3776
            </summary>
3777
        </member>
3778
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
3779
            <summary>
3780
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
3781
            </summary>
3782
        </member>
3783
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
3784
            <summary>
3785
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
3786
            </summary>
3787
            <param name="memberSerialization">The member serialization.</param>
3788
        </member>
3789
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
3790
            <summary>
3791
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
3792
            </summary>
3793
            <param name="id">The container Id.</param>
3794
        </member>
3795
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
3796
            <summary>
3797
            Gets or sets the member serialization.
3798
            </summary>
3799
            <value>The member serialization.</value>
3800
        </member>
3801
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
3802
            <summary>
3803
            Gets or sets a value that indicates whether the object's properties are required.
3804
            </summary>
3805
            <value>
3806
            	A value indicating whether the object's properties are required.
3807
            </value>
3808
        </member>
3809
        <member name="T:Newtonsoft.Json.JsonSerializerSettings">
3810
            <summary>
3811
            Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
3812
            </summary>
3813
        </member>
3814
        <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
3815
            <summary>
3816
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
3817
            </summary>
3818
        </member>
3819
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
3820
            <summary>
3821
            Gets or sets how reference loops (e.g. a class referencing itself) is handled.
3822
            </summary>
3823
            <value>Reference loop handling.</value>
3824
        </member>
3825
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
3826
            <summary>
3827
            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
3828
            </summary>
3829
            <value>Missing member handling.</value>
3830
        </member>
3831
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
3832
            <summary>
3833
            Gets or sets how objects are created during deserialization.
3834
            </summary>
3835
            <value>The object creation handling.</value>
3836
        </member>
3837
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
3838
            <summary>
3839
            Gets or sets how null values are handled during serialization and deserialization.
3840
            </summary>
3841
            <value>Null value handling.</value>
3842
        </member>
3843
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
3844
            <summary>
3845
            Gets or sets how null default are handled during serialization and deserialization.
3846
            </summary>
3847
            <value>The default value handling.</value>
3848
        </member>
3849
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
3850
            <summary>
3851
            Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
3852
            </summary>
3853
            <value>The converters.</value>
3854
        </member>
3855
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
3856
            <summary>
3857
            Gets or sets how object references are preserved by the serializer.
3858
            </summary>
3859
            <value>The preserve references handling.</value>
3860
        </member>
3861
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
3862
            <summary>
3863
            Gets or sets how type name writing and reading is handled by the serializer.
3864
            </summary>
3865
            <value>The type name handling.</value>
3866
        </member>
3867
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">
3868
            <summary>
3869
            Gets or sets how metadata properties are used during deserialization.
3870
            </summary>
3871
            <value>The metadata properties handling.</value>
3872
        </member>
3873
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
3874
            <summary>
3875
            Gets or sets how a type name assembly is written and resolved by the serializer.
3876
            </summary>
3877
            <value>The type name assembly format.</value>
3878
        </member>
3879
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
3880
            <summary>
3881
            Gets or sets how constructors are used during deserialization.
3882
            </summary>
3883
            <value>The constructor handling.</value>
3884
        </member>
3885
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
3886
            <summary>
3887
            Gets or sets the contract resolver used by the serializer when
3888
            serializing .NET objects to JSON and vice versa.
3889
            </summary>
3890
            <value>The contract resolver.</value>
3891
        </member>
3892
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
3893
            <summary>
3894
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
3895
            </summary>
3896
            <value>The reference resolver.</value>
3897
        </member>
3898
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
3899
            <summary>
3900
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
3901
            </summary>
3902
            <value>The trace writer.</value>
3903
        </member>
3904
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
3905
            <summary>
3906
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
3907
            </summary>
3908
            <value>The binder.</value>
3909
        </member>
3910
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
3911
            <summary>
3912
            Gets or sets the error handler called during serialization and deserialization.
3913
            </summary>
3914
            <value>The error handler called during serialization and deserialization.</value>
3915
        </member>
3916
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
3917
            <summary>
3918
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
3919
            </summary>
3920
            <value>The context.</value>
3921
        </member>
3922
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
3923
            <summary>
3924
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
3925
            </summary>
3926
        </member>
3927
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
3928
            <summary>
3929
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
3930
            </summary>
3931
        </member>
3932
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
3933
            <summary>
3934
            Indicates how JSON text output is formatted.
3935
            </summary>
3936
        </member>
3937
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
3938
            <summary>
3939
            Get or set how dates are written to JSON text.
3940
            </summary>
3941
        </member>
3942
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
3943
            <summary>
3944
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
3945
            </summary>
3946
        </member>
3947
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
3948
            <summary>
3949
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
3950
            </summary>
3951
        </member>
3952
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
3953
            <summary>
3954
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
3955
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
3956
            are written as JSON.
3957
            </summary>
3958
        </member>
3959
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
3960
            <summary>
3961
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
3962
            </summary>
3963
        </member>
3964
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
3965
            <summary>
3966
            Get or set how strings are escaped when writing JSON text.
3967
            </summary>
3968
        </member>
3969
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
3970
            <summary>
3971
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
3972
            </summary>
3973
        </member>
3974
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
3975
            <summary>
3976
            Gets a value indicating whether there will be a check for additional content after deserializing an object.
3977
            </summary>
3978
            <value>
3979
            	<c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
3980
            </value>
3981
        </member>
3982
        <member name="T:Newtonsoft.Json.JsonValidatingReader">
3983
            <summary>
3984
            Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
3985
            </summary>
3986
        </member>
3987
        <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
3988
            <summary>
3989
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
3990
            validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
3991
            </summary>
3992
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
3993
        </member>
3994
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
3995
            <summary>
3996
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3997
            </summary>
3998
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3999
        </member>
4000
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
4001
            <summary>
4002
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
4003
            </summary>
4004
            <returns>
4005
            A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null.
4006
            </returns>
4007
        </member>
4008
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
4009
            <summary>
4010
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4011
            </summary>
4012
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
4013
        </member>
4014
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
4015
            <summary>
4016
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
4017
            </summary>
4018
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4019
        </member>
4020
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
4021
            <summary>
4022
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4023
            </summary>
4024
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4025
        </member>
4026
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
4027
            <summary>
4028
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4029
            </summary>
4030
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
4031
        </member>
4032
        <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
4033
            <summary>
4034
            Reads the next JSON token from the stream.
4035
            </summary>
4036
            <returns>
4037
            true if the next token was read successfully; false if there are no more tokens to read.
4038
            </returns>
4039
        </member>
4040
        <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
4041
            <summary>
4042
            Sets an event handler for receiving schema validation errors.
4043
            </summary>
4044
        </member>
4045
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
4046
            <summary>
4047
            Gets the text value of the current JSON token.
4048
            </summary>
4049
            <value></value>
4050
        </member>
4051
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
4052
            <summary>
4053
            Gets the depth of the current token in the JSON document.
4054
            </summary>
4055
            <value>The depth of the current token in the JSON document.</value>
4056
        </member>
4057
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
4058
            <summary>
4059
            Gets the path of the current JSON token. 
4060
            </summary>
4061
        </member>
4062
        <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
4063
            <summary>
4064
            Gets the quotation mark character used to enclose the value of a string.
4065
            </summary>
4066
            <value></value>
4067
        </member>
4068
        <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
4069
            <summary>
4070
            Gets the type of the current JSON token.
4071
            </summary>
4072
            <value></value>
4073
        </member>
4074
        <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
4075
            <summary>
4076
            Gets the Common Language Runtime (CLR) type for the current JSON token.
4077
            </summary>
4078
            <value></value>
4079
        </member>
4080
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
4081
            <summary>
4082
            Gets or sets the schema.
4083
            </summary>
4084
            <value>The schema.</value>
4085
        </member>
4086
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
4087
            <summary>
4088
            Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
4089
            </summary>
4090
            <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
4091
        </member>
4092
        <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
4093
            <summary>
4094
            Compares tokens to determine whether they are equal.
4095
            </summary>
4096
        </member>
4097
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
4098
            <summary>
4099
            Determines whether the specified objects are equal.
4100
            </summary>
4101
            <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
4102
            <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
4103
            <returns>
4104
            true if the specified objects are equal; otherwise, false.
4105
            </returns>
4106
        </member>
4107
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
4108
            <summary>
4109
            Returns a hash code for the specified object.
4110
            </summary>
4111
            <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
4112
            <returns>A hash code for the specified object.</returns>
4113
            <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception>
4114
        </member>
4115
        <member name="T:Newtonsoft.Json.MemberSerialization">
4116
            <summary>
4117
            Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4118
            </summary>
4119
        </member>
4120
        <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
4121
            <summary>
4122
            All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
4123
            This is the default member serialization mode.
4124
            </summary>
4125
        </member>
4126
        <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
4127
            <summary>
4128
            Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/> are serialized.
4129
            This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute"/>.
4130
            </summary>
4131
        </member>
4132
        <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
4133
            <summary>
4134
            All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
4135
            This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
4136
            and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to false.
4137
            </summary>
4138
        </member>
4139
        <member name="T:Newtonsoft.Json.ObjectCreationHandling">
4140
            <summary>
4141
            Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4142
            </summary>
4143
        </member>
4144
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
4145
            <summary>
4146
            Reuse existing objects, create new objects when needed.
4147
            </summary>
4148
        </member>
4149
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
4150
            <summary>
4151
            Only reuse existing objects.
4152
            </summary>
4153
        </member>
4154
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
4155
            <summary>
4156
            Always create new objects.
4157
            </summary>
4158
        </member>
4159
        <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
4160
            <summary>
4161
            Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).
4162
            </summary>
4163
        </member>
4164
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
4165
            <summary>
4166
            Writes the JSON representation of the object.
4167
            </summary>
4168
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
4169
            <param name="value">The value.</param>
4170
            <param name="serializer">The calling serializer.</param>
4171
        </member>
4172
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
4173
            <summary>
4174
            Reads the JSON representation of the object.
4175
            </summary>
4176
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
4177
            <param name="objectType">Type of the object.</param>
4178
            <param name="existingValue">The existing value of object being read.</param>
4179
            <param name="serializer">The calling serializer.</param>
4180
            <returns>The object value.</returns>
4181
        </member>
4182
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
4183
            <summary>
4184
            Gets or sets the date time styles used when converting a date to and from JSON.
4185
            </summary>
4186
            <value>The date time styles used when converting a date to and from JSON.</value>
4187
        </member>
4188
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
4189
            <summary>
4190
            Gets or sets the date time format used when converting a date to and from JSON.
4191
            </summary>
4192
            <value>The date time format used when converting a date to and from JSON.</value>
4193
        </member>
4194
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
4195
            <summary>
4196
            Gets or sets the culture used when converting a date to and from JSON.
4197
            </summary>
4198
            <value>The culture used when converting a date to and from JSON.</value>
4199
        </member>
4200
        <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
4201
            <summary>
4202
            Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).
4203
            </summary>
4204
        </member>
4205
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
4206
            <summary>
4207
            Writes the JSON representation of the object.
4208
            </summary>
4209
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
4210
            <param name="value">The value.</param>
4211
            <param name="serializer">The calling serializer.</param>
4212
        </member>
4213
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
4214
            <summary>
4215
            Reads the JSON representation of the object.
4216
            </summary>
4217
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
4218
            <param name="objectType">Type of the object.</param>
4219
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
4220
            <param name="serializer">The calling serializer.</param>
4221
            <returns>The object value.</returns>
4222
        </member>
4223
        <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
4224
            <summary>
4225
            Converts XML to and from JSON.
4226
            </summary>
4227
        </member>
4228
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
4229
            <summary>
4230
            Writes the JSON representation of the object.
4231
            </summary>
4232
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
4233
            <param name="serializer">The calling serializer.</param>
4234
            <param name="value">The value.</param>
4235
        </member>
4236
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
4237
            <summary>
4238
            Reads the JSON representation of the object.
4239
            </summary>
4240
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
4241
            <param name="objectType">Type of the object.</param>
4242
            <param name="existingValue">The existing value of object being read.</param>
4243
            <param name="serializer">The calling serializer.</param>
4244
            <returns>The object value.</returns>
4245
        </member>
4246
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
4247
            <summary>
4248
            Checks if the attributeName is a namespace attribute.
4249
            </summary>
4250
            <param name="attributeName">Attribute name to test.</param>
4251
            <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
4252
            <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>
4253
        </member>
4254
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
4255
            <summary>
4256
            Determines whether this instance can convert the specified value type.
4257
            </summary>
4258
            <param name="valueType">Type of the value.</param>
4259
            <returns>
4260
            	<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
4261
            </returns>
4262
        </member>
4263
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
4264
            <summary>
4265
            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.
4266
            </summary>
4267
            <value>The name of the deserialize root element.</value>
4268
        </member>
4269
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
4270
            <summary>
4271
            Gets or sets a flag to indicate whether to write the Json.NET array attribute.
4272
            This attribute helps preserve arrays when converting the written XML back to JSON.
4273
            </summary>
4274
            <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>
4275
        </member>
4276
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
4277
            <summary>
4278
            Gets or sets a value indicating whether to write the root JSON object.
4279
            </summary>
4280
            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
4281
        </member>
4282
        <member name="T:Newtonsoft.Json.JsonTextReader">
4283
            <summary>
4284
            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
4285
            </summary>
4286
        </member>
4287
        <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
4288
            <summary>
4289
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
4290
            </summary>
4291
            <param name="reader">The <c>TextReader</c> containing the XML data to read.</param>
4292
        </member>
4293
        <member name="M:Newtonsoft.Json.JsonTextReader.Read">
4294
            <summary>
4295
            Reads the next JSON token from the stream.
4296
            </summary>
4297
            <returns>
4298
            true if the next token was read successfully; false if there are no more tokens to read.
4299
            </returns>
4300
        </member>
4301
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
4302
            <summary>
4303
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
4304
            </summary>
4305
            <returns>
4306
            A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
4307
            </returns>
4308
        </member>
4309
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
4310
            <summary>
4311
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4312
            </summary>
4313
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
4314
        </member>
4315
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
4316
            <summary>
4317
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4318
            </summary>
4319
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
4320
        </member>
4321
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
4322
            <summary>
4323
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
4324
            </summary>
4325
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4326
        </member>
4327
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
4328
            <summary>
4329
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4330
            </summary>
4331
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4332
        </member>
4333
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
4334
            <summary>
4335
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4336
            </summary>
4337
            <returns>A <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>
4338
        </member>
4339
        <member name="M:Newtonsoft.Json.JsonTextReader.Close">
4340
            <summary>
4341
            Changes the state to closed. 
4342
            </summary>
4343
        </member>
4344
        <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
4345
            <summary>
4346
            Gets a value indicating whether the class can return line information.
4347
            </summary>
4348
            <returns>
4349
            	<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
4350
            </returns>
4351
        </member>
4352
        <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
4353
            <summary>
4354
            Gets the current line number.
4355
            </summary>
4356
            <value>
4357
            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
4358
            </value>
4359
        </member>
4360
        <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
4361
            <summary>
4362
            Gets the current line position.
4363
            </summary>
4364
            <value>
4365
            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
4366
            </value>
4367
        </member>
4368
        <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
4369
            <summary>
4370
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
4371
            </summary>
4372
        </member>
4373
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
4374
            <summary>
4375
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
4376
            </summary>
4377
        </member>
4378
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
4379
            <summary>
4380
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
4381
            </summary>
4382
            <param name="propertyName">Name of the property.</param>
4383
        </member>
4384
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
4385
            <summary>
4386
            Gets or sets the converter used when serializing the property's collection items.
4387
            </summary>
4388
            <value>The collection's items converter.</value>
4389
        </member>
4390
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterParameters">
4391
            <summary>
4392
            The parameter list to use when constructing the JsonConverter described by ItemConverterType.
4393
            If null, the default constructor is used.
4394
            When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
4395
            order, and type of these parameters.
4396
            </summary>
4397
            <example>
4398
            [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
4399
            </example>
4400
        </member>
4401
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
4402
            <summary>
4403
            Gets or sets the null value handling used when serializing this property.
4404
            </summary>
4405
            <value>The null value handling.</value>
4406
        </member>
4407
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
4408
            <summary>
4409
            Gets or sets the default value handling used when serializing this property.
4410
            </summary>
4411
            <value>The default value handling.</value>
4412
        </member>
4413
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
4414
            <summary>
4415
            Gets or sets the reference loop handling used when serializing this property.
4416
            </summary>
4417
            <value>The reference loop handling.</value>
4418
        </member>
4419
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
4420
            <summary>
4421
            Gets or sets the object creation handling used when deserializing this property.
4422
            </summary>
4423
            <value>The object creation handling.</value>
4424
        </member>
4425
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
4426
            <summary>
4427
            Gets or sets the type name handling used when serializing this property.
4428
            </summary>
4429
            <value>The type name handling.</value>
4430
        </member>
4431
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
4432
            <summary>
4433
            Gets or sets whether this property's value is serialized as a reference.
4434
            </summary>
4435
            <value>Whether this property's value is serialized as a reference.</value>
4436
        </member>
4437
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
4438
            <summary>
4439
            Gets or sets the order of serialization and deserialization of a member.
4440
            </summary>
4441
            <value>The numeric order of serialization or deserialization.</value>
4442
        </member>
4443
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
4444
            <summary>
4445
            Gets or sets a value indicating whether this property is required.
4446
            </summary>
4447
            <value>
4448
            	A value indicating whether this property is required.
4449
            </value>
4450
        </member>
4451
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
4452
            <summary>
4453
            Gets or sets the name of the property.
4454
            </summary>
4455
            <value>The name of the property.</value>
4456
        </member>
4457
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
4458
            <summary>
4459
            Gets or sets the the reference loop handling used when serializing the property's collection items.
4460
            </summary>
4461
            <value>The collection's items reference loop handling.</value>
4462
        </member>
4463
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
4464
            <summary>
4465
            Gets or sets the the type name handling used when serializing the property's collection items.
4466
            </summary>
4467
            <value>The collection's items type name handling.</value>
4468
        </member>
4469
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
4470
            <summary>
4471
            Gets or sets whether this property's collection items are serialized as a reference.
4472
            </summary>
4473
            <value>Whether this property's collection items are serialized as a reference.</value>
4474
        </member>
4475
        <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
4476
            <summary>
4477
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
4478
            </summary>
4479
        </member>
4480
        <member name="T:Newtonsoft.Json.JsonTextWriter">
4481
            <summary>
4482
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
4483
            </summary>
4484
        </member>
4485
        <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
4486
            <summary>
4487
            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>. 
4488
            </summary>
4489
            <param name="textWriter">The <c>TextWriter</c> to write to.</param>
4490
        </member>
4491
        <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
4492
            <summary>
4493
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
4494
            </summary>
4495
        </member>
4496
        <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
4497
            <summary>
4498
            Closes this stream and the underlying stream.
4499
            </summary>
4500
        </member>
4501
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
4502
            <summary>
4503
            Writes the beginning of a Json object.
4504
            </summary>
4505
        </member>
4506
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
4507
            <summary>
4508
            Writes the beginning of a Json array.
4509
            </summary>
4510
        </member>
4511
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
4512
            <summary>
4513
            Writes the start of a constructor with the given name.
4514
            </summary>
4515
            <param name="name">The name of the constructor.</param>
4516
        </member>
4517
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
4518
            <summary>
4519
            Writes the specified end token.
4520
            </summary>
4521
            <param name="token">The end token to write.</param>
4522
        </member>
4523
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
4524
            <summary>
4525
            Writes the property name of a name/value pair on a Json object.
4526
            </summary>
4527
            <param name="name">The name of the property.</param>
4528
        </member>
4529
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">
4530
            <summary>
4531
            Writes the property name of a name/value pair on a JSON object.
4532
            </summary>
4533
            <param name="name">The name of the property.</param>
4534
            <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
4535
        </member>
4536
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
4537
            <summary>
4538
            Writes indent characters.
4539
            </summary>
4540
        </member>
4541
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
4542
            <summary>
4543
            Writes the JSON value delimiter.
4544
            </summary>
4545
        </member>
4546
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
4547
            <summary>
4548
            Writes an indent space.
4549
            </summary>
4550
        </member>
4551
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">
4552
            <summary>
4553
            Writes a <see cref="T:System.Object"/> value.
4554
            An error will raised if the value cannot be written as a single JSON token.
4555
            </summary>
4556
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
4557
        </member>
4558
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
4559
            <summary>
4560
            Writes a null value.
4561
            </summary>
4562
        </member>
4563
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
4564
            <summary>
4565
            Writes an undefined value.
4566
            </summary>
4567
        </member>
4568
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
4569
            <summary>
4570
            Writes raw JSON.
4571
            </summary>
4572
            <param name="json">The raw JSON to write.</param>
4573
        </member>
4574
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
4575
            <summary>
4576
            Writes a <see cref="T:System.String"/> value.
4577
            </summary>
4578
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
4579
        </member>
4580
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
4581
            <summary>
4582
            Writes a <see cref="T:System.Int32"/> value.
4583
            </summary>
4584
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
4585
        </member>
4586
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
4587
            <summary>
4588
            Writes a <see cref="T:System.UInt32"/> value.
4589
            </summary>
4590
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
4591
        </member>
4592
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
4593
            <summary>
4594
            Writes a <see cref="T:System.Int64"/> value.
4595
            </summary>
4596
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
4597
        </member>
4598
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
4599
            <summary>
4600
            Writes a <see cref="T:System.UInt64"/> value.
4601
            </summary>
4602
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
4603
        </member>
4604
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
4605
            <summary>
4606
            Writes a <see cref="T:System.Single"/> value.
4607
            </summary>
4608
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
4609
        </member>
4610
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
4611
            <summary>
4612
            Writes a <see cref="T:System.Nullable`1"/> value.
4613
            </summary>
4614
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
4615
        </member>
4616
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
4617
            <summary>
4618
            Writes a <see cref="T:System.Double"/> value.
4619
            </summary>
4620
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
4621
        </member>
4622
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
4623
            <summary>
4624
            Writes a <see cref="T:System.Nullable`1"/> value.
4625
            </summary>
4626
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
4627
        </member>
4628
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
4629
            <summary>
4630
            Writes a <see cref="T:System.Boolean"/> value.
4631
            </summary>
4632
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
4633
        </member>
4634
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
4635
            <summary>
4636
            Writes a <see cref="T:System.Int16"/> value.
4637
            </summary>
4638
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
4639
        </member>
4640
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
4641
            <summary>
4642
            Writes a <see cref="T:System.UInt16"/> value.
4643
            </summary>
4644
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
4645
        </member>
4646
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
4647
            <summary>
4648
            Writes a <see cref="T:System.Char"/> value.
4649
            </summary>
4650
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
4651
        </member>
4652
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
4653
            <summary>
4654
            Writes a <see cref="T:System.Byte"/> value.
4655
            </summary>
4656
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
4657
        </member>
4658
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
4659
            <summary>
4660
            Writes a <see cref="T:System.SByte"/> value.
4661
            </summary>
4662
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
4663
        </member>
4664
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
4665
            <summary>
4666
            Writes a <see cref="T:System.Decimal"/> value.
4667
            </summary>
4668
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
4669
        </member>
4670
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
4671
            <summary>
4672
            Writes a <see cref="T:System.DateTime"/> value.
4673
            </summary>
4674
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
4675
        </member>
4676
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
4677
            <summary>
4678
            Writes a <see cref="T:System.Byte"/>[] value.
4679
            </summary>
4680
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
4681
        </member>
4682
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
4683
            <summary>
4684
            Writes a <see cref="T:System.DateTimeOffset"/> value.
4685
            </summary>
4686
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
4687
        </member>
4688
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
4689
            <summary>
4690
            Writes a <see cref="T:System.Guid"/> value.
4691
            </summary>
4692
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
4693
        </member>
4694
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
4695
            <summary>
4696
            Writes a <see cref="T:System.TimeSpan"/> value.
4697
            </summary>
4698
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
4699
        </member>
4700
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
4701
            <summary>
4702
            Writes a <see cref="T:System.Uri"/> value.
4703
            </summary>
4704
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
4705
        </member>
4706
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
4707
            <summary>
4708
            Writes out a comment <code>/*...*/</code> containing the specified text. 
4709
            </summary>
4710
            <param name="text">Text to place inside the comment.</param>
4711
        </member>
4712
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
4713
            <summary>
4714
            Writes out the given white space.
4715
            </summary>
4716
            <param name="ws">The string of white space characters.</param>
4717
        </member>
4718
        <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
4719
            <summary>
4720
            Gets or sets how many IndentChars to write for each level in the hierarchy when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
4721
            </summary>
4722
        </member>
4723
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
4724
            <summary>
4725
            Gets or sets which character to use to quote attribute values.
4726
            </summary>
4727
        </member>
4728
        <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
4729
            <summary>
4730
            Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
4731
            </summary>
4732
        </member>
4733
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
4734
            <summary>
4735
            Gets or sets a value indicating whether object names will be surrounded with quotes.
4736
            </summary>
4737
        </member>
4738
        <member name="T:Newtonsoft.Json.JsonWriterException">
4739
            <summary>
4740
            The exception thrown when an error occurs while reading Json text.
4741
            </summary>
4742
        </member>
4743
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
4744
            <summary>
4745
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
4746
            </summary>
4747
        </member>
4748
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
4749
            <summary>
4750
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
4751
            with a specified error message.
4752
            </summary>
4753
            <param name="message">The error message that explains the reason for the exception.</param>
4754
        </member>
4755
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
4756
            <summary>
4757
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
4758
            with a specified error message and a reference to the inner exception that is the cause of this exception.
4759
            </summary>
4760
            <param name="message">The error message that explains the reason for the exception.</param>
4761
            <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
4762
        </member>
4763
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
4764
            <summary>
4765
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
4766
            </summary>
4767
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4768
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4769
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
4770
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
4771
        </member>
4772
        <member name="P:Newtonsoft.Json.JsonWriterException.Path">
4773
            <summary>
4774
            Gets the path to the JSON where the error occurred.
4775
            </summary>
4776
            <value>The path to the JSON where the error occurred.</value>
4777
        </member>
4778
        <member name="T:Newtonsoft.Json.JsonReaderException">
4779
            <summary>
4780
            The exception thrown when an error occurs while reading Json text.
4781
            </summary>
4782
        </member>
4783
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
4784
            <summary>
4785
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
4786
            </summary>
4787
        </member>
4788
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
4789
            <summary>
4790
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
4791
            with a specified error message.
4792
            </summary>
4793
            <param name="message">The error message that explains the reason for the exception.</param>
4794
        </member>
4795
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
4796
            <summary>
4797
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
4798
            with a specified error message and a reference to the inner exception that is the cause of this exception.
4799
            </summary>
4800
            <param name="message">The error message that explains the reason for the exception.</param>
4801
            <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
4802
        </member>
4803
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
4804
            <summary>
4805
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
4806
            </summary>
4807
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4808
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4809
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
4810
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
4811
        </member>
4812
        <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
4813
            <summary>
4814
            Gets the line number indicating where the error occurred.
4815
            </summary>
4816
            <value>The line number indicating where the error occurred.</value>
4817
        </member>
4818
        <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
4819
            <summary>
4820
            Gets the line position indicating where the error occurred.
4821
            </summary>
4822
            <value>The line position indicating where the error occurred.</value>
4823
        </member>
4824
        <member name="P:Newtonsoft.Json.JsonReaderException.Path">
4825
            <summary>
4826
            Gets the path to the JSON where the error occurred.
4827
            </summary>
4828
            <value>The path to the JSON where the error occurred.</value>
4829
        </member>
4830
        <member name="T:Newtonsoft.Json.JsonConverterCollection">
4831
            <summary>
4832
            Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4833
            </summary>
4834
        </member>
4835
        <member name="T:Newtonsoft.Json.JsonConvert">
4836
            <summary>
4837
            Provides methods for converting between common language runtime types and JSON types.
4838
            </summary>
4839
            <example>
4840
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
4841
            </example>
4842
        </member>
4843
        <member name="F:Newtonsoft.Json.JsonConvert.True">
4844
            <summary>
4845
            Represents JavaScript's boolean value true as a string. This field is read-only.
4846
            </summary>
4847
        </member>
4848
        <member name="F:Newtonsoft.Json.JsonConvert.False">
4849
            <summary>
4850
            Represents JavaScript's boolean value false as a string. This field is read-only.
4851
            </summary>
4852
        </member>
4853
        <member name="F:Newtonsoft.Json.JsonConvert.Null">
4854
            <summary>
4855
            Represents JavaScript's null as a string. This field is read-only.
4856
            </summary>
4857
        </member>
4858
        <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
4859
            <summary>
4860
            Represents JavaScript's undefined as a string. This field is read-only.
4861
            </summary>
4862
        </member>
4863
        <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
4864
            <summary>
4865
            Represents JavaScript's positive infinity as a string. This field is read-only.
4866
            </summary>
4867
        </member>
4868
        <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
4869
            <summary>
4870
            Represents JavaScript's negative infinity as a string. This field is read-only.
4871
            </summary>
4872
        </member>
4873
        <member name="F:Newtonsoft.Json.JsonConvert.NaN">
4874
            <summary>
4875
            Represents JavaScript's NaN as a string. This field is read-only.
4876
            </summary>
4877
        </member>
4878
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
4879
            <summary>
4880
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
4881
            </summary>
4882
            <param name="value">The value to convert.</param>
4883
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
4884
        </member>
4885
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
4886
            <summary>
4887
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
4888
            </summary>
4889
            <param name="value">The value to convert.</param>
4890
            <param name="format">The format the date will be converted to.</param>
4891
            <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
4892
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
4893
        </member>
4894
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
4895
            <summary>
4896
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
4897
            </summary>
4898
            <param name="value">The value to convert.</param>
4899
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
4900
        </member>
4901
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
4902
            <summary>
4903
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
4904
            </summary>
4905
            <param name="value">The value to convert.</param>
4906
            <param name="format">The format the date will be converted to.</param>
4907
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
4908
        </member>
4909
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
4910
            <summary>
4911
            Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
4912
            </summary>
4913
            <param name="value">The value to convert.</param>
4914
            <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
4915
        </member>
4916
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
4917
            <summary>
4918
            Converts the <see cref="T:System.Char"/> to its JSON string representation.
4919
            </summary>
4920
            <param name="value">The value to convert.</param>
4921
            <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
4922
        </member>
4923
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
4924
            <summary>
4925
            Converts the <see cref="T:System.Enum"/> to its JSON string representation.
4926
            </summary>
4927
            <param name="value">The value to convert.</param>
4928
            <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
4929
        </member>
4930
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
4931
            <summary>
4932
            Converts the <see cref="T:System.Int32"/> to its JSON string representation.
4933
            </summary>
4934
            <param name="value">The value to convert.</param>
4935
            <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
4936
        </member>
4937
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
4938
            <summary>
4939
            Converts the <see cref="T:System.Int16"/> to its JSON string representation.
4940
            </summary>
4941
            <param name="value">The value to convert.</param>
4942
            <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
4943
        </member>
4944
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
4945
            <summary>
4946
            Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
4947
            </summary>
4948
            <param name="value">The value to convert.</param>
4949
            <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
4950
        </member>
4951
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
4952
            <summary>
4953
            Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
4954
            </summary>
4955
            <param name="value">The value to convert.</param>
4956
            <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
4957
        </member>
4958
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
4959
            <summary>
4960
            Converts the <see cref="T:System.Int64"/>  to its JSON string representation.
4961
            </summary>
4962
            <param name="value">The value to convert.</param>
4963
            <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
4964
        </member>
4965
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
4966
            <summary>
4967
            Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
4968
            </summary>
4969
            <param name="value">The value to convert.</param>
4970
            <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
4971
        </member>
4972
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
4973
            <summary>
4974
            Converts the <see cref="T:System.Single"/> to its JSON string representation.
4975
            </summary>
4976
            <param name="value">The value to convert.</param>
4977
            <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
4978
        </member>
4979
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
4980
            <summary>
4981
            Converts the <see cref="T:System.Double"/> to its JSON string representation.
4982
            </summary>
4983
            <param name="value">The value to convert.</param>
4984
            <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
4985
        </member>
4986
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
4987
            <summary>
4988
            Converts the <see cref="T:System.Byte"/> to its JSON string representation.
4989
            </summary>
4990
            <param name="value">The value to convert.</param>
4991
            <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
4992
        </member>
4993
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
4994
            <summary>
4995
            Converts the <see cref="T:System.SByte"/> to its JSON string representation.
4996
            </summary>
4997
            <param name="value">The value to convert.</param>
4998
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
4999
        </member>
5000
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
5001
            <summary>
5002
            Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
5003
            </summary>
5004
            <param name="value">The value to convert.</param>
5005
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
5006
        </member>
5007
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
5008
            <summary>
5009
            Converts the <see cref="T:System.Guid"/> to its JSON string representation.
5010
            </summary>
5011
            <param name="value">The value to convert.</param>
5012
            <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
5013
        </member>
5014
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
5015
            <summary>
5016
            Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
5017
            </summary>
5018
            <param name="value">The value to convert.</param>
5019
            <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
5020
        </member>
5021
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
5022
            <summary>
5023
            Converts the <see cref="T:System.Uri"/> to its JSON string representation.
5024
            </summary>
5025
            <param name="value">The value to convert.</param>
5026
            <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
5027
        </member>
5028
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
5029
            <summary>
5030
            Converts the <see cref="T:System.String"/> to its JSON string representation.
5031
            </summary>
5032
            <param name="value">The value to convert.</param>
5033
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
5034
        </member>
5035
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
5036
            <summary>
5037
            Converts the <see cref="T:System.String"/> to its JSON string representation.
5038
            </summary>
5039
            <param name="value">The value to convert.</param>
5040
            <param name="delimiter">The string delimiter character.</param>
5041
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
5042
        </member>
5043
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)">
5044
            <summary>
5045
            Converts the <see cref="T:System.String"/> to its JSON string representation.
5046
            </summary>
5047
            <param name="value">The value to convert.</param>
5048
            <param name="delimiter">The string delimiter character.</param>
5049
            <param name="stringEscapeHandling">The string escape handling.</param>
5050
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
5051
        </member>
5052
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
5053
            <summary>
5054
            Converts the <see cref="T:System.Object"/> to its JSON string representation.
5055
            </summary>
5056
            <param name="value">The value to convert.</param>
5057
            <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
5058
        </member>
5059
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
5060
            <summary>
5061
            Serializes the specified object to a JSON string.
5062
            </summary>
5063
            <param name="value">The object to serialize.</param>
5064
            <returns>A JSON string representation of the object.</returns>
5065
        </member>
5066
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
5067
            <summary>
5068
            Serializes the specified object to a JSON string using formatting.
5069
            </summary>
5070
            <param name="value">The object to serialize.</param>
5071
            <param name="formatting">Indicates how the output is formatted.</param>
5072
            <returns>
5073
            A JSON string representation of the object.
5074
            </returns>
5075
        </member>
5076
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
5077
            <summary>
5078
            Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5079
            </summary>
5080
            <param name="value">The object to serialize.</param>
5081
            <param name="converters">A collection converters used while serializing.</param>
5082
            <returns>A JSON string representation of the object.</returns>
5083
        </member>
5084
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
5085
            <summary>
5086
            Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5087
            </summary>
5088
            <param name="value">The object to serialize.</param>
5089
            <param name="formatting">Indicates how the output is formatted.</param>
5090
            <param name="converters">A collection converters used while serializing.</param>
5091
            <returns>A JSON string representation of the object.</returns>
5092
        </member>
5093
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
5094
            <summary>
5095
            Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5096
            </summary>
5097
            <param name="value">The object to serialize.</param>
5098
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
5099
            If this is null, default serialization settings will be used.</param>
5100
            <returns>
5101
            A JSON string representation of the object.
5102
            </returns>
5103
        </member>
5104
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
5105
            <summary>
5106
            Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5107
            </summary>
5108
            <param name="value">The object to serialize.</param>
5109
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
5110
            If this is null, default serialization settings will be used.</param>
5111
            <param name="type">
5112
            The type of the value being serialized.
5113
            This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
5114
            Specifing the type is optional.
5115
            </param>
5116
            <returns>
5117
            A JSON string representation of the object.
5118
            </returns>
5119
        </member>
5120
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
5121
            <summary>
5122
            Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5123
            </summary>
5124
            <param name="value">The object to serialize.</param>
5125
            <param name="formatting">Indicates how the output is formatted.</param>
5126
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
5127
            If this is null, default serialization settings will be used.</param>
5128
            <returns>
5129
            A JSON string representation of the object.
5130
            </returns>
5131
        </member>
5132
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
5133
            <summary>
5134
            Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5135
            </summary>
5136
            <param name="value">The object to serialize.</param>
5137
            <param name="formatting">Indicates how the output is formatted.</param>
5138
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
5139
            If this is null, default serialization settings will be used.</param>
5140
            <param name="type">
5141
            The type of the value being serialized.
5142
            This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
5143
            Specifing the type is optional.
5144
            </param>
5145
            <returns>
5146
            A JSON string representation of the object.
5147
            </returns>
5148
        </member>
5149
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object)">
5150
            <summary>
5151
            Asynchronously serializes the specified object to a JSON string.
5152
            Serialization will happen on a new thread.
5153
            </summary>
5154
            <param name="value">The object to serialize.</param>
5155
            <returns>
5156
            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
5157
            </returns>
5158
        </member>
5159
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting)">
5160
            <summary>
5161
            Asynchronously serializes the specified object to a JSON string using formatting.
5162
            Serialization will happen on a new thread.
5163
            </summary>
5164
            <param name="value">The object to serialize.</param>
5165
            <param name="formatting">Indicates how the output is formatted.</param>
5166
            <returns>
5167
            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
5168
            </returns>
5169
        </member>
5170
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
5171
            <summary>
5172
            Asynchronously serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5173
            Serialization will happen on a new thread.
5174
            </summary>
5175
            <param name="value">The object to serialize.</param>
5176
            <param name="formatting">Indicates how the output is formatted.</param>
5177
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
5178
            If this is null, default serialization settings will be used.</param>
5179
            <returns>
5180
            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
5181
            </returns>
5182
        </member>
5183
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
5184
            <summary>
5185
            Deserializes the JSON to a .NET object.
5186
            </summary>
5187
            <param name="value">The JSON to deserialize.</param>
5188
            <returns>The deserialized object from the JSON string.</returns>
5189
        </member>
5190
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
5191
            <summary>
5192
            Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5193
            </summary>
5194
            <param name="value">The JSON to deserialize.</param>
5195
            <param name="settings">
5196
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5197
            If this is null, default serialization settings will be used.
5198
            </param>
5199
            <returns>The deserialized object from the JSON string.</returns>
5200
        </member>
5201
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
5202
            <summary>
5203
            Deserializes the JSON to the specified .NET type.
5204
            </summary>
5205
            <param name="value">The JSON to deserialize.</param>
5206
            <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
5207
            <returns>The deserialized object from the JSON string.</returns>
5208
        </member>
5209
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
5210
            <summary>
5211
            Deserializes the JSON to the specified .NET type.
5212
            </summary>
5213
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5214
            <param name="value">The JSON to deserialize.</param>
5215
            <returns>The deserialized object from the JSON string.</returns>
5216
        </member>
5217
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
5218
            <summary>
5219
            Deserializes the JSON to the given anonymous type.
5220
            </summary>
5221
            <typeparam name="T">
5222
            The anonymous type to deserialize to. This can't be specified
5223
            traditionally and must be infered from the anonymous type passed
5224
            as a parameter.
5225
            </typeparam>
5226
            <param name="value">The JSON to deserialize.</param>
5227
            <param name="anonymousTypeObject">The anonymous type object.</param>
5228
            <returns>The deserialized anonymous type from the JSON string.</returns>
5229
        </member>
5230
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
5231
            <summary>
5232
            Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5233
            </summary>
5234
            <typeparam name="T">
5235
            The anonymous type to deserialize to. This can't be specified
5236
            traditionally and must be infered from the anonymous type passed
5237
            as a parameter.
5238
            </typeparam>
5239
            <param name="value">The JSON to deserialize.</param>
5240
            <param name="anonymousTypeObject">The anonymous type object.</param>
5241
            <param name="settings">
5242
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5243
            If this is null, default serialization settings will be used.
5244
            </param>
5245
            <returns>The deserialized anonymous type from the JSON string.</returns>
5246
        </member>
5247
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
5248
            <summary>
5249
            Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5250
            </summary>
5251
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5252
            <param name="value">The JSON to deserialize.</param>
5253
            <param name="converters">Converters to use while deserializing.</param>
5254
            <returns>The deserialized object from the JSON string.</returns>
5255
        </member>
5256
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
5257
            <summary>
5258
            Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5259
            </summary>
5260
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5261
            <param name="value">The object to deserialize.</param>
5262
            <param name="settings">
5263
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5264
            If this is null, default serialization settings will be used.
5265
            </param>
5266
            <returns>The deserialized object from the JSON string.</returns>
5267
        </member>
5268
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
5269
            <summary>
5270
            Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5271
            </summary>
5272
            <param name="value">The JSON to deserialize.</param>
5273
            <param name="type">The type of the object to deserialize.</param>
5274
            <param name="converters">Converters to use while deserializing.</param>
5275
            <returns>The deserialized object from the JSON string.</returns>
5276
        </member>
5277
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
5278
            <summary>
5279
            Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5280
            </summary>
5281
            <param name="value">The JSON to deserialize.</param>
5282
            <param name="type">The type of the object to deserialize to.</param>
5283
            <param name="settings">
5284
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5285
            If this is null, default serialization settings will be used.
5286
            </param>
5287
            <returns>The deserialized object from the JSON string.</returns>
5288
        </member>
5289
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String)">
5290
            <summary>
5291
            Asynchronously deserializes the JSON to the specified .NET type.
5292
            Deserialization will happen on a new thread.
5293
            </summary>
5294
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5295
            <param name="value">The JSON to deserialize.</param>
5296
            <returns>
5297
            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
5298
            </returns>
5299
        </member>
5300
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
5301
            <summary>
5302
            Asynchronously deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5303
            Deserialization will happen on a new thread.
5304
            </summary>
5305
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5306
            <param name="value">The JSON to deserialize.</param>
5307
            <param name="settings">
5308
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5309
            If this is null, default serialization settings will be used.
5310
            </param>
5311
            <returns>
5312
            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
5313
            </returns>
5314
        </member>
5315
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String)">
5316
            <summary>
5317
            Asynchronously deserializes the JSON to the specified .NET type.
5318
            Deserialization will happen on a new thread.
5319
            </summary>
5320
            <param name="value">The JSON to deserialize.</param>
5321
            <returns>
5322
            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
5323
            </returns>
5324
        </member>
5325
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
5326
            <summary>
5327
            Asynchronously deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5328
            Deserialization will happen on a new thread.
5329
            </summary>
5330
            <param name="value">The JSON to deserialize.</param>
5331
            <param name="type">The type of the object to deserialize to.</param>
5332
            <param name="settings">
5333
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5334
            If this is null, default serialization settings will be used.
5335
            </param>
5336
            <returns>
5337
            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
5338
            </returns>
5339
        </member>
5340
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
5341
            <summary>
5342
            Populates the object with values from the JSON string.
5343
            </summary>
5344
            <param name="value">The JSON to populate values from.</param>
5345
            <param name="target">The target object to populate values onto.</param>
5346
        </member>
5347
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
5348
            <summary>
5349
            Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5350
            </summary>
5351
            <param name="value">The JSON to populate values from.</param>
5352
            <param name="target">The target object to populate values onto.</param>
5353
            <param name="settings">
5354
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5355
            If this is null, default serialization settings will be used.
5356
            </param>
5357
        </member>
5358
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObjectAsync(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
5359
            <summary>
5360
            Asynchronously populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5361
            </summary>
5362
            <param name="value">The JSON to populate values from.</param>
5363
            <param name="target">The target object to populate values onto.</param>
5364
            <param name="settings">
5365
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5366
            If this is null, default serialization settings will be used.
5367
            </param>
5368
            <returns>
5369
            A task that represents the asynchronous populate operation.
5370
            </returns>
5371
        </member>
5372
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
5373
            <summary>
5374
            Serializes the XML node to a JSON string.
5375
            </summary>
5376
            <param name="node">The node to serialize.</param>
5377
            <returns>A JSON string of the XmlNode.</returns>
5378
        </member>
5379
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
5380
            <summary>
5381
            Serializes the XML node to a JSON string using formatting.
5382
            </summary>
5383
            <param name="node">The node to serialize.</param>
5384
            <param name="formatting">Indicates how the output is formatted.</param>
5385
            <returns>A JSON string of the XmlNode.</returns>
5386
        </member>
5387
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
5388
            <summary>
5389
            Serializes the XML node to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
5390
            </summary>
5391
            <param name="node">The node to serialize.</param>
5392
            <param name="formatting">Indicates how the output is formatted.</param>
5393
            <param name="omitRootObject">Omits writing the root object.</param>
5394
            <returns>A JSON string of the XmlNode.</returns>
5395
        </member>
5396
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
5397
            <summary>
5398
            Deserializes the XmlNode from a JSON string.
5399
            </summary>
5400
            <param name="value">The JSON string.</param>
5401
            <returns>The deserialized XmlNode</returns>
5402
        </member>
5403
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
5404
            <summary>
5405
            Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
5406
            </summary>
5407
            <param name="value">The JSON string.</param>
5408
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5409
            <returns>The deserialized XmlNode</returns>
5410
        </member>
5411
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
5412
            <summary>
5413
            Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
5414
            and writes a .NET array attribute for collections.
5415
            </summary>
5416
            <param name="value">The JSON string.</param>
5417
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5418
            <param name="writeArrayAttribute">
5419
            A flag to indicate whether to write the Json.NET array attribute.
5420
            This attribute helps preserve arrays when converting the written XML back to JSON.
5421
            </param>
5422
            <returns>The deserialized XmlNode</returns>
5423
        </member>
5424
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
5425
            <summary>
5426
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
5427
            </summary>
5428
            <param name="node">The node to convert to JSON.</param>
5429
            <returns>A JSON string of the XNode.</returns>
5430
        </member>
5431
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
5432
            <summary>
5433
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting.
5434
            </summary>
5435
            <param name="node">The node to convert to JSON.</param>
5436
            <param name="formatting">Indicates how the output is formatted.</param>
5437
            <returns>A JSON string of the XNode.</returns>
5438
        </member>
5439
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
5440
            <summary>
5441
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
5442
            </summary>
5443
            <param name="node">The node to serialize.</param>
5444
            <param name="formatting">Indicates how the output is formatted.</param>
5445
            <param name="omitRootObject">Omits writing the root object.</param>
5446
            <returns>A JSON string of the XNode.</returns>
5447
        </member>
5448
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
5449
            <summary>
5450
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.
5451
            </summary>
5452
            <param name="value">The JSON string.</param>
5453
            <returns>The deserialized XNode</returns>
5454
        </member>
5455
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
5456
            <summary>
5457
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
5458
            </summary>
5459
            <param name="value">The JSON string.</param>
5460
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5461
            <returns>The deserialized XNode</returns>
5462
        </member>
5463
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
5464
            <summary>
5465
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
5466
            and writes a .NET array attribute for collections.
5467
            </summary>
5468
            <param name="value">The JSON string.</param>
5469
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5470
            <param name="writeArrayAttribute">
5471
            A flag to indicate whether to write the Json.NET array attribute.
5472
            This attribute helps preserve arrays when converting the written XML back to JSON.
5473
            </param>
5474
            <returns>The deserialized XNode</returns>
5475
        </member>
5476
        <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
5477
            <summary>
5478
            Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5479
            Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
5480
            and <see cref="M:Newtonsoft.Json.Linq.JToken.ToObject``1"/> and <see cref="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)"/> on <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5481
            To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
5482
            <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
5483
            </summary>
5484
        </member>
5485
        <member name="T:Newtonsoft.Json.JsonSerializationException">
5486
            <summary>
5487
            The exception thrown when an error occurs during Json serialization or deserialization.
5488
            </summary>
5489
        </member>
5490
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
5491
            <summary>
5492
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
5493
            </summary>
5494
        </member>
5495
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
5496
            <summary>
5497
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
5498
            with a specified error message.
5499
            </summary>
5500
            <param name="message">The error message that explains the reason for the exception.</param>
5501
        </member>
5502
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
5503
            <summary>
5504
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
5505
            with a specified error message and a reference to the inner exception that is the cause of this exception.
5506
            </summary>
5507
            <param name="message">The error message that explains the reason for the exception.</param>
5508
            <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
5509
        </member>
5510
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5511
            <summary>
5512
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
5513
            </summary>
5514
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
5515
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
5516
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
5517
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
5518
        </member>
5519
        <member name="T:Newtonsoft.Json.JsonSerializer">
5520
            <summary>
5521
            Serializes and deserializes objects into and from the JSON format.
5522
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
5523
            </summary>
5524
        </member>
5525
        <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
5526
            <summary>
5527
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
5528
            </summary>
5529
        </member>
5530
        <member name="M:Newtonsoft.Json.JsonSerializer.Create">
5531
            <summary>
5532
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5533
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5534
            </summary>
5535
            <returns>
5536
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5537
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5538
            </returns>
5539
        </member>
5540
        <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
5541
            <summary>
5542
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5543
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5544
            </summary>
5545
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
5546
            <returns>
5547
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5548
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5549
            </returns>
5550
        </member>
5551
        <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
5552
            <summary>
5553
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5554
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5555
            </summary>
5556
            <returns>
5557
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5558
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5559
            </returns>
5560
        </member>
5561
        <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
5562
            <summary>
5563
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5564
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5565
            </summary>
5566
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
5567
            <returns>
5568
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5569
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5570
            </returns>
5571
        </member>
5572
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
5573
            <summary>
5574
            Populates the JSON values onto the target object.
5575
            </summary>
5576
            <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
5577
            <param name="target">The target object to populate values onto.</param>
5578
        </member>
5579
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
5580
            <summary>
5581
            Populates the JSON values onto the target object.
5582
            </summary>
5583
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
5584
            <param name="target">The target object to populate values onto.</param>
5585
        </member>
5586
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
5587
            <summary>
5588
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
5589
            </summary>
5590
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
5591
            <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
5592
        </member>
5593
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
5594
            <summary>
5595
            Deserializes the Json structure contained by the specified <see cref="T:System.IO.StringReader"/>
5596
            into an instance of the specified type.
5597
            </summary>
5598
            <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
5599
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
5600
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
5601
        </member>
5602
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
5603
            <summary>
5604
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
5605
            into an instance of the specified type.
5606
            </summary>
5607
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
5608
            <typeparam name="T">The type of the object to deserialize.</typeparam>
5609
            <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
5610
        </member>
5611
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
5612
            <summary>
5613
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
5614
            into an instance of the specified type.
5615
            </summary>
5616
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
5617
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
5618
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
5619
        </member>
5620
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
5621
            <summary>
5622
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5623
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
5624
            </summary>
5625
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
5626
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5627
        </member>
5628
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
5629
            <summary>
5630
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5631
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
5632
            </summary>
5633
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
5634
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5635
            <param name="objectType">
5636
            The type of the value being serialized.
5637
            This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
5638
            Specifing the type is optional.
5639
            </param>
5640
        </member>
5641
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
5642
            <summary>
5643
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5644
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
5645
            </summary>
5646
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
5647
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5648
            <param name="objectType">
5649
            The type of the value being serialized.
5650
            This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
5651
            Specifing the type is optional.
5652
            </param>
5653
        </member>
5654
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
5655
            <summary>
5656
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5657
            to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>. 
5658
            </summary>
5659
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
5660
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5661
        </member>
5662
        <member name="E:Newtonsoft.Json.JsonSerializer.Error">
5663
            <summary>
5664
            Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
5665
            </summary>
5666
        </member>
5667
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
5668
            <summary>
5669
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
5670
            </summary>
5671
        </member>
5672
        <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
5673
            <summary>
5674
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
5675
            </summary>
5676
        </member>
5677
        <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
5678
            <summary>
5679
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
5680
            </summary>
5681
            <value>The trace writer.</value>
5682
        </member>
5683
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
5684
            <summary>
5685
            Gets or sets how type name writing and reading is handled by the serializer.
5686
            </summary>
5687
        </member>
5688
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
5689
            <summary>
5690
            Gets or sets how a type name assembly is written and resolved by the serializer.
5691
            </summary>
5692
            <value>The type name assembly format.</value>
5693
        </member>
5694
        <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
5695
            <summary>
5696
            Gets or sets how object references are preserved by the serializer.
5697
            </summary>
5698
        </member>
5699
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
5700
            <summary>
5701
            Get or set how reference loops (e.g. a class referencing itself) is handled.
5702
            </summary>
5703
        </member>
5704
        <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
5705
            <summary>
5706
            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
5707
            </summary>
5708
        </member>
5709
        <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
5710
            <summary>
5711
            Get or set how null values are handled during serialization and deserialization.
5712
            </summary>
5713
        </member>
5714
        <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
5715
            <summary>
5716
            Get or set how null default are handled during serialization and deserialization.
5717
            </summary>
5718
        </member>
5719
        <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
5720
            <summary>
5721
            Gets or sets how objects are created during deserialization.
5722
            </summary>
5723
            <value>The object creation handling.</value>
5724
        </member>
5725
        <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
5726
            <summary>
5727
            Gets or sets how constructors are used during deserialization.
5728
            </summary>
5729
            <value>The constructor handling.</value>
5730
        </member>
5731
        <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">
5732
            <summary>
5733
            Gets or sets how metadata properties are used during deserialization.
5734
            </summary>
5735
            <value>The metadata properties handling.</value>
5736
        </member>
5737
        <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
5738
            <summary>
5739
            Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
5740
            </summary>
5741
            <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
5742
        </member>
5743
        <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
5744
            <summary>
5745
            Gets or sets the contract resolver used by the serializer when
5746
            serializing .NET objects to JSON and vice versa.
5747
            </summary>
5748
        </member>
5749
        <member name="P:Newtonsoft.Json.JsonSerializer.Context">
5750
            <summary>
5751
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
5752
            </summary>
5753
            <value>The context.</value>
5754
        </member>
5755
        <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
5756
            <summary>
5757
            Indicates how JSON text output is formatted.
5758
            </summary>
5759
        </member>
5760
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
5761
            <summary>
5762
            Get or set how dates are written to JSON text.
5763
            </summary>
5764
        </member>
5765
        <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
5766
            <summary>
5767
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
5768
            </summary>
5769
        </member>
5770
        <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
5771
            <summary>
5772
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
5773
            </summary>
5774
        </member>
5775
        <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
5776
            <summary>
5777
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
5778
            </summary>
5779
        </member>
5780
        <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
5781
            <summary>
5782
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
5783
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
5784
            are written as JSON text.
5785
            </summary>
5786
        </member>
5787
        <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
5788
            <summary>
5789
            Get or set how strings are escaped when writing JSON text.
5790
            </summary>
5791
        </member>
5792
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
5793
            <summary>
5794
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
5795
            </summary>
5796
        </member>
5797
        <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
5798
            <summary>
5799
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
5800
            </summary>
5801
        </member>
5802
        <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
5803
            <summary>
5804
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
5805
            </summary>
5806
        </member>
5807
        <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
5808
            <summary>
5809
            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
5810
            </summary>
5811
            <value>
5812
            	<c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
5813
            </value>
5814
        </member>
5815
        <member name="T:Newtonsoft.Json.Linq.Extensions">
5816
            <summary>
5817
            Contains the LINQ to JSON extension methods.
5818
            </summary>
5819
        </member>
5820
        <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
5821
            <summary>
5822
            Returns a collection of tokens that contains the ancestors of every token in the source collection.
5823
            </summary>
5824
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
5825
            <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
5826
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the ancestors of every token in the source collection.</returns>
5827
        </member>
5828
        <member name="M:Newtonsoft.Json.Linq.Extensions.AncestorsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
5829
            <summary>
5830
            Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection.
5831
            </summary>
5832
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
5833
            <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
5834
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains every token in the source collection, the ancestors of every token in the source collection.</returns>
5835
        </member>
5836
        <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
5837
            <summary>
5838
            Returns a collection of tokens that contains the descendants of every token in the source collection.
5839
            </summary>
5840
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
5841
            <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
5842
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the descendants of every token in the source collection.</returns>
5843
        </member>
5844
        <member name="M:Newtonsoft.Json.Linq.Extensions.DescendantsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
5845
            <summary>
5846
            Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection.
5847
            </summary>
5848
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
5849
            <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
5850
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains every token in the source collection, and the descendants of every token in the source collection.</returns>
5851
        </member>
5852
        <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
5853
            <summary>
5854
            Returns a collection of child properties of every object in the source collection.
5855
            </summary>
5856
            <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JObject"/> that contains the source collection.</param>
5857
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JProperty"/> that contains the properties of every object in the source collection.</returns>
5858
        </member>
5859
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
5860
            <summary>
5861
            Returns a collection of child values of every object in the source collection with the given key.
5862
            </summary>
5863
            <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
5864
            <param name="key">The token key.</param>
5865
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every token in the source collection with the given key.</returns>
5866
        </member>
5867
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5868
            <summary>
5869
            Returns a collection of child values of every object in the source collection.
5870
            </summary>
5871
            <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
5872
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every token in the source collection.</returns>
5873
        </member>
5874
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
5875
            <summary>
5876
            Returns a collection of converted child values of every object in the source collection with the given key.
5877
            </summary>
5878
            <typeparam name="U">The type to convert the values to.</typeparam>
5879
            <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
5880
            <param name="key">The token key.</param>
5881
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection with the given key.</returns>
5882
        </member>
5883
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5884
            <summary>
5885
            Returns a collection of converted child values of every object in the source collection.
5886
            </summary>
5887
            <typeparam name="U">The type to convert the values to.</typeparam>
5888
            <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
5889
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
5890
        </member>
5891
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5892
            <summary>
5893
            Converts the value.
5894
            </summary>
5895
            <typeparam name="U">The type to convert the value to.</typeparam>
5896
            <param name="value">A <see cref="T:Newtonsoft.Json.Linq.JToken"/> cast as a <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
5897
            <returns>A converted value.</returns>
5898
        </member>
5899
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
5900
            <summary>
5901
            Converts the value.
5902
            </summary>
5903
            <typeparam name="T">The source collection type.</typeparam>
5904
            <typeparam name="U">The type to convert the value to.</typeparam>
5905
            <param name="value">A <see cref="T:Newtonsoft.Json.Linq.JToken"/> cast as a <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
5906
            <returns>A converted value.</returns>
5907
        </member>
5908
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
5909
            <summary>
5910
            Returns a collection of child tokens of every array in the source collection.
5911
            </summary>
5912
            <typeparam name="T">The source collection type.</typeparam>
5913
            <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
5914
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every token in the source collection.</returns>
5915
        </member>
5916
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
5917
            <summary>
5918
            Returns a collection of converted child tokens of every array in the source collection.
5919
            </summary>
5920
            <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
5921
            <typeparam name="U">The type to convert the values to.</typeparam>
5922
            <typeparam name="T">The source collection type.</typeparam>
5923
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
5924
        </member>
5925
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5926
            <summary>
5927
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
5928
            </summary>
5929
            <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
5930
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
5931
        </member>
5932
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
5933
            <summary>
5934
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
5935
            </summary>
5936
            <typeparam name="T">The source collection type.</typeparam>
5937
            <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
5938
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
5939
        </member>
5940
        <member name="T:Newtonsoft.Json.Linq.JConstructor">
5941
            <summary>
5942
            Represents a JSON constructor.
5943
            </summary>
5944
        </member>
5945
        <member name="T:Newtonsoft.Json.Linq.JContainer">
5946
            <summary>
5947
            Represents a token that can contain other tokens.
5948
            </summary>
5949
        </member>
5950
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
5951
            <summary>
5952
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
5953
            </summary>
5954
            <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
5955
        </member>
5956
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
5957
            <summary>
5958
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
5959
            </summary>
5960
            <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
5961
        </member>
5962
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
5963
            <summary>
5964
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged"/> event.
5965
            </summary>
5966
            <param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> instance containing the event data.</param>
5967
        </member>
5968
        <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
5969
            <summary>
5970
            Returns a collection of the child tokens of this token, in document order.
5971
            </summary>
5972
            <returns>
5973
            An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the child tokens of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>, in document order.
5974
            </returns>
5975
        </member>
5976
        <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
5977
            <summary>
5978
            Returns a collection of the child values of this token, in document order.
5979
            </summary>
5980
            <typeparam name="T">The type to convert the values to.</typeparam>
5981
            <returns>
5982
            A <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the child values of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>, in document order.
5983
            </returns>
5984
        </member>
5985
        <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
5986
            <summary>
5987
            Returns a collection of the descendant tokens for this token in document order.
5988
            </summary>
5989
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
5990
        </member>
5991
        <member name="M:Newtonsoft.Json.Linq.JContainer.DescendantsAndSelf">
5992
            <summary>
5993
            Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
5994
            </summary>
5995
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing this token, and all the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
5996
        </member>
5997
        <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
5998
            <summary>
5999
            Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6000
            </summary>
6001
            <param name="content">The content to be added.</param>
6002
        </member>
6003
        <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
6004
            <summary>
6005
            Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6006
            </summary>
6007
            <param name="content">The content to be added.</param>
6008
        </member>
6009
        <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
6010
            <summary>
6011
            Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6012
            </summary>
6013
            <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
6014
        </member>
6015
        <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
6016
            <summary>
6017
            Replaces the children nodes of this token with the specified content.
6018
            </summary>
6019
            <param name="content">The content.</param>
6020
        </member>
6021
        <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
6022
            <summary>
6023
            Removes the child nodes from this token.
6024
            </summary>
6025
        </member>
6026
        <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">
6027
            <summary>
6028
            Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6029
            </summary>
6030
            <param name="content">The content to be merged.</param>
6031
        </member>
6032
        <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">
6033
            <summary>
6034
            Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.
6035
            </summary>
6036
            <param name="content">The content to be merged.</param>
6037
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>
6038
        </member>
6039
        <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
6040
            <summary>
6041
            Occurs when the list changes or an item in the list changes.
6042
            </summary>
6043
        </member>
6044
        <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
6045
            <summary>
6046
            Occurs before an item is added to the collection.
6047
            </summary>
6048
        </member>
6049
        <member name="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged">
6050
            <summary>
6051
            Occurs when the items list of the collection has changed, or the collection is reset.
6052
            </summary>
6053
        </member>
6054
        <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
6055
            <summary>
6056
            Gets the container's children tokens.
6057
            </summary>
6058
            <value>The container's children tokens.</value>
6059
        </member>
6060
        <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
6061
            <summary>
6062
            Gets a value indicating whether this token has child tokens.
6063
            </summary>
6064
            <value>
6065
            	<c>true</c> if this token has child values; otherwise, <c>false</c>.
6066
            </value>
6067
        </member>
6068
        <member name="P:Newtonsoft.Json.Linq.JContainer.First">
6069
            <summary>
6070
            Get the first child token of this token.
6071
            </summary>
6072
            <value>
6073
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6074
            </value>
6075
        </member>
6076
        <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
6077
            <summary>
6078
            Get the last child token of this token.
6079
            </summary>
6080
            <value>
6081
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6082
            </value>
6083
        </member>
6084
        <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
6085
            <summary>
6086
            Gets the count of child JSON tokens.
6087
            </summary>
6088
            <value>The count of child JSON tokens</value>
6089
        </member>
6090
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
6091
            <summary>
6092
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
6093
            </summary>
6094
        </member>
6095
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
6096
            <summary>
6097
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
6098
            </summary>
6099
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
6100
        </member>
6101
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
6102
            <summary>
6103
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
6104
            </summary>
6105
            <param name="name">The constructor name.</param>
6106
            <param name="content">The contents of the constructor.</param>
6107
        </member>
6108
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
6109
            <summary>
6110
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
6111
            </summary>
6112
            <param name="name">The constructor name.</param>
6113
            <param name="content">The contents of the constructor.</param>
6114
        </member>
6115
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
6116
            <summary>
6117
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
6118
            </summary>
6119
            <param name="name">The constructor name.</param>
6120
        </member>
6121
        <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6122
            <summary>
6123
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6124
            </summary>
6125
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6126
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6127
        </member>
6128
        <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
6129
            <summary>
6130
            Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6131
            </summary>
6132
            <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> that will be read for the content of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/>.</param>
6133
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> that contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.</returns>
6134
        </member>
6135
        <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
6136
            <summary>
6137
            Gets the container's children tokens.
6138
            </summary>
6139
            <value>The container's children tokens.</value>
6140
        </member>
6141
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
6142
            <summary>
6143
            Gets or sets the name of this constructor.
6144
            </summary>
6145
            <value>The constructor name.</value>
6146
        </member>
6147
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
6148
            <summary>
6149
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6150
            </summary>
6151
            <value>The type.</value>
6152
        </member>
6153
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
6154
            <summary>
6155
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6156
            </summary>
6157
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6158
        </member>
6159
        <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
6160
            <summary>
6161
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
6162
            </summary>
6163
            <typeparam name="T">The type of token</typeparam>
6164
        </member>
6165
        <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
6166
            <summary>
6167
            An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
6168
            </summary>
6169
        </member>
6170
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
6171
            <summary>
6172
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
6173
            </summary>
6174
            <param name="enumerable">The enumerable.</param>
6175
        </member>
6176
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
6177
            <summary>
6178
            Returns an enumerator that iterates through the collection.
6179
            </summary>
6180
            <returns>
6181
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
6182
            </returns>
6183
        </member>
6184
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator">
6185
            <summary>
6186
            Returns an enumerator that iterates through a collection.
6187
            </summary>
6188
            <returns>
6189
            An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
6190
            </returns>
6191
        </member>
6192
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(Newtonsoft.Json.Linq.JEnumerable{`0})">
6193
            <summary>
6194
            Determines whether the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance.
6195
            </summary>
6196
            <param name="other">The <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> to compare with this instance.</param>
6197
            <returns>
6198
            	<c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance; otherwise, <c>false</c>.
6199
            </returns>
6200
        </member>
6201
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
6202
            <summary>
6203
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
6204
            </summary>
6205
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
6206
            <returns>
6207
            	<c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
6208
            </returns>
6209
        </member>
6210
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
6211
            <summary>
6212
            Returns a hash code for this instance.
6213
            </summary>
6214
            <returns>
6215
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
6216
            </returns>
6217
        </member>
6218
        <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
6219
            <summary>
6220
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
6221
            </summary>
6222
            <value></value>
6223
        </member>
6224
        <member name="T:Newtonsoft.Json.Linq.JObject">
6225
            <summary>
6226
            Represents a JSON object.
6227
            </summary>
6228
            <example>
6229
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
6230
            </example>
6231
        </member>
6232
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
6233
            <summary>
6234
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
6235
            </summary>
6236
        </member>
6237
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
6238
            <summary>
6239
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
6240
            </summary>
6241
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
6242
        </member>
6243
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
6244
            <summary>
6245
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
6246
            </summary>
6247
            <param name="content">The contents of the object.</param>
6248
        </member>
6249
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
6250
            <summary>
6251
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
6252
            </summary>
6253
            <param name="content">The contents of the object.</param>
6254
        </member>
6255
        <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
6256
            <summary>
6257
            Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.
6258
            </summary>
6259
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns>
6260
        </member>
6261
        <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
6262
            <summary>
6263
            Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
6264
            </summary>
6265
            <param name="name">The property name.</param>
6266
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns>
6267
        </member>
6268
        <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
6269
            <summary>
6270
            Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.
6271
            </summary>
6272
            <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns>
6273
        </member>
6274
        <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
6275
            <summary>
6276
            Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6277
            </summary>
6278
            <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> that will be read for the content of the <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6279
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> that contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.</returns>
6280
        </member>
6281
        <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
6282
            <summary>
6283
            Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
6284
            </summary>
6285
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6286
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
6287
            <example>
6288
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text"/>
6289
            </example>
6290
        </member>
6291
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
6292
            <summary>
6293
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
6294
            </summary>
6295
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6296
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
6297
        </member>
6298
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
6299
            <summary>
6300
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
6301
            </summary>
6302
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6303
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
6304
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
6305
        </member>
6306
        <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6307
            <summary>
6308
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6309
            </summary>
6310
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6311
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6312
        </member>
6313
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
6314
            <summary>
6315
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6316
            </summary>
6317
            <param name="propertyName">Name of the property.</param>
6318
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
6319
        </member>
6320
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
6321
            <summary>
6322
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6323
            The exact property name will be searched for first and if no matching property is found then
6324
            the <see cref="T:System.StringComparison"/> will be used to match a property.
6325
            </summary>
6326
            <param name="propertyName">Name of the property.</param>
6327
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
6328
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
6329
        </member>
6330
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
6331
            <summary>
6332
            Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6333
            The exact property name will be searched for first and if no matching property is found then
6334
            the <see cref="T:System.StringComparison"/> will be used to match a property.
6335
            </summary>
6336
            <param name="propertyName">Name of the property.</param>
6337
            <param name="value">The value.</param>
6338
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
6339
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
6340
        </member>
6341
        <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
6342
            <summary>
6343
            Adds the specified property name.
6344
            </summary>
6345
            <param name="propertyName">Name of the property.</param>
6346
            <param name="value">The value.</param>
6347
        </member>
6348
        <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
6349
            <summary>
6350
            Removes the property with the specified name.
6351
            </summary>
6352
            <param name="propertyName">Name of the property.</param>
6353
            <returns>true if item was successfully removed; otherwise, false.</returns>
6354
        </member>
6355
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
6356
            <summary>
6357
            Tries the get value.
6358
            </summary>
6359
            <param name="propertyName">Name of the property.</param>
6360
            <param name="value">The value.</param>
6361
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
6362
        </member>
6363
        <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
6364
            <summary>
6365
            Returns an enumerator that iterates through the collection.
6366
            </summary>
6367
            <returns>
6368
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
6369
            </returns>
6370
        </member>
6371
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
6372
            <summary>
6373
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
6374
            </summary>
6375
            <param name="propertyName">Name of the property.</param>
6376
        </member>
6377
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">
6378
            <summary>
6379
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments.
6380
            </summary>
6381
            <param name="propertyName">Name of the property.</param>
6382
        </member>
6383
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
6384
            <summary>
6385
            Returns the properties for this instance of a component.
6386
            </summary>
6387
            <returns>
6388
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance.
6389
            </returns>
6390
        </member>
6391
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
6392
            <summary>
6393
            Returns the properties for this instance of a component using the attribute array as a filter.
6394
            </summary>
6395
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
6396
            <returns>
6397
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.
6398
            </returns>
6399
        </member>
6400
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
6401
            <summary>
6402
            Returns a collection of custom attributes for this instance of a component.
6403
            </summary>
6404
            <returns>
6405
            An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object.
6406
            </returns>
6407
        </member>
6408
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
6409
            <summary>
6410
            Returns the class name of this instance of a component.
6411
            </summary>
6412
            <returns>
6413
            The class name of the object, or null if the class does not have a name.
6414
            </returns>
6415
        </member>
6416
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
6417
            <summary>
6418
            Returns the name of this instance of a component.
6419
            </summary>
6420
            <returns>
6421
            The name of the object, or null if the object does not have a name.
6422
            </returns>
6423
        </member>
6424
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
6425
            <summary>
6426
            Returns a type converter for this instance of a component.
6427
            </summary>
6428
            <returns>
6429
            A <see cref="T:System.ComponentModel.TypeConverter"/> that is the converter for this object, or null if there is no <see cref="T:System.ComponentModel.TypeConverter"/> for this object.
6430
            </returns>
6431
        </member>
6432
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
6433
            <summary>
6434
            Returns the default event for this instance of a component.
6435
            </summary>
6436
            <returns>
6437
            An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events.
6438
            </returns>
6439
        </member>
6440
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
6441
            <summary>
6442
            Returns the default property for this instance of a component.
6443
            </summary>
6444
            <returns>
6445
            A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties.
6446
            </returns>
6447
        </member>
6448
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
6449
            <summary>
6450
            Returns an editor of the specified type for this instance of a component.
6451
            </summary>
6452
            <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param>
6453
            <returns>
6454
            An <see cref="T:System.Object"/> of the specified type that is the editor for this object, or null if the editor cannot be found.
6455
            </returns>
6456
        </member>
6457
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
6458
            <summary>
6459
            Returns the events for this instance of a component using the specified attribute array as a filter.
6460
            </summary>
6461
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
6462
            <returns>
6463
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance.
6464
            </returns>
6465
        </member>
6466
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
6467
            <summary>
6468
            Returns the events for this instance of a component.
6469
            </summary>
6470
            <returns>
6471
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance.
6472
            </returns>
6473
        </member>
6474
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
6475
            <summary>
6476
            Returns an object that contains the property described by the specified property descriptor.
6477
            </summary>
6478
            <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param>
6479
            <returns>
6480
            An <see cref="T:System.Object"/> that represents the owner of the specified property.
6481
            </returns>
6482
        </member>
6483
        <member name="M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)">
6484
            <summary>
6485
            Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
6486
            </summary>
6487
            <param name="parameter">The expression tree representation of the runtime value.</param>
6488
            <returns>
6489
            The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
6490
            </returns>
6491
        </member>
6492
        <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
6493
            <summary>
6494
            Gets the container's children tokens.
6495
            </summary>
6496
            <value>The container's children tokens.</value>
6497
        </member>
6498
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
6499
            <summary>
6500
            Occurs when a property value changes.
6501
            </summary>
6502
        </member>
6503
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">
6504
            <summary>
6505
            Occurs when a property value is changing.
6506
            </summary>
6507
        </member>
6508
        <member name="P:Newtonsoft.Json.Linq.JObject.Type">
6509
            <summary>
6510
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6511
            </summary>
6512
            <value>The type.</value>
6513
        </member>
6514
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
6515
            <summary>
6516
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6517
            </summary>
6518
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6519
        </member>
6520
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
6521
            <summary>
6522
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6523
            </summary>
6524
            <value></value>
6525
        </member>
6526
        <member name="T:Newtonsoft.Json.Linq.JArray">
6527
            <summary>
6528
            Represents a JSON array.
6529
            </summary>
6530
            <example>
6531
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
6532
            </example>
6533
        </member>
6534
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
6535
            <summary>
6536
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
6537
            </summary>
6538
        </member>
6539
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
6540
            <summary>
6541
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
6542
            </summary>
6543
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
6544
        </member>
6545
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
6546
            <summary>
6547
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
6548
            </summary>
6549
            <param name="content">The contents of the array.</param>
6550
        </member>
6551
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
6552
            <summary>
6553
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
6554
            </summary>
6555
            <param name="content">The contents of the array.</param>
6556
        </member>
6557
        <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
6558
            <summary>
6559
            Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6560
            </summary>
6561
            <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> that will be read for the content of the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6562
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> that contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.</returns>
6563
        </member>
6564
        <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
6565
            <summary>
6566
            Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
6567
            </summary>
6568
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6569
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
6570
            <example>
6571
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text"/>
6572
            </example>
6573
        </member>
6574
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
6575
            <summary>
6576
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
6577
            </summary>
6578
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6579
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
6580
        </member>
6581
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
6582
            <summary>
6583
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
6584
            </summary>
6585
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6586
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
6587
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
6588
        </member>
6589
        <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6590
            <summary>
6591
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6592
            </summary>
6593
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6594
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6595
        </member>
6596
        <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
6597
            <summary>
6598
            Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
6599
            </summary>
6600
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
6601
            <returns>
6602
            The index of <paramref name="item"/> if found in the list; otherwise, -1.
6603
            </returns>
6604
        </member>
6605
        <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
6606
            <summary>
6607
            Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.
6608
            </summary>
6609
            <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
6610
            <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
6611
            <exception cref="T:System.ArgumentOutOfRangeException">
6612
            	<paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
6613
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
6614
        </member>
6615
        <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
6616
            <summary>
6617
            Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
6618
            </summary>
6619
            <param name="index">The zero-based index of the item to remove.</param>
6620
            <exception cref="T:System.ArgumentOutOfRangeException">
6621
            	<paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
6622
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
6623
        </member>
6624
        <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">
6625
            <summary>
6626
            Returns an enumerator that iterates through the collection.
6627
            </summary>
6628
            <returns>
6629
            A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.
6630
            </returns>
6631
        </member>
6632
        <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
6633
            <summary>
6634
            Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
6635
            </summary>
6636
            <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
6637
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
6638
        </member>
6639
        <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
6640
            <summary>
6641
            Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
6642
            </summary>
6643
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
6644
        </member>
6645
        <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
6646
            <summary>
6647
            Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
6648
            </summary>
6649
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
6650
            <returns>
6651
            true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
6652
            </returns>
6653
        </member>
6654
        <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
6655
            <summary>
6656
            Copies to.
6657
            </summary>
6658
            <param name="array">The array.</param>
6659
            <param name="arrayIndex">Index of the array.</param>
6660
        </member>
6661
        <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
6662
            <summary>
6663
            Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
6664
            </summary>
6665
            <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
6666
            <returns>
6667
            true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>.
6668
            </returns>
6669
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
6670
        </member>
6671
        <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
6672
            <summary>
6673
            Gets the container's children tokens.
6674
            </summary>
6675
            <value>The container's children tokens.</value>
6676
        </member>
6677
        <member name="P:Newtonsoft.Json.Linq.JArray.Type">
6678
            <summary>
6679
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6680
            </summary>
6681
            <value>The type.</value>
6682
        </member>
6683
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
6684
            <summary>
6685
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6686
            </summary>
6687
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6688
        </member>
6689
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
6690
            <summary>
6691
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
6692
            </summary>
6693
            <value></value>
6694
        </member>
6695
        <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
6696
            <summary>
6697
            Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.
6698
            </summary>
6699
            <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</returns>
6700
        </member>
6701
        <member name="T:Newtonsoft.Json.Linq.JTokenReader">
6702
            <summary>
6703
            Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
6704
            </summary>
6705
        </member>
6706
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
6707
            <summary>
6708
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
6709
            </summary>
6710
            <param name="token">The token to read from.</param>
6711
        </member>
6712
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">
6713
            <summary>
6714
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
6715
            </summary>
6716
            <returns>
6717
            A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
6718
            </returns>
6719
        </member>
6720
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">
6721
            <summary>
6722
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6723
            </summary>
6724
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6725
        </member>
6726
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
6727
            <summary>
6728
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6729
            </summary>
6730
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6731
        </member>
6732
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString">
6733
            <summary>
6734
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
6735
            </summary>
6736
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6737
        </member>
6738
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime">
6739
            <summary>
6740
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6741
            </summary>
6742
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6743
        </member>
6744
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">
6745
            <summary>
6746
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6747
            </summary>
6748
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6749
        </member>
6750
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
6751
            <summary>
6752
            Reads the next JSON token from the stream.
6753
            </summary>
6754
            <returns>
6755
            true if the next token was read successfully; false if there are no more tokens to read.
6756
            </returns>
6757
        </member>
6758
        <member name="P:Newtonsoft.Json.Linq.JTokenReader.CurrentToken">
6759
            <summary>
6760
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the reader's current position.
6761
            </summary>
6762
        </member>
6763
        <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">
6764
            <summary>
6765
            Gets the path of the current JSON token. 
6766
            </summary>
6767
        </member>
6768
        <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
6769
            <summary>
6770
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
6771
            </summary>
6772
        </member>
6773
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
6774
            <summary>
6775
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class writing to the given <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.
6776
            </summary>
6777
            <param name="container">The container being written to.</param>
6778
        </member>
6779
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
6780
            <summary>
6781
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
6782
            </summary>
6783
        </member>
6784
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
6785
            <summary>
6786
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
6787
            </summary>
6788
        </member>
6789
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
6790
            <summary>
6791
            Closes this stream and the underlying stream.
6792
            </summary>
6793
        </member>
6794
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
6795
            <summary>
6796
            Writes the beginning of a Json object.
6797
            </summary>
6798
        </member>
6799
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
6800
            <summary>
6801
            Writes the beginning of a Json array.
6802
            </summary>
6803
        </member>
6804
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
6805
            <summary>
6806
            Writes the start of a constructor with the given name.
6807
            </summary>
6808
            <param name="name">The name of the constructor.</param>
6809
        </member>
6810
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
6811
            <summary>
6812
            Writes the end.
6813
            </summary>
6814
            <param name="token">The token.</param>
6815
        </member>
6816
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
6817
            <summary>
6818
            Writes the property name of a name/value pair on a Json object.
6819
            </summary>
6820
            <param name="name">The name of the property.</param>
6821
        </member>
6822
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
6823
            <summary>
6824
            Writes a <see cref="T:System.Object"/> value.
6825
            An error will raised if the value cannot be written as a single JSON token.
6826
            </summary>
6827
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
6828
        </member>
6829
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
6830
            <summary>
6831
            Writes a null value.
6832
            </summary>
6833
        </member>
6834
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
6835
            <summary>
6836
            Writes an undefined value.
6837
            </summary>
6838
        </member>
6839
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
6840
            <summary>
6841
            Writes raw JSON.
6842
            </summary>
6843
            <param name="json">The raw JSON to write.</param>
6844
        </member>
6845
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
6846
            <summary>
6847
            Writes out a comment <code>/*...*/</code> containing the specified text.
6848
            </summary>
6849
            <param name="text">Text to place inside the comment.</param>
6850
        </member>
6851
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
6852
            <summary>
6853
            Writes a <see cref="T:System.String"/> value.
6854
            </summary>
6855
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
6856
        </member>
6857
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
6858
            <summary>
6859
            Writes a <see cref="T:System.Int32"/> value.
6860
            </summary>
6861
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
6862
        </member>
6863
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
6864
            <summary>
6865
            Writes a <see cref="T:System.UInt32"/> value.
6866
            </summary>
6867
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
6868
        </member>
6869
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
6870
            <summary>
6871
            Writes a <see cref="T:System.Int64"/> value.
6872
            </summary>
6873
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
6874
        </member>
6875
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
6876
            <summary>
6877
            Writes a <see cref="T:System.UInt64"/> value.
6878
            </summary>
6879
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
6880
        </member>
6881
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
6882
            <summary>
6883
            Writes a <see cref="T:System.Single"/> value.
6884
            </summary>
6885
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
6886
        </member>
6887
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
6888
            <summary>
6889
            Writes a <see cref="T:System.Double"/> value.
6890
            </summary>
6891
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
6892
        </member>
6893
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
6894
            <summary>
6895
            Writes a <see cref="T:System.Boolean"/> value.
6896
            </summary>
6897
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
6898
        </member>
6899
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
6900
            <summary>
6901
            Writes a <see cref="T:System.Int16"/> value.
6902
            </summary>
6903
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
6904
        </member>
6905
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
6906
            <summary>
6907
            Writes a <see cref="T:System.UInt16"/> value.
6908
            </summary>
6909
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
6910
        </member>
6911
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
6912
            <summary>
6913
            Writes a <see cref="T:System.Char"/> value.
6914
            </summary>
6915
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
6916
        </member>
6917
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
6918
            <summary>
6919
            Writes a <see cref="T:System.Byte"/> value.
6920
            </summary>
6921
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
6922
        </member>
6923
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
6924
            <summary>
6925
            Writes a <see cref="T:System.SByte"/> value.
6926
            </summary>
6927
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
6928
        </member>
6929
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
6930
            <summary>
6931
            Writes a <see cref="T:System.Decimal"/> value.
6932
            </summary>
6933
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
6934
        </member>
6935
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
6936
            <summary>
6937
            Writes a <see cref="T:System.DateTime"/> value.
6938
            </summary>
6939
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
6940
        </member>
6941
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">
6942
            <summary>
6943
            Writes a <see cref="T:System.DateTimeOffset"/> value.
6944
            </summary>
6945
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
6946
        </member>
6947
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
6948
            <summary>
6949
            Writes a <see cref="T:System.Byte"/>[] value.
6950
            </summary>
6951
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
6952
        </member>
6953
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
6954
            <summary>
6955
            Writes a <see cref="T:System.TimeSpan"/> value.
6956
            </summary>
6957
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
6958
        </member>
6959
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
6960
            <summary>
6961
            Writes a <see cref="T:System.Guid"/> value.
6962
            </summary>
6963
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
6964
        </member>
6965
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
6966
            <summary>
6967
            Writes a <see cref="T:System.Uri"/> value.
6968
            </summary>
6969
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
6970
        </member>
6971
        <member name="P:Newtonsoft.Json.Linq.JTokenWriter.CurrentToken">
6972
            <summary>
6973
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the writer's current position.
6974
            </summary>
6975
        </member>
6976
        <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
6977
            <summary>
6978
            Gets the token being writen.
6979
            </summary>
6980
            <value>The token being writen.</value>
6981
        </member>
6982
        <member name="T:Newtonsoft.Json.Linq.JProperty">
6983
            <summary>
6984
            Represents a JSON property.
6985
            </summary>
6986
        </member>
6987
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
6988
            <summary>
6989
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
6990
            </summary>
6991
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
6992
        </member>
6993
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
6994
            <summary>
6995
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
6996
            </summary>
6997
            <param name="name">The property name.</param>
6998
            <param name="content">The property content.</param>
6999
        </member>
7000
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
7001
            <summary>
7002
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
7003
            </summary>
7004
            <param name="name">The property name.</param>
7005
            <param name="content">The property content.</param>
7006
        </member>
7007
        <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
7008
            <summary>
7009
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
7010
            </summary>
7011
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7012
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
7013
        </member>
7014
        <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
7015
            <summary>
7016
            Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
7017
            </summary>
7018
            <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> that will be read for the content of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.</param>
7019
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> that contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.</returns>
7020
        </member>
7021
        <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
7022
            <summary>
7023
            Gets the container's children tokens.
7024
            </summary>
7025
            <value>The container's children tokens.</value>
7026
        </member>
7027
        <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
7028
            <summary>
7029
            Gets the property name.
7030
            </summary>
7031
            <value>The property name.</value>
7032
        </member>
7033
        <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
7034
            <summary>
7035
            Gets or sets the property value.
7036
            </summary>
7037
            <value>The property value.</value>
7038
        </member>
7039
        <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
7040
            <summary>
7041
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7042
            </summary>
7043
            <value>The type.</value>
7044
        </member>
7045
        <member name="T:Newtonsoft.Json.Linq.JTokenType">
7046
            <summary>
7047
            Specifies the type of token.
7048
            </summary>
7049
        </member>
7050
        <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
7051
            <summary>
7052
            No token type has been set.
7053
            </summary>
7054
        </member>
7055
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
7056
            <summary>
7057
            A JSON object.
7058
            </summary>
7059
        </member>
7060
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
7061
            <summary>
7062
            A JSON array.
7063
            </summary>
7064
        </member>
7065
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
7066
            <summary>
7067
            A JSON constructor.
7068
            </summary>
7069
        </member>
7070
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
7071
            <summary>
7072
            A JSON object property.
7073
            </summary>
7074
        </member>
7075
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
7076
            <summary>
7077
            A comment.
7078
            </summary>
7079
        </member>
7080
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
7081
            <summary>
7082
            An integer value.
7083
            </summary>
7084
        </member>
7085
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
7086
            <summary>
7087
            A float value.
7088
            </summary>
7089
        </member>
7090
        <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
7091
            <summary>
7092
            A string value.
7093
            </summary>
7094
        </member>
7095
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
7096
            <summary>
7097
            A boolean value.
7098
            </summary>
7099
        </member>
7100
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
7101
            <summary>
7102
            A null value.
7103
            </summary>
7104
        </member>
7105
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
7106
            <summary>
7107
            An undefined value.
7108
            </summary>
7109
        </member>
7110
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
7111
            <summary>
7112
            A date value.
7113
            </summary>
7114
        </member>
7115
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
7116
            <summary>
7117
            A raw JSON value.
7118
            </summary>
7119
        </member>
7120
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
7121
            <summary>
7122
            A collection of bytes value.
7123
            </summary>
7124
        </member>
7125
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
7126
            <summary>
7127
            A Guid value.
7128
            </summary>
7129
        </member>
7130
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
7131
            <summary>
7132
            A Uri value.
7133
            </summary>
7134
        </member>
7135
        <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
7136
            <summary>
7137
            A TimeSpan value.
7138
            </summary>
7139
        </member>
7140
        <member name="T:Newtonsoft.Json.Schema.Extensions">
7141
            <summary>
7142
            Contains the JSON schema extension methods.
7143
            </summary>
7144
        </member>
7145
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
7146
            <summary>
7147
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
7148
            </summary>
7149
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7150
            <param name="schema">The schema to test with.</param>
7151
            <returns>
7152
            	<c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
7153
            </returns>
7154
        </member>
7155
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
7156
            <summary>
7157
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
7158
            </summary>
7159
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7160
            <param name="schema">The schema to test with.</param>
7161
            <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
7162
            <returns>
7163
            	<c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
7164
            </returns>
7165
        </member>
7166
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
7167
            <summary>
7168
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7169
            </summary>
7170
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7171
            <param name="schema">The schema to test with.</param>
7172
        </member>
7173
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
7174
            <summary>
7175
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7176
            </summary>
7177
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7178
            <param name="schema">The schema to test with.</param>
7179
            <param name="validationEventHandler">The validation event handler.</param>
7180
        </member>
7181
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
7182
            <summary>
7183
            Returns detailed information about the schema exception.
7184
            </summary>
7185
        </member>
7186
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
7187
            <summary>
7188
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
7189
            </summary>
7190
        </member>
7191
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
7192
            <summary>
7193
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7194
            with a specified error message.
7195
            </summary>
7196
            <param name="message">The error message that explains the reason for the exception.</param>
7197
        </member>
7198
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
7199
            <summary>
7200
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7201
            with a specified error message and a reference to the inner exception that is the cause of this exception.
7202
            </summary>
7203
            <param name="message">The error message that explains the reason for the exception.</param>
7204
            <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
7205
        </member>
7206
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7207
            <summary>
7208
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
7209
            </summary>
7210
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
7211
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
7212
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
7213
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
7214
        </member>
7215
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
7216
            <summary>
7217
            Gets the line number indicating where the error occurred.
7218
            </summary>
7219
            <value>The line number indicating where the error occurred.</value>
7220
        </member>
7221
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
7222
            <summary>
7223
            Gets the line position indicating where the error occurred.
7224
            </summary>
7225
            <value>The line position indicating where the error occurred.</value>
7226
        </member>
7227
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
7228
            <summary>
7229
            Gets the path to the JSON where the error occurred.
7230
            </summary>
7231
            <value>The path to the JSON where the error occurred.</value>
7232
        </member>
7233
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
7234
            <summary>
7235
            Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
7236
            </summary>
7237
        </member>
7238
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
7239
            <summary>
7240
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
7241
            </summary>
7242
        </member>
7243
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
7244
            <summary>
7245
            Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.
7246
            </summary>
7247
            <param name="reference">The id.</param>
7248
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>
7249
        </member>
7250
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
7251
            <summary>
7252
            Gets or sets the loaded schemas.
7253
            </summary>
7254
            <value>The loaded schemas.</value>
7255
        </member>
7256
        <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
7257
            <summary>
7258
            Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
7259
            </summary>
7260
        </member>
7261
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
7262
            <summary>
7263
            Do not infer a schema Id.
7264
            </summary>
7265
        </member>
7266
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
7267
            <summary>
7268
            Use the .NET type name as the schema Id.
7269
            </summary>
7270
        </member>
7271
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
7272
            <summary>
7273
            Use the assembly qualified .NET type name as the schema Id.
7274
            </summary>
7275
        </member>
7276
        <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
7277
            <summary>
7278
            Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
7279
            </summary>
7280
        </member>
7281
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
7282
            <summary>
7283
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.
7284
            </summary>
7285
            <value>The JsonSchemaException associated with the validation error.</value>
7286
        </member>
7287
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
7288
            <summary>
7289
            Gets the path of the JSON location where the validation error occurred.
7290
            </summary>
7291
            <value>The path of the JSON location where the validation error occurred.</value>
7292
        </member>
7293
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
7294
            <summary>
7295
            Gets the text description corresponding to the validation error.
7296
            </summary>
7297
            <value>The text description.</value>
7298
        </member>
7299
        <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
7300
            <summary>
7301
            Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
7302
            </summary>
7303
        </member>
7304
        <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
7305
            <summary>
7306
            Resolves member mappings for a type, camel casing property names.
7307
            </summary>
7308
        </member>
7309
        <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
7310
            <summary>
7311
            Used by <see cref="T:Newtonsoft.Json.JsonSerializer"/> to resolves a <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for a given <see cref="T:System.Type"/>.
7312
            </summary>
7313
        </member>
7314
        <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
7315
            <summary>
7316
            Used by <see cref="T:Newtonsoft.Json.JsonSerializer"/> to resolves a <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for a given <see cref="T:System.Type"/>.
7317
            </summary>
7318
            <example>
7319
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class"/>
7320
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example"/>
7321
            </example>
7322
        </member>
7323
        <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
7324
            <summary>
7325
            Resolves the contract for a given type.
7326
            </summary>
7327
            <param name="type">The type to resolve a contract for.</param>
7328
            <returns>The contract for a given type.</returns>
7329
        </member>
7330
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
7331
            <summary>
7332
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
7333
            </summary>
7334
        </member>
7335
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)">
7336
            <summary>
7337
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
7338
            </summary>
7339
            <param name="shareCache">
7340
            If set to <c>true</c> the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> will use a cached shared with other resolvers of the same type.
7341
            Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only
7342
            happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different
7343
            results. When set to false it is highly recommended to reuse <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> instances with the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7344
            </param>
7345
        </member>
7346
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
7347
            <summary>
7348
            Resolves the contract for a given type.
7349
            </summary>
7350
            <param name="type">The type to resolve a contract for.</param>
7351
            <returns>The contract for a given type.</returns>
7352
        </member>
7353
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
7354
            <summary>
7355
            Gets the serializable members for the type.
7356
            </summary>
7357
            <param name="objectType">The type to get serializable members for.</param>
7358
            <returns>The serializable members for the type.</returns>
7359
        </member>
7360
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
7361
            <summary>
7362
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
7363
            </summary>
7364
            <param name="objectType">Type of the object.</param>
7365
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
7366
        </member>
7367
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
7368
            <summary>
7369
            Creates the constructor parameters.
7370
            </summary>
7371
            <param name="constructor">The constructor to create properties for.</param>
7372
            <param name="memberProperties">The type's member properties.</param>
7373
            <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
7374
        </member>
7375
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
7376
            <summary>
7377
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
7378
            </summary>
7379
            <param name="matchingMemberProperty">The matching member property.</param>
7380
            <param name="parameterInfo">The constructor parameter.</param>
7381
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
7382
        </member>
7383
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
7384
            <summary>
7385
            Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for the contract.
7386
            </summary>
7387
            <param name="objectType">Type of the object.</param>
7388
            <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter"/>.</returns>
7389
        </member>
7390
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
7391
            <summary>
7392
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
7393
            </summary>
7394
            <param name="objectType">Type of the object.</param>
7395
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
7396
        </member>
7397
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
7398
            <summary>
7399
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
7400
            </summary>
7401
            <param name="objectType">Type of the object.</param>
7402
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
7403
        </member>
7404
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
7405
            <summary>
7406
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
7407
            </summary>
7408
            <param name="objectType">Type of the object.</param>
7409
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
7410
        </member>
7411
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
7412
            <summary>
7413
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
7414
            </summary>
7415
            <param name="objectType">Type of the object.</param>
7416
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
7417
        </member>
7418
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
7419
            <summary>
7420
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
7421
            </summary>
7422
            <param name="objectType">Type of the object.</param>
7423
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
7424
        </member>
7425
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDynamicContract(System.Type)">
7426
            <summary>
7427
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.
7428
            </summary>
7429
            <param name="objectType">Type of the object.</param>
7430
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.</returns>
7431
        </member>
7432
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
7433
            <summary>
7434
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
7435
            </summary>
7436
            <param name="objectType">Type of the object.</param>
7437
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
7438
        </member>
7439
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
7440
            <summary>
7441
            Determines which contract type is created for the given type.
7442
            </summary>
7443
            <param name="objectType">Type of the object.</param>
7444
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
7445
        </member>
7446
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
7447
            <summary>
7448
            Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
7449
            </summary>
7450
            <param name="type">The type to create properties for.</param>
7451
            /// <param name="memberSerialization">The member serialization mode for the type.</param>
7452
            <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
7453
        </member>
7454
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
7455
            <summary>
7456
            Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
7457
            </summary>
7458
            <param name="member">The member.</param>
7459
            <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
7460
        </member>
7461
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
7462
            <summary>
7463
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
7464
            </summary>
7465
            <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
7466
            <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
7467
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
7468
        </member>
7469
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
7470
            <summary>
7471
            Resolves the name of the property.
7472
            </summary>
7473
            <param name="propertyName">Name of the property.</param>
7474
            <returns>Name of the property.</returns>
7475
        </member>
7476
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
7477
            <summary>
7478
            Gets the resolved name of the property.
7479
            </summary>
7480
            <param name="propertyName">Name of the property.</param>
7481
            <returns>Name of the property.</returns>
7482
        </member>
7483
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
7484
            <summary>
7485
            Gets a value indicating whether members are being get and set using dynamic code generation.
7486
            This value is determined by the runtime permissions available.
7487
            </summary>
7488
            <value>
7489
            	<c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
7490
            </value>
7491
        </member>
7492
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
7493
            <summary>
7494
            Gets or sets the default members search flags.
7495
            </summary>
7496
            <value>The default members search flags.</value>
7497
        </member>
7498
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
7499
            <summary>
7500
            Gets or sets a value indicating whether compiler generated members should be serialized.
7501
            </summary>
7502
            <value>
7503
            	<c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
7504
            </value>
7505
        </member>
7506
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
7507
            <summary>
7508
            Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.
7509
            </summary>
7510
            <value>
7511
            	<c>true</c> if the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
7512
            </value>
7513
        </member>
7514
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
7515
            <summary>
7516
            Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.
7517
            </summary>
7518
            <value>
7519
            	<c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
7520
            </value>
7521
        </member>
7522
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
7523
            <summary>
7524
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
7525
            </summary>
7526
        </member>
7527
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)">
7528
            <summary>
7529
            Resolves the name of the property.
7530
            </summary>
7531
            <param name="propertyName">Name of the property.</param>
7532
            <returns>The property name camel cased.</returns>
7533
        </member>
7534
        <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
7535
            <summary>
7536
            The default serialization binder used when resolving and loading classes from type names.
7537
            </summary>
7538
        </member>
7539
        <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
7540
            <summary>
7541
            When overridden in a derived class, controls the binding of a serialized object to a type.
7542
            </summary>
7543
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
7544
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
7545
            <returns>
7546
            The type of the object the formatter creates a new instance of.
7547
            </returns>
7548
        </member>
7549
        <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)">
7550
            <summary>
7551
            When overridden in a derived class, controls the binding of a serialized object to a type.
7552
            </summary>
7553
            <param name="serializedType">The type of the object the formatter creates a new instance of.</param>
7554
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object. </param>
7555
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object. </param>
7556
        </member>
7557
        <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
7558
            <summary>
7559
            Provides information surrounding an error.
7560
            </summary>
7561
        </member>
7562
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
7563
            <summary>
7564
            Gets the error.
7565
            </summary>
7566
            <value>The error.</value>
7567
        </member>
7568
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
7569
            <summary>
7570
            Gets the original object that caused the error.
7571
            </summary>
7572
            <value>The original object that caused the error.</value>
7573
        </member>
7574
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
7575
            <summary>
7576
            Gets the member that caused the error.
7577
            </summary>
7578
            <value>The member that caused the error.</value>
7579
        </member>
7580
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
7581
            <summary>
7582
            Gets the path of the JSON location where the error occurred.
7583
            </summary>
7584
            <value>The path of the JSON location where the error occurred.</value>
7585
        </member>
7586
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
7587
            <summary>
7588
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
7589
            </summary>
7590
            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
7591
        </member>
7592
        <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
7593
            <summary>
7594
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7595
            </summary>
7596
        </member>
7597
        <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
7598
            <summary>
7599
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
7600
            </summary>
7601
            <param name="underlyingType">The underlying type for the contract.</param>
7602
        </member>
7603
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
7604
            <summary>
7605
            Gets the <see cref="T:System.Type"/> of the collection items.
7606
            </summary>
7607
            <value>The <see cref="T:System.Type"/> of the collection items.</value>
7608
        </member>
7609
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
7610
            <summary>
7611
            Gets a value indicating whether the collection type is a multidimensional array.
7612
            </summary>
7613
            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
7614
        </member>
7615
        <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">
7616
            <summary>
7617
            Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.
7618
            </summary>
7619
            <param name="o">The object that raised the callback event.</param>
7620
            <param name="context">The streaming context.</param>
7621
        </member>
7622
        <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">
7623
            <summary>
7624
            Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.
7625
            </summary>
7626
            <param name="o">The object that raised the callback event.</param>
7627
            <param name="context">The streaming context.</param>
7628
            <param name="errorContext">The error context.</param>
7629
        </member>
7630
        <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">
7631
            <summary>
7632
            Sets extension data for an object during deserialization.
7633
            </summary>
7634
            <param name="o">The object to set extension data on.</param>
7635
            <param name="key">The extension data key.</param>
7636
            <param name="value">The extension data value.</param>
7637
        </member>
7638
        <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">
7639
            <summary>
7640
            Gets extension data for an object during serialization.
7641
            </summary>
7642
            <param name="o">The object to set extension data on.</param>
7643
        </member>
7644
        <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
7645
            <summary>
7646
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7647
            </summary>
7648
        </member>
7649
        <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
7650
            <summary>
7651
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
7652
            </summary>
7653
            <param name="underlyingType">The underlying type for the contract.</param>
7654
        </member>
7655
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver">
7656
            <summary>
7657
            Gets or sets the property name resolver.
7658
            </summary>
7659
            <value>The property name resolver.</value>
7660
        </member>
7661
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
7662
            <summary>
7663
            Gets the <see cref="T:System.Type"/> of the dictionary keys.
7664
            </summary>
7665
            <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
7666
        </member>
7667
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
7668
            <summary>
7669
            Gets the <see cref="T:System.Type"/> of the dictionary values.
7670
            </summary>
7671
            <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
7672
        </member>
7673
        <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
7674
            <summary>
7675
            Maps a JSON property to a .NET member or constructor parameter.
7676
            </summary>
7677
        </member>
7678
        <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
7679
            <summary>
7680
            Returns a <see cref="T:System.String"/> that represents this instance.
7681
            </summary>
7682
            <returns>
7683
            A <see cref="T:System.String"/> that represents this instance.
7684
            </returns>
7685
        </member>
7686
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
7687
            <summary>
7688
            Gets or sets the name of the property.
7689
            </summary>
7690
            <value>The name of the property.</value>
7691
        </member>
7692
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
7693
            <summary>
7694
            Gets or sets the type that declared this property.
7695
            </summary>
7696
            <value>The type that declared this property.</value>
7697
        </member>
7698
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
7699
            <summary>
7700
            Gets or sets the order of serialization and deserialization of a member.
7701
            </summary>
7702
            <value>The numeric order of serialization or deserialization.</value>
7703
        </member>
7704
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
7705
            <summary>
7706
            Gets or sets the name of the underlying member or parameter.
7707
            </summary>
7708
            <value>The name of the underlying member or parameter.</value>
7709
        </member>
7710
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
7711
            <summary>
7712
            Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
7713
            </summary>
7714
            <value>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.</value>
7715
        </member>
7716
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.AttributeProvider">
7717
            <summary>
7718
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.
7719
            </summary>
7720
            <value>The <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.</value>
7721
        </member>
7722
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
7723
            <summary>
7724
            Gets or sets the type of the property.
7725
            </summary>
7726
            <value>The type of the property.</value>
7727
        </member>
7728
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
7729
            <summary>
7730
            Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> for the property.
7731
            If set this converter takes presidence over the contract converter for the property type.
7732
            </summary>
7733
            <value>The converter.</value>
7734
        </member>
7735
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
7736
            <summary>
7737
            Gets or sets the member converter.
7738
            </summary>
7739
            <value>The member converter.</value>
7740
        </member>
7741
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
7742
            <summary>
7743
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
7744
            </summary>
7745
            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
7746
        </member>
7747
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
7748
            <summary>
7749
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
7750
            </summary>
7751
            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
7752
        </member>
7753
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
7754
            <summary>
7755
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
7756
            </summary>
7757
            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
7758
        </member>
7759
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
7760
            <summary>
7761
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
7762
            </summary>
7763
            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
7764
        </member>
7765
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
7766
            <summary>
7767
            Gets the default value.
7768
            </summary>
7769
            <value>The default value.</value>
7770
        </member>
7771
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
7772
            <summary>
7773
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
7774
            </summary>
7775
            <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
7776
        </member>
7777
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
7778
            <summary>
7779
            Gets or sets a value indicating whether this property preserves object references.
7780
            </summary>
7781
            <value>
7782
            	<c>true</c> if this instance is reference; otherwise, <c>false</c>.
7783
            </value>
7784
        </member>
7785
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
7786
            <summary>
7787
            Gets or sets the property null value handling.
7788
            </summary>
7789
            <value>The null value handling.</value>
7790
        </member>
7791
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
7792
            <summary>
7793
            Gets or sets the property default value handling.
7794
            </summary>
7795
            <value>The default value handling.</value>
7796
        </member>
7797
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
7798
            <summary>
7799
            Gets or sets the property reference loop handling.
7800
            </summary>
7801
            <value>The reference loop handling.</value>
7802
        </member>
7803
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
7804
            <summary>
7805
            Gets or sets the property object creation handling.
7806
            </summary>
7807
            <value>The object creation handling.</value>
7808
        </member>
7809
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
7810
            <summary>
7811
            Gets or sets or sets the type name handling.
7812
            </summary>
7813
            <value>The type name handling.</value>
7814
        </member>
7815
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
7816
            <summary>
7817
            Gets or sets a predicate used to determine whether the property should be serialize.
7818
            </summary>
7819
            <value>A predicate used to determine whether the property should be serialize.</value>
7820
        </member>
7821
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
7822
            <summary>
7823
            Gets or sets a predicate used to determine whether the property should be serialized.
7824
            </summary>
7825
            <value>A predicate used to determine whether the property should be serialized.</value>
7826
        </member>
7827
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
7828
            <summary>
7829
            Gets or sets an action used to set whether the property has been deserialized.
7830
            </summary>
7831
            <value>An action used to set whether the property has been deserialized.</value>
7832
        </member>
7833
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
7834
            <summary>
7835
            Gets or sets the converter used when serializing the property's collection items.
7836
            </summary>
7837
            <value>The collection's items converter.</value>
7838
        </member>
7839
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
7840
            <summary>
7841
            Gets or sets whether this property's collection items are serialized as a reference.
7842
            </summary>
7843
            <value>Whether this property's collection items are serialized as a reference.</value>
7844
        </member>
7845
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
7846
            <summary>
7847
            Gets or sets the the type name handling used when serializing the property's collection items.
7848
            </summary>
7849
            <value>The collection's items type name handling.</value>
7850
        </member>
7851
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
7852
            <summary>
7853
            Gets or sets the the reference loop handling used when serializing the property's collection items.
7854
            </summary>
7855
            <value>The collection's items reference loop handling.</value>
7856
        </member>
7857
        <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
7858
            <summary>
7859
            A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
7860
            </summary>
7861
        </member>
7862
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
7863
            <summary>
7864
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
7865
            </summary>
7866
            <param name="type">The type.</param>
7867
        </member>
7868
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
7869
            <summary>
7870
            When implemented in a derived class, extracts the key from the specified element.
7871
            </summary>
7872
            <param name="item">The element from which to extract the key.</param>
7873
            <returns>The key for the specified element.</returns>
7874
        </member>
7875
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
7876
            <summary>
7877
            Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
7878
            </summary>
7879
            <param name="property">The property to add to the collection.</param>
7880
        </member>
7881
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
7882
            <summary>
7883
            Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
7884
            First attempts to get an exact case match of propertyName and then
7885
            a case insensitive match.
7886
            </summary>
7887
            <param name="propertyName">Name of the property.</param>
7888
            <returns>A matching property if found.</returns>
7889
        </member>
7890
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
7891
            <summary>
7892
            Gets a property by property name.
7893
            </summary>
7894
            <param name="propertyName">The name of the property to get.</param>
7895
            <param name="comparisonType">Type property name string comparison.</param>
7896
            <returns>A matching property if found.</returns>
7897
        </member>
7898
        <member name="T:Newtonsoft.Json.MissingMemberHandling">
7899
            <summary>
7900
            Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7901
            </summary>
7902
        </member>
7903
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
7904
            <summary>
7905
            Ignore a missing member and do not attempt to deserialize it.
7906
            </summary>
7907
        </member>
7908
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
7909
            <summary>
7910
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
7911
            </summary>
7912
        </member>
7913
        <member name="T:Newtonsoft.Json.NullValueHandling">
7914
            <summary>
7915
            Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7916
            </summary>
7917
            <example>
7918
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class"/>
7919
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example"/>
7920
            </example>
7921
        </member>
7922
        <member name="F:Newtonsoft.Json.NullValueHandling.Include">
7923
            <summary>
7924
            Include null values when serializing and deserializing objects.
7925
            </summary>
7926
        </member>
7927
        <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
7928
            <summary>
7929
            Ignore null values when serializing and deserializing objects.
7930
            </summary>
7931
        </member>
7932
        <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
7933
            <summary>
7934
            Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7935
            </summary>
7936
        </member>
7937
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
7938
            <summary>
7939
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
7940
            </summary>
7941
        </member>
7942
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
7943
            <summary>
7944
            Ignore loop references and do not serialize.
7945
            </summary>
7946
        </member>
7947
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
7948
            <summary>
7949
            Serialize loop references.
7950
            </summary>
7951
        </member>
7952
        <member name="T:Newtonsoft.Json.Schema.JsonSchema">
7953
            <summary>
7954
            An in-memory representation of a JSON Schema.
7955
            </summary>
7956
        </member>
7957
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
7958
            <summary>
7959
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
7960
            </summary>
7961
        </member>
7962
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
7963
            <summary>
7964
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7965
            </summary>
7966
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
7967
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
7968
        </member>
7969
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7970
            <summary>
7971
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7972
            </summary>
7973
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
7974
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
7975
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
7976
        </member>
7977
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
7978
            <summary>
7979
            Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON.
7980
            </summary>
7981
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
7982
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
7983
        </member>
7984
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7985
            <summary>
7986
            Parses the specified json.
7987
            </summary>
7988
            <param name="json">The json.</param>
7989
            <param name="resolver">The resolver.</param>
7990
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
7991
        </member>
7992
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
7993
            <summary>
7994
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
7995
            </summary>
7996
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7997
        </member>
7998
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7999
            <summary>
8000
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
8001
            </summary>
8002
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8003
            <param name="resolver">The resolver used.</param>
8004
        </member>
8005
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
8006
            <summary>
8007
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
8008
            </summary>
8009
            <returns>
8010
            A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
8011
            </returns>
8012
        </member>
8013
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
8014
            <summary>
8015
            Gets or sets the id.
8016
            </summary>
8017
        </member>
8018
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
8019
            <summary>
8020
            Gets or sets the title.
8021
            </summary>
8022
        </member>
8023
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
8024
            <summary>
8025
            Gets or sets whether the object is required.
8026
            </summary>
8027
        </member>
8028
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
8029
            <summary>
8030
            Gets or sets whether the object is read only.
8031
            </summary>
8032
        </member>
8033
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
8034
            <summary>
8035
            Gets or sets whether the object is visible to users.
8036
            </summary>
8037
        </member>
8038
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
8039
            <summary>
8040
            Gets or sets whether the object is transient.
8041
            </summary>
8042
        </member>
8043
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
8044
            <summary>
8045
            Gets or sets the description of the object.
8046
            </summary>
8047
        </member>
8048
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
8049
            <summary>
8050
            Gets or sets the types of values allowed by the object.
8051
            </summary>
8052
            <value>The type.</value>
8053
        </member>
8054
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
8055
            <summary>
8056
            Gets or sets the pattern.
8057
            </summary>
8058
            <value>The pattern.</value>
8059
        </member>
8060
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
8061
            <summary>
8062
            Gets or sets the minimum length.
8063
            </summary>
8064
            <value>The minimum length.</value>
8065
        </member>
8066
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
8067
            <summary>
8068
            Gets or sets the maximum length.
8069
            </summary>
8070
            <value>The maximum length.</value>
8071
        </member>
8072
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
8073
            <summary>
8074
            Gets or sets a number that the value should be divisble by.
8075
            </summary>
8076
            <value>A number that the value should be divisble by.</value>
8077
        </member>
8078
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
8079
            <summary>
8080
            Gets or sets the minimum.
8081
            </summary>
8082
            <value>The minimum.</value>
8083
        </member>
8084
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
8085
            <summary>
8086
            Gets or sets the maximum.
8087
            </summary>
8088
            <value>The maximum.</value>
8089
        </member>
8090
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
8091
            <summary>
8092
            Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.
8093
            </summary>
8094
            <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value>
8095
        </member>
8096
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
8097
            <summary>
8098
            Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.
8099
            </summary>
8100
            <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>
8101
        </member>
8102
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
8103
            <summary>
8104
            Gets or sets the minimum number of items.
8105
            </summary>
8106
            <value>The minimum number of items.</value>
8107
        </member>
8108
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
8109
            <summary>
8110
            Gets or sets the maximum number of items.
8111
            </summary>
8112
            <value>The maximum number of items.</value>
8113
        </member>
8114
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
8115
            <summary>
8116
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
8117
            </summary>
8118
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
8119
        </member>
8120
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">
8121
            <summary>
8122
            Gets or sets a value indicating whether items in an array are validated using the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> instance at their array position from <see cref="P:Newtonsoft.Json.Schema.JsonSchema.Items"/>.
8123
            </summary>
8124
            <value>
8125
            	<c>true</c> if items are validated using their array position; otherwise, <c>false</c>.
8126
            </value>
8127
        </member>
8128
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">
8129
            <summary>
8130
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.
8131
            </summary>
8132
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value>
8133
        </member>
8134
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">
8135
            <summary>
8136
            Gets or sets a value indicating whether additional items are allowed.
8137
            </summary>
8138
            <value>
8139
            	<c>true</c> if additional items are allowed; otherwise, <c>false</c>.
8140
            </value>
8141
        </member>
8142
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">
8143
            <summary>
8144
            Gets or sets whether the array items must be unique.
8145
            </summary>
8146
        </member>
8147
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
8148
            <summary>
8149
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
8150
            </summary>
8151
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
8152
        </member>
8153
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
8154
            <summary>
8155
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
8156
            </summary>
8157
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
8158
        </member>
8159
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
8160
            <summary>
8161
            Gets or sets the pattern properties.
8162
            </summary>
8163
            <value>The pattern properties.</value>
8164
        </member>
8165
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
8166
            <summary>
8167
            Gets or sets a value indicating whether additional properties are allowed.
8168
            </summary>
8169
            <value>
8170
            	<c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
8171
            </value>
8172
        </member>
8173
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
8174
            <summary>
8175
            Gets or sets the required property if this property is present.
8176
            </summary>
8177
            <value>The required property if this property is present.</value>
8178
        </member>
8179
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
8180
            <summary>
8181
            Gets or sets the a collection of valid enum values allowed.
8182
            </summary>
8183
            <value>A collection of valid enum values allowed.</value>
8184
        </member>
8185
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
8186
            <summary>
8187
            Gets or sets disallowed types.
8188
            </summary>
8189
            <value>The disallow types.</value>
8190
        </member>
8191
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
8192
            <summary>
8193
            Gets or sets the default value.
8194
            </summary>
8195
            <value>The default value.</value>
8196
        </member>
8197
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
8198
            <summary>
8199
            Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.
8200
            </summary>
8201
            <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value>
8202
        </member>
8203
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
8204
            <summary>
8205
            Gets or sets the format.
8206
            </summary>
8207
            <value>The format.</value>
8208
        </member>
8209
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
8210
            <summary>
8211
            Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
8212
            </summary>
8213
        </member>
8214
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
8215
            <summary>
8216
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8217
            </summary>
8218
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8219
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8220
        </member>
8221
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8222
            <summary>
8223
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8224
            </summary>
8225
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8226
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8227
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8228
        </member>
8229
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
8230
            <summary>
8231
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8232
            </summary>
8233
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8234
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8235
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8236
        </member>
8237
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
8238
            <summary>
8239
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8240
            </summary>
8241
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8242
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8243
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8244
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8245
        </member>
8246
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
8247
            <summary>
8248
            Gets or sets how undefined schemas are handled by the serializer.
8249
            </summary>
8250
        </member>
8251
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
8252
            <summary>
8253
            Gets or sets the contract resolver.
8254
            </summary>
8255
            <value>The contract resolver.</value>
8256
        </member>
8257
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
8258
            <summary>
8259
            The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
8260
            </summary>
8261
        </member>
8262
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
8263
            <summary>
8264
            No type specified.
8265
            </summary>
8266
        </member>
8267
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
8268
            <summary>
8269
            String type.
8270
            </summary>
8271
        </member>
8272
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
8273
            <summary>
8274
            Float type.
8275
            </summary>
8276
        </member>
8277
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
8278
            <summary>
8279
            Integer type.
8280
            </summary>
8281
        </member>
8282
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
8283
            <summary>
8284
            Boolean type.
8285
            </summary>
8286
        </member>
8287
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
8288
            <summary>
8289
            Object type.
8290
            </summary>
8291
        </member>
8292
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
8293
            <summary>
8294
            Array type.
8295
            </summary>
8296
        </member>
8297
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
8298
            <summary>
8299
            Null type.
8300
            </summary>
8301
        </member>
8302
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
8303
            <summary>
8304
            Any type.
8305
            </summary>
8306
        </member>
8307
        <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
8308
            <summary>
8309
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8310
            </summary>
8311
        </member>
8312
        <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
8313
            <summary>
8314
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
8315
            </summary>
8316
            <param name="underlyingType">The underlying type for the contract.</param>
8317
        </member>
8318
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
8319
            <summary>
8320
            Gets or sets the object member serialization.
8321
            </summary>
8322
            <value>The member object serialization.</value>
8323
        </member>
8324
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
8325
            <summary>
8326
            Gets or sets a value that indicates whether the object's properties are required.
8327
            </summary>
8328
            <value>
8329
            	A value indicating whether the object's properties are required.
8330
            </value>
8331
        </member>
8332
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
8333
            <summary>
8334
            Gets the object's properties.
8335
            </summary>
8336
            <value>The object's properties.</value>
8337
        </member>
8338
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters">
8339
            <summary>
8340
            Gets the constructor parameters required for any non-default constructor
8341
            </summary>
8342
        </member>
8343
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">
8344
            <summary>
8345
            Gets a collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> instances that define the parameters used with <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator"/>.
8346
            </summary>
8347
        </member>
8348
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor">
8349
            <summary>
8350
            Gets or sets the override constructor used to create the object.
8351
            This is set when a constructor is marked up using the
8352
            JsonConstructor attribute.
8353
            </summary>
8354
            <value>The override constructor.</value>
8355
        </member>
8356
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor">
8357
            <summary>
8358
            Gets or sets the parametrized constructor used to create the object.
8359
            </summary>
8360
            <value>The parametrized constructor.</value>
8361
        </member>
8362
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">
8363
            <summary>
8364
            Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
8365
            This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection.
8366
            </summary>
8367
            <value>The function used to create the object.</value>
8368
        </member>
8369
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">
8370
            <summary>
8371
            Gets or sets the extension data setter.
8372
            </summary>
8373
        </member>
8374
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">
8375
            <summary>
8376
            Gets or sets the extension data getter.
8377
            </summary>
8378
        </member>
8379
        <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
8380
            <summary>
8381
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8382
            </summary>
8383
        </member>
8384
        <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
8385
            <summary>
8386
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
8387
            </summary>
8388
            <param name="underlyingType">The underlying type for the contract.</param>
8389
        </member>
8390
        <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.CreateJsonConverterInstance(System.Type,System.Object[])">
8391
            <summary>
8392
            Lookup and create an instance of the JsonConverter type described by the argument.
8393
            </summary>
8394
            <param name="converterType">The JsonConverter type to create.</param>
8395
            <param name="converterArgs">Optional arguments to pass to an initializing constructor of the JsonConverter.
8396
            If null, the default constructor is used.</param>
8397
        </member>
8398
        <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.GetJsonConverterCreator(System.Type)">
8399
            <summary>
8400
            Create a factory function that can be used to create instances of a JsonConverter described by the 
8401
            argument type.  The returned function can then be used to either invoke the converter's default ctor, or any 
8402
            parameterized constructors by way of an object array.
8403
            </summary>
8404
        </member>
8405
        <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
8406
            <summary>
8407
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
8408
            </summary>
8409
        </member>
8410
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
8411
            <summary>
8412
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
8413
            </summary>
8414
            <param name="memberInfo">The member info.</param>
8415
        </member>
8416
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
8417
            <summary>
8418
            Sets the value.
8419
            </summary>
8420
            <param name="target">The target to set the value on.</param>
8421
            <param name="value">The value to set on the target.</param>
8422
        </member>
8423
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
8424
            <summary>
8425
            Gets the value.
8426
            </summary>
8427
            <param name="target">The target to get the value from.</param>
8428
            <returns>The value.</returns>
8429
        </member>
8430
        <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
8431
            <summary>
8432
            When applied to a method, specifies that the method is called when an error occurs serializing an object.
8433
            </summary>
8434
        </member>
8435
        <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodWithResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback,Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
8436
            <summary>
8437
            Helper method for generating a MetaObject which calls a
8438
            specific method on Dynamic that returns a result
8439
            </summary>
8440
        </member>
8441
        <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodReturnLast(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
8442
            <summary>
8443
            Helper method for generating a MetaObject which calls a
8444
            specific method on Dynamic, but uses one of the arguments for
8445
            the result.
8446
            </summary>
8447
        </member>
8448
        <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodNoResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
8449
            <summary>
8450
            Helper method for generating a MetaObject which calls a
8451
            specific method on Dynamic, but uses one of the arguments for
8452
            the result.
8453
            </summary>
8454
        </member>
8455
        <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.GetRestrictions">
8456
            <summary>
8457
            Returns a Restrictions object which includes our current restrictions merged
8458
            with a restriction limiting our type
8459
            </summary>
8460
        </member>
8461
        <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
8462
            <summary>
8463
            Represents a method that constructs an object.
8464
            </summary>
8465
            <typeparam name="T">The object type to create.</typeparam>
8466
        </member>
8467
        <member name="T:Newtonsoft.Json.TypeNameHandling">
8468
            <summary>
8469
            Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8470
            </summary>
8471
        </member>
8472
        <member name="F:Newtonsoft.Json.TypeNameHandling.None">
8473
            <summary>
8474
            Do not include the .NET type name when serializing types.
8475
            </summary>
8476
        </member>
8477
        <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
8478
            <summary>
8479
            Include the .NET type name when serializing into a JSON object structure.
8480
            </summary>
8481
        </member>
8482
        <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
8483
            <summary>
8484
            Include the .NET type name when serializing into a JSON array structure.
8485
            </summary>
8486
        </member>
8487
        <member name="F:Newtonsoft.Json.TypeNameHandling.All">
8488
            <summary>
8489
            Always include the .NET type name when serializing.
8490
            </summary>
8491
        </member>
8492
        <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
8493
            <summary>
8494
            Include the .NET type name when the type of the object being serialized is not the same as its declared type.
8495
            </summary>
8496
        </member>
8497
        <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
8498
            <summary>
8499
            Converts the value to the specified type. If the value is unable to be converted, the
8500
            value is checked whether it assignable to the specified type.
8501
            </summary>
8502
            <param name="initialValue">The value to convert.</param>
8503
            <param name="culture">The culture to use when converting.</param>
8504
            <param name="targetType">The type to convert or cast the value to.</param>
8505
            <returns>
8506
            The converted type. If conversion was unsuccessful, the initial value
8507
            is returned if assignable to the target type.
8508
            </returns>
8509
        </member>
8510
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
8511
            <summary>
8512
            Gets a dictionary of the names and values of an Enum type.
8513
            </summary>
8514
            <returns></returns>
8515
        </member>
8516
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
8517
            <summary>
8518
            Gets a dictionary of the names and values of an Enum type.
8519
            </summary>
8520
            <param name="enumType">The enum type to get names and values for.</param>
8521
            <returns></returns>
8522
        </member>
8523
        <member name="T:Newtonsoft.Json.JsonToken">
8524
            <summary>
8525
            Specifies the type of Json token.
8526
            </summary>
8527
        </member>
8528
        <member name="F:Newtonsoft.Json.JsonToken.None">
8529
            <summary>
8530
            This is returned by the <see cref="T:Newtonsoft.Json.JsonReader"/> if a <see cref="M:Newtonsoft.Json.JsonReader.Read"/> method has not been called. 
8531
            </summary>
8532
        </member>
8533
        <member name="F:Newtonsoft.Json.JsonToken.StartObject">
8534
            <summary>
8535
            An object start token.
8536
            </summary>
8537
        </member>
8538
        <member name="F:Newtonsoft.Json.JsonToken.StartArray">
8539
            <summary>
8540
            An array start token.
8541
            </summary>
8542
        </member>
8543
        <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
8544
            <summary>
8545
            A constructor start token.
8546
            </summary>
8547
        </member>
8548
        <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
8549
            <summary>
8550
            An object property name.
8551
            </summary>
8552
        </member>
8553
        <member name="F:Newtonsoft.Json.JsonToken.Comment">
8554
            <summary>
8555
            A comment.
8556
            </summary>
8557
        </member>
8558
        <member name="F:Newtonsoft.Json.JsonToken.Raw">
8559
            <summary>
8560
            Raw JSON.
8561
            </summary>
8562
        </member>
8563
        <member name="F:Newtonsoft.Json.JsonToken.Integer">
8564
            <summary>
8565
            An integer.
8566
            </summary>
8567
        </member>
8568
        <member name="F:Newtonsoft.Json.JsonToken.Float">
8569
            <summary>
8570
            A float.
8571
            </summary>
8572
        </member>
8573
        <member name="F:Newtonsoft.Json.JsonToken.String">
8574
            <summary>
8575
            A string.
8576
            </summary>
8577
        </member>
8578
        <member name="F:Newtonsoft.Json.JsonToken.Boolean">
8579
            <summary>
8580
            A boolean.
8581
            </summary>
8582
        </member>
8583
        <member name="F:Newtonsoft.Json.JsonToken.Null">
8584
            <summary>
8585
            A null token.
8586
            </summary>
8587
        </member>
8588
        <member name="F:Newtonsoft.Json.JsonToken.Undefined">
8589
            <summary>
8590
            An undefined token.
8591
            </summary>
8592
        </member>
8593
        <member name="F:Newtonsoft.Json.JsonToken.EndObject">
8594
            <summary>
8595
            An object end token.
8596
            </summary>
8597
        </member>
8598
        <member name="F:Newtonsoft.Json.JsonToken.EndArray">
8599
            <summary>
8600
            An array end token.
8601
            </summary>
8602
        </member>
8603
        <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
8604
            <summary>
8605
            A constructor end token.
8606
            </summary>
8607
        </member>
8608
        <member name="F:Newtonsoft.Json.JsonToken.Date">
8609
            <summary>
8610
            A Date.
8611
            </summary>
8612
        </member>
8613
        <member name="F:Newtonsoft.Json.JsonToken.Bytes">
8614
            <summary>
8615
            Byte data.
8616
            </summary>
8617
        </member>
8618
        <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
8619
            <summary>
8620
            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
8621
            </summary>
8622
        </member>
8623
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
8624
            <summary>
8625
            Determines whether the collection is null or empty.
8626
            </summary>
8627
            <param name="collection">The collection.</param>
8628
            <returns>
8629
            	<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
8630
            </returns>
8631
        </member>
8632
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
8633
            <summary>
8634
            Adds the elements of the specified collection to the specified generic IList.
8635
            </summary>
8636
            <param name="initial">The list to add to.</param>
8637
            <param name="collection">The collection of elements to add.</param>
8638
        </member>
8639
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
8640
            <summary>
8641
            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
8642
            </summary>
8643
            <typeparam name="TSource">The type of the elements of source.</typeparam>
8644
            <param name="list">A sequence in which to locate a value.</param>
8645
            <param name="value">The object to locate in the sequence</param>
8646
            <param name="comparer">An equality comparer to compare values.</param>
8647
            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
8648
        </member>
8649
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
8650
            <summary>
8651
            Gets the type of the typed collection's items.
8652
            </summary>
8653
            <param name="type">The type.</param>
8654
            <returns>The type of the typed collection's items.</returns>
8655
        </member>
8656
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
8657
            <summary>
8658
            Gets the member's underlying type.
8659
            </summary>
8660
            <param name="member">The member.</param>
8661
            <returns>The underlying type of the member.</returns>
8662
        </member>
8663
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
8664
            <summary>
8665
            Determines whether the member is an indexed property.
8666
            </summary>
8667
            <param name="member">The member.</param>
8668
            <returns>
8669
            	<c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
8670
            </returns>
8671
        </member>
8672
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
8673
            <summary>
8674
            Determines whether the property is an indexed property.
8675
            </summary>
8676
            <param name="property">The property.</param>
8677
            <returns>
8678
            	<c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
8679
            </returns>
8680
        </member>
8681
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
8682
            <summary>
8683
            Gets the member's value on the object.
8684
            </summary>
8685
            <param name="member">The member.</param>
8686
            <param name="target">The target object.</param>
8687
            <returns>The member's value on the object.</returns>
8688
        </member>
8689
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
8690
            <summary>
8691
            Sets the member's value on the target object.
8692
            </summary>
8693
            <param name="member">The member.</param>
8694
            <param name="target">The target.</param>
8695
            <param name="value">The value.</param>
8696
        </member>
8697
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
8698
            <summary>
8699
            Determines whether the specified MemberInfo can be read.
8700
            </summary>
8701
            <param name="member">The MemberInfo to determine whether can be read.</param>
8702
            /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
8703
            <returns>
8704
            	<c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
8705
            </returns>
8706
        </member>
8707
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
8708
            <summary>
8709
            Determines whether the specified MemberInfo can be set.
8710
            </summary>
8711
            <param name="member">The MemberInfo to determine whether can be set.</param>
8712
            <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
8713
            <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
8714
            <returns>
8715
            	<c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
8716
            </returns>
8717
        </member>
8718
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
8719
            <summary>
8720
            Determines whether the string is all white space. Empty string will return false.
8721
            </summary>
8722
            <param name="s">The string to test whether it is all white space.</param>
8723
            <returns>
8724
            	<c>true</c> if the string is all white space; otherwise, <c>false</c>.
8725
            </returns>
8726
        </member>
8727
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
8728
            <summary>
8729
            Nulls an empty string.
8730
            </summary>
8731
            <param name="s">The string.</param>
8732
            <returns>Null if the string was null, otherwise the string unchanged.</returns>
8733
        </member>
8734
        <member name="T:Newtonsoft.Json.WriteState">
8735
            <summary>
8736
            Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
8737
            </summary>
8738
        </member>
8739
        <member name="F:Newtonsoft.Json.WriteState.Error">
8740
            <summary>
8741
            An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
8742
            You may call the <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method to put the <see cref="T:Newtonsoft.Json.JsonWriter"/> in the <c>Closed</c> state.
8743
            Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown. 
8744
            </summary>
8745
        </member>
8746
        <member name="F:Newtonsoft.Json.WriteState.Closed">
8747
            <summary>
8748
            The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called. 
8749
            </summary>
8750
        </member>
8751
        <member name="F:Newtonsoft.Json.WriteState.Object">
8752
            <summary>
8753
            An object is being written. 
8754
            </summary>
8755
        </member>
8756
        <member name="F:Newtonsoft.Json.WriteState.Array">
8757
            <summary>
8758
            A array is being written.
8759
            </summary>
8760
        </member>
8761
        <member name="F:Newtonsoft.Json.WriteState.Constructor">
8762
            <summary>
8763
            A constructor is being written.
8764
            </summary>
8765
        </member>
8766
        <member name="F:Newtonsoft.Json.WriteState.Property">
8767
            <summary>
8768
            A property is being written.
8769
            </summary>
8770
        </member>
8771
        <member name="F:Newtonsoft.Json.WriteState.Start">
8772
            <summary>
8773
            A write method has not been called.
8774
            </summary>
8775
        </member>
8776
    </members>
8777
</doc>