Statistics
| Branch: | Revision:

root / trunk / packages / Newtonsoft.Json.4.5.11 / lib / net40 / Newtonsoft.Json.xml @ 99882980

History | View | Annotate | Download (422.2 kB)

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:Byte[]"/>.
43
            </summary>
44
            <returns>A <see cref="T: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.QuoteChar">
120
            <summary>
121
            Gets the quotation mark character used to enclose the value of a string.
122
            </summary>
123
        </member>
124
        <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
125
            <summary>
126
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when reading JSON.
127
            </summary>
128
        </member>
129
        <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
130
            <summary>
131
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
132
            </summary>
133
        </member>
134
        <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
135
            <summary>
136
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
137
            </summary>
138
        </member>
139
        <member name="P:Newtonsoft.Json.JsonReader.TokenType">
140
            <summary>
141
            Gets the type of the current JSON token. 
142
            </summary>
143
        </member>
144
        <member name="P:Newtonsoft.Json.JsonReader.Value">
145
            <summary>
146
            Gets the text value of the current JSON token.
147
            </summary>
148
        </member>
149
        <member name="P:Newtonsoft.Json.JsonReader.ValueType">
150
            <summary>
151
            Gets The Common Language Runtime (CLR) type for the current JSON token.
152
            </summary>
153
        </member>
154
        <member name="P:Newtonsoft.Json.JsonReader.Depth">
155
            <summary>
156
            Gets the depth of the current token in the JSON document.
157
            </summary>
158
            <value>The depth of the current token in the JSON document.</value>
159
        </member>
160
        <member name="P:Newtonsoft.Json.JsonReader.Path">
161
            <summary>
162
            Gets the path of the current JSON token. 
163
            </summary>
164
        </member>
165
        <member name="P:Newtonsoft.Json.JsonReader.Culture">
166
            <summary>
167
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
168
            </summary>
169
        </member>
170
        <member name="T:Newtonsoft.Json.JsonReader.State">
171
            <summary>
172
            Specifies the state of the reader.
173
            </summary>
174
        </member>
175
        <member name="F:Newtonsoft.Json.JsonReader.State.Start">
176
            <summary>
177
            The Read method has not been called.
178
            </summary>
179
        </member>
180
        <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
181
            <summary>
182
            The end of the file has been reached successfully.
183
            </summary>
184
        </member>
185
        <member name="F:Newtonsoft.Json.JsonReader.State.Property">
186
            <summary>
187
            Reader is at a property.
188
            </summary>
189
        </member>
190
        <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
191
            <summary>
192
            Reader is at the start of an object.
193
            </summary>
194
        </member>
195
        <member name="F:Newtonsoft.Json.JsonReader.State.Object">
196
            <summary>
197
            Reader is in an object.
198
            </summary>
199
        </member>
200
        <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
201
            <summary>
202
            Reader is at the start of an array.
203
            </summary>
204
        </member>
205
        <member name="F:Newtonsoft.Json.JsonReader.State.Array">
206
            <summary>
207
            Reader is in an array.
208
            </summary>
209
        </member>
210
        <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
211
            <summary>
212
            The Close method has been called.
213
            </summary>
214
        </member>
215
        <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
216
            <summary>
217
            Reader has just read a value.
218
            </summary>
219
        </member>
220
        <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
221
            <summary>
222
            Reader is at the start of a constructor.
223
            </summary>
224
        </member>
225
        <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
226
            <summary>
227
            Reader in a constructor.
228
            </summary>
229
        </member>
230
        <member name="F:Newtonsoft.Json.JsonReader.State.Error">
231
            <summary>
232
            An error occurred that prevents the read operation from continuing.
233
            </summary>
234
        </member>
235
        <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
236
            <summary>
237
            The end of the file has been reached successfully.
238
            </summary>
239
        </member>
240
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
241
            <summary>
242
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
243
            </summary>
244
            <param name="stream">The stream.</param>
245
        </member>
246
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
247
            <summary>
248
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
249
            </summary>
250
            <param name="reader">The reader.</param>
251
        </member>
252
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
253
            <summary>
254
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
255
            </summary>
256
            <param name="stream">The stream.</param>
257
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
258
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
259
        </member>
260
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
261
            <summary>
262
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
263
            </summary>
264
            <param name="reader">The reader.</param>
265
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
266
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
267
        </member>
268
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
269
            <summary>
270
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
271
            </summary>
272
            <returns>
273
            A <see cref="T: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.
274
            </returns>
275
        </member>
276
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal">
277
            <summary>
278
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
279
            </summary>
280
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
281
        </member>
282
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
283
            <summary>
284
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
285
            </summary>
286
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
287
        </member>
288
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsString">
289
            <summary>
290
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
291
            </summary>
292
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
293
        </member>
294
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime">
295
            <summary>
296
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
297
            </summary>
298
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
299
        </member>
300
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset">
301
            <summary>
302
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
303
            </summary>
304
            <returns>
305
            A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.
306
            </returns>
307
        </member>
308
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
309
            <summary>
310
            Reads the next JSON token from the stream.
311
            </summary>
312
            <returns>
313
            true if the next token was read successfully; false if there are no more tokens to read.
314
            </returns>
315
        </member>
316
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
317
            <summary>
318
            Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed.
319
            </summary>
320
        </member>
321
        <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
322
            <summary>
323
            Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.
324
            </summary>
325
            <value>
326
                    <c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
327
            </value>
328
        </member>
329
        <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
330
            <summary>
331
            Gets or sets a value indicating whether the root object will be read as a JSON array.
332
            </summary>
333
            <value>
334
                    <c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
335
            </value>
336
        </member>
337
        <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
338
            <summary>
339
            Gets or sets the <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.
340
            </summary>
341
            <value>The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
342
        </member>
343
        <member name="T:Newtonsoft.Json.Bson.BsonWriter">
344
            <summary>
345
            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
346
            </summary>
347
        </member>
348
        <member name="T:Newtonsoft.Json.JsonWriter">
349
            <summary>
350
            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
351
            </summary>
352
        </member>
353
        <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
354
            <summary>
355
            Creates an instance of the <c>JsonWriter</c> class. 
356
            </summary>
357
        </member>
358
        <member name="M:Newtonsoft.Json.JsonWriter.Flush">
359
            <summary>
360
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
361
            </summary>
362
        </member>
363
        <member name="M:Newtonsoft.Json.JsonWriter.Close">
364
            <summary>
365
            Closes this stream and the underlying stream.
366
            </summary>
367
        </member>
368
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
369
            <summary>
370
            Writes the beginning of a Json object.
371
            </summary>
372
        </member>
373
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
374
            <summary>
375
            Writes the end of a Json object.
376
            </summary>
377
        </member>
378
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
379
            <summary>
380
            Writes the beginning of a Json array.
381
            </summary>
382
        </member>
383
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
384
            <summary>
385
            Writes the end of an array.
386
            </summary>
387
        </member>
388
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
389
            <summary>
390
            Writes the start of a constructor with the given name.
391
            </summary>
392
            <param name="name">The name of the constructor.</param>
393
        </member>
394
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
395
            <summary>
396
            Writes the end constructor.
397
            </summary>
398
        </member>
399
        <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
400
            <summary>
401
            Writes the property name of a name/value pair on a Json object.
402
            </summary>
403
            <param name="name">The name of the property.</param>
404
        </member>
405
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
406
            <summary>
407
            Writes the end of the current Json object or array.
408
            </summary>
409
        </member>
410
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
411
            <summary>
412
            Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
413
            </summary>
414
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
415
        </member>
416
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
417
            <summary>
418
            Writes the specified end token.
419
            </summary>
420
            <param name="token">The end token to write.</param>
421
        </member>
422
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
423
            <summary>
424
            Writes indent characters.
425
            </summary>
426
        </member>
427
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
428
            <summary>
429
            Writes the JSON value delimiter.
430
            </summary>
431
        </member>
432
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
433
            <summary>
434
            Writes an indent space.
435
            </summary>
436
        </member>
437
        <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
438
            <summary>
439
            Writes a null value.
440
            </summary>
441
        </member>
442
        <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
443
            <summary>
444
            Writes an undefined value.
445
            </summary>
446
        </member>
447
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
448
            <summary>
449
            Writes raw JSON without changing the writer's state.
450
            </summary>
451
            <param name="json">The raw JSON to write.</param>
452
        </member>
453
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
454
            <summary>
455
            Writes raw JSON where a value is expected and updates the writer's state.
456
            </summary>
457
            <param name="json">The raw JSON to write.</param>
458
        </member>
459
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
460
            <summary>
461
            Writes a <see cref="T:System.String"/> value.
462
            </summary>
463
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
464
        </member>
465
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
466
            <summary>
467
            Writes a <see cref="T:System.Int32"/> value.
468
            </summary>
469
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
470
        </member>
471
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
472
            <summary>
473
            Writes a <see cref="T:System.UInt32"/> value.
474
            </summary>
475
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
476
        </member>
477
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
478
            <summary>
479
            Writes a <see cref="T:System.Int64"/> value.
480
            </summary>
481
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
482
        </member>
483
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
484
            <summary>
485
            Writes a <see cref="T:System.UInt64"/> value.
486
            </summary>
487
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
488
        </member>
489
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
490
            <summary>
491
            Writes a <see cref="T:System.Single"/> value.
492
            </summary>
493
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
494
        </member>
495
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
496
            <summary>
497
            Writes a <see cref="T:System.Double"/> value.
498
            </summary>
499
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
500
        </member>
501
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
502
            <summary>
503
            Writes a <see cref="T:System.Boolean"/> value.
504
            </summary>
505
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
506
        </member>
507
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
508
            <summary>
509
            Writes a <see cref="T:System.Int16"/> value.
510
            </summary>
511
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
512
        </member>
513
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
514
            <summary>
515
            Writes a <see cref="T:System.UInt16"/> value.
516
            </summary>
517
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
518
        </member>
519
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
520
            <summary>
521
            Writes a <see cref="T:System.Char"/> value.
522
            </summary>
523
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
524
        </member>
525
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
526
            <summary>
527
            Writes a <see cref="T:System.Byte"/> value.
528
            </summary>
529
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
530
        </member>
531
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
532
            <summary>
533
            Writes a <see cref="T:System.SByte"/> value.
534
            </summary>
535
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
536
        </member>
537
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
538
            <summary>
539
            Writes a <see cref="T:System.Decimal"/> value.
540
            </summary>
541
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
542
        </member>
543
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
544
            <summary>
545
            Writes a <see cref="T:System.DateTime"/> value.
546
            </summary>
547
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
548
        </member>
549
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
550
            <summary>
551
            Writes a <see cref="T:System.DateTimeOffset"/> value.
552
            </summary>
553
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
554
        </member>
555
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
556
            <summary>
557
            Writes a <see cref="T:System.Guid"/> value.
558
            </summary>
559
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
560
        </member>
561
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
562
            <summary>
563
            Writes a <see cref="T:System.TimeSpan"/> value.
564
            </summary>
565
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
566
        </member>
567
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
568
            <summary>
569
            Writes a <see cref="T:System.Nullable`1"/> value.
570
            </summary>
571
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
572
        </member>
573
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
574
            <summary>
575
            Writes a <see cref="T:System.Nullable`1"/> value.
576
            </summary>
577
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
578
        </member>
579
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
580
            <summary>
581
            Writes a <see cref="T:System.Nullable`1"/> value.
582
            </summary>
583
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
584
        </member>
585
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
586
            <summary>
587
            Writes a <see cref="T:System.Nullable`1"/> value.
588
            </summary>
589
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
590
        </member>
591
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
592
            <summary>
593
            Writes a <see cref="T:System.Nullable`1"/> value.
594
            </summary>
595
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
596
        </member>
597
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
598
            <summary>
599
            Writes a <see cref="T:System.Nullable`1"/> value.
600
            </summary>
601
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
602
        </member>
603
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
604
            <summary>
605
            Writes a <see cref="T:System.Nullable`1"/> value.
606
            </summary>
607
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
608
        </member>
609
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
610
            <summary>
611
            Writes a <see cref="T:System.Nullable`1"/> value.
612
            </summary>
613
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
614
        </member>
615
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
616
            <summary>
617
            Writes a <see cref="T:System.Nullable`1"/> value.
618
            </summary>
619
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
620
        </member>
621
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
622
            <summary>
623
            Writes a <see cref="T:System.Nullable`1"/> value.
624
            </summary>
625
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
626
        </member>
627
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
628
            <summary>
629
            Writes a <see cref="T:System.Nullable`1"/> value.
630
            </summary>
631
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
632
        </member>
633
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
634
            <summary>
635
            Writes a <see cref="T:System.Nullable`1"/> value.
636
            </summary>
637
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
638
        </member>
639
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
640
            <summary>
641
            Writes a <see cref="T:System.Nullable`1"/> value.
642
            </summary>
643
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
644
        </member>
645
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
646
            <summary>
647
            Writes a <see cref="T:System.Nullable`1"/> value.
648
            </summary>
649
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
650
        </member>
651
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">
652
            <summary>
653
            Writes a <see cref="T:System.Nullable`1"/> value.
654
            </summary>
655
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
656
        </member>
657
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
658
            <summary>
659
            Writes a <see cref="T:System.Nullable`1"/> value.
660
            </summary>
661
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
662
        </member>
663
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
664
            <summary>
665
            Writes a <see cref="T:System.Nullable`1"/> value.
666
            </summary>
667
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
668
        </member>
669
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
670
            <summary>
671
            Writes a <see cref="T:Byte[]"/> value.
672
            </summary>
673
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
674
        </member>
675
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
676
            <summary>
677
            Writes a <see cref="T:System.Uri"/> value.
678
            </summary>
679
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
680
        </member>
681
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
682
            <summary>
683
            Writes a <see cref="T:System.Object"/> value.
684
            An error will raised if the value cannot be written as a single JSON token.
685
            </summary>
686
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
687
        </member>
688
        <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
689
            <summary>
690
            Writes out a comment <code>/*...*/</code> containing the specified text. 
691
            </summary>
692
            <param name="text">Text to place inside the comment.</param>
693
        </member>
694
        <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
695
            <summary>
696
            Writes out the given white space.
697
            </summary>
698
            <param name="ws">The string of white space characters.</param>
699
        </member>
700
        <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
701
            <summary>
702
            Gets or sets a value indicating whether the underlying stream or
703
            <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed.
704
            </summary>
705
            <value>
706
            true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
707
            the writer is closed; otherwise false. The default is true.
708
            </value>
709
        </member>
710
        <member name="P:Newtonsoft.Json.JsonWriter.Top">
711
            <summary>
712
            Gets the top.
713
            </summary>
714
            <value>The top.</value>
715
        </member>
716
        <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
717
            <summary>
718
            Gets the state of the writer.
719
            </summary>
720
        </member>
721
        <member name="P:Newtonsoft.Json.JsonWriter.Path">
722
            <summary>
723
            Gets the path of the writer. 
724
            </summary>
725
        </member>
726
        <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
727
            <summary>
728
            Indicates how JSON text output is formatted.
729
            </summary>
730
        </member>
731
        <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
732
            <summary>
733
            Get or set how dates are written to JSON text.
734
            </summary>
735
        </member>
736
        <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
737
            <summary>
738
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when writing JSON text.
739
            </summary>
740
        </member>
741
        <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
742
            <summary>
743
            Get or set how strings are escaped when writing JSON text.
744
            </summary>
745
        </member>
746
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
747
            <summary>
748
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
749
            </summary>
750
            <param name="stream">The stream.</param>
751
        </member>
752
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
753
            <summary>
754
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
755
            </summary>
756
            <param name="writer">The writer.</param>
757
        </member>
758
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
759
            <summary>
760
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
761
            </summary>
762
        </member>
763
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
764
            <summary>
765
            Writes the end.
766
            </summary>
767
            <param name="token">The token.</param>
768
        </member>
769
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
770
            <summary>
771
            Writes out a comment <code>/*...*/</code> containing the specified text.
772
            </summary>
773
            <param name="text">Text to place inside the comment.</param>
774
        </member>
775
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
776
            <summary>
777
            Writes the start of a constructor with the given name.
778
            </summary>
779
            <param name="name">The name of the constructor.</param>
780
        </member>
781
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
782
            <summary>
783
            Writes raw JSON.
784
            </summary>
785
            <param name="json">The raw JSON to write.</param>
786
        </member>
787
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
788
            <summary>
789
            Writes raw JSON where a value is expected and updates the writer's state.
790
            </summary>
791
            <param name="json">The raw JSON to write.</param>
792
        </member>
793
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
794
            <summary>
795
            Writes the beginning of a Json array.
796
            </summary>
797
        </member>
798
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
799
            <summary>
800
            Writes the beginning of a Json object.
801
            </summary>
802
        </member>
803
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
804
            <summary>
805
            Writes the property name of a name/value pair on a Json object.
806
            </summary>
807
            <param name="name">The name of the property.</param>
808
        </member>
809
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
810
            <summary>
811
            Closes this stream and the underlying stream.
812
            </summary>
813
        </member>
814
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
815
            <summary>
816
            Writes a null value.
817
            </summary>
818
        </member>
819
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
820
            <summary>
821
            Writes an undefined value.
822
            </summary>
823
        </member>
824
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
825
            <summary>
826
            Writes a <see cref="T:System.String"/> value.
827
            </summary>
828
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
829
        </member>
830
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
831
            <summary>
832
            Writes a <see cref="T:System.Int32"/> value.
833
            </summary>
834
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
835
        </member>
836
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
837
            <summary>
838
            Writes a <see cref="T:System.UInt32"/> value.
839
            </summary>
840
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
841
        </member>
842
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
843
            <summary>
844
            Writes a <see cref="T:System.Int64"/> value.
845
            </summary>
846
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
847
        </member>
848
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
849
            <summary>
850
            Writes a <see cref="T:System.UInt64"/> value.
851
            </summary>
852
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
853
        </member>
854
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
855
            <summary>
856
            Writes a <see cref="T:System.Single"/> value.
857
            </summary>
858
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
859
        </member>
860
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
861
            <summary>
862
            Writes a <see cref="T:System.Double"/> value.
863
            </summary>
864
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
865
        </member>
866
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
867
            <summary>
868
            Writes a <see cref="T:System.Boolean"/> value.
869
            </summary>
870
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
871
        </member>
872
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
873
            <summary>
874
            Writes a <see cref="T:System.Int16"/> value.
875
            </summary>
876
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
877
        </member>
878
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
879
            <summary>
880
            Writes a <see cref="T:System.UInt16"/> value.
881
            </summary>
882
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
883
        </member>
884
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
885
            <summary>
886
            Writes a <see cref="T:System.Char"/> value.
887
            </summary>
888
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
889
        </member>
890
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
891
            <summary>
892
            Writes a <see cref="T:System.Byte"/> value.
893
            </summary>
894
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
895
        </member>
896
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
897
            <summary>
898
            Writes a <see cref="T:System.SByte"/> value.
899
            </summary>
900
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
901
        </member>
902
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
903
            <summary>
904
            Writes a <see cref="T:System.Decimal"/> value.
905
            </summary>
906
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
907
        </member>
908
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
909
            <summary>
910
            Writes a <see cref="T:System.DateTime"/> value.
911
            </summary>
912
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
913
        </member>
914
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)">
915
            <summary>
916
            Writes a <see cref="T:System.DateTimeOffset"/> value.
917
            </summary>
918
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
919
        </member>
920
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
921
            <summary>
922
            Writes a <see cref="T:Byte[]"/> value.
923
            </summary>
924
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
925
        </member>
926
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
927
            <summary>
928
            Writes a <see cref="T:System.Guid"/> value.
929
            </summary>
930
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
931
        </member>
932
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
933
            <summary>
934
            Writes a <see cref="T:System.TimeSpan"/> value.
935
            </summary>
936
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
937
        </member>
938
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
939
            <summary>
940
            Writes a <see cref="T:System.Uri"/> value.
941
            </summary>
942
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
943
        </member>
944
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
945
            <summary>
946
            Writes a <see cref="T:Byte[]"/> value that represents a BSON object id.
947
            </summary>
948
            <param name="value">The Object ID value to write.</param>
949
        </member>
950
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
951
            <summary>
952
            Writes a BSON regex.
953
            </summary>
954
            <param name="pattern">The regex pattern.</param>
955
            <param name="options">The regex options.</param>
956
        </member>
957
        <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
958
            <summary>
959
            Gets or sets the <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.
960
            When set to <see cref="F:System.DateTimeKind.Unspecified"/> no conversion will occur.
961
            </summary>
962
            <value>The <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
963
        </member>
964
        <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
965
            <summary>
966
            Represents a BSON Oid (object id).
967
            </summary>
968
        </member>
969
        <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">
970
            <summary>
971
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.
972
            </summary>
973
            <param name="value">The Oid value.</param>
974
        </member>
975
        <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
976
            <summary>
977
            Gets or sets the value of the Oid.
978
            </summary>
979
            <value>The value of the Oid.</value>
980
        </member>
981
        <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
982
            <summary>
983
            Converts a binary value to and from a base 64 string value.
984
            </summary>
985
        </member>
986
        <member name="T:Newtonsoft.Json.JsonConverter">
987
            <summary>
988
            Converts an object to and from JSON.
989
            </summary>
990
        </member>
991
        <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
992
            <summary>
993
            Writes the JSON representation of the object.
994
            </summary>
995
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
996
            <param name="value">The value.</param>
997
            <param name="serializer">The calling serializer.</param>
998
        </member>
999
        <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1000
            <summary>
1001
            Reads the JSON representation of the object.
1002
            </summary>
1003
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1004
            <param name="objectType">Type of the object.</param>
1005
            <param name="existingValue">The existing value of object being read.</param>
1006
            <param name="serializer">The calling serializer.</param>
1007
            <returns>The object value.</returns>
1008
        </member>
1009
        <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
1010
            <summary>
1011
            Determines whether this instance can convert the specified object type.
1012
            </summary>
1013
            <param name="objectType">Type of the object.</param>
1014
            <returns>
1015
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1016
            </returns>
1017
        </member>
1018
        <member name="M:Newtonsoft.Json.JsonConverter.GetSchema">
1019
            <summary>
1020
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.
1021
            </summary>
1022
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns>
1023
        </member>
1024
        <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
1025
            <summary>
1026
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
1027
            </summary>
1028
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
1029
        </member>
1030
        <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
1031
            <summary>
1032
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1033
            </summary>
1034
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
1035
        </member>
1036
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1037
            <summary>
1038
            Writes the JSON representation of the object.
1039
            </summary>
1040
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1041
            <param name="value">The value.</param>
1042
            <param name="serializer">The calling serializer.</param>
1043
        </member>
1044
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1045
            <summary>
1046
            Reads the JSON representation of the object.
1047
            </summary>
1048
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1049
            <param name="objectType">Type of the object.</param>
1050
            <param name="existingValue">The existing value of object being read.</param>
1051
            <param name="serializer">The calling serializer.</param>
1052
            <returns>The object value.</returns>
1053
        </member>
1054
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
1055
            <summary>
1056
            Determines whether this instance can convert the specified object type.
1057
            </summary>
1058
            <param name="objectType">Type of the object.</param>
1059
            <returns>
1060
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1061
            </returns>
1062
        </member>
1063
        <member name="T:Newtonsoft.Json.Converters.DataSetConverter">
1064
            <summary>
1065
            Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.
1066
            </summary>
1067
        </member>
1068
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1069
            <summary>
1070
            Writes the JSON representation of the object.
1071
            </summary>
1072
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1073
            <param name="value">The value.</param>
1074
            <param name="serializer">The calling serializer.</param>
1075
        </member>
1076
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1077
            <summary>
1078
            Reads the JSON representation of the object.
1079
            </summary>
1080
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1081
            <param name="objectType">Type of the object.</param>
1082
            <param name="existingValue">The existing value of object being read.</param>
1083
            <param name="serializer">The calling serializer.</param>
1084
            <returns>The object value.</returns>
1085
        </member>
1086
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
1087
            <summary>
1088
            Determines whether this instance can convert the specified value type.
1089
            </summary>
1090
            <param name="valueType">Type of the value.</param>
1091
            <returns>
1092
                    <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1093
            </returns>
1094
        </member>
1095
        <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
1096
            <summary>
1097
            Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
1098
            </summary>
1099
        </member>
1100
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1101
            <summary>
1102
            Writes the JSON representation of the object.
1103
            </summary>
1104
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1105
            <param name="value">The value.</param>
1106
            <param name="serializer">The calling serializer.</param>
1107
        </member>
1108
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1109
            <summary>
1110
            Reads the JSON representation of the object.
1111
            </summary>
1112
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1113
            <param name="objectType">Type of the object.</param>
1114
            <param name="existingValue">The existing value of object being read.</param>
1115
            <param name="serializer">The calling serializer.</param>
1116
            <returns>The object value.</returns>
1117
        </member>
1118
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
1119
            <summary>
1120
            Determines whether this instance can convert the specified value type.
1121
            </summary>
1122
            <param name="valueType">Type of the value.</param>
1123
            <returns>
1124
                    <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1125
            </returns>
1126
        </member>
1127
        <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
1128
            <summary>
1129
            Create a custom object
1130
            </summary>
1131
            <typeparam name="T">The object type to convert.</typeparam>
1132
        </member>
1133
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1134
            <summary>
1135
            Writes the JSON representation of the object.
1136
            </summary>
1137
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1138
            <param name="value">The value.</param>
1139
            <param name="serializer">The calling serializer.</param>
1140
        </member>
1141
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1142
            <summary>
1143
            Reads the JSON representation of the object.
1144
            </summary>
1145
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1146
            <param name="objectType">Type of the object.</param>
1147
            <param name="existingValue">The existing value of object being read.</param>
1148
            <param name="serializer">The calling serializer.</param>
1149
            <returns>The object value.</returns>
1150
        </member>
1151
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
1152
            <summary>
1153
            Creates an object which will then be populated by the serializer.
1154
            </summary>
1155
            <param name="objectType">Type of the object.</param>
1156
            <returns>The created object.</returns>
1157
        </member>
1158
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
1159
            <summary>
1160
            Determines whether this instance can convert the specified object type.
1161
            </summary>
1162
            <param name="objectType">Type of the object.</param>
1163
            <returns>
1164
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1165
            </returns>
1166
        </member>
1167
        <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
1168
            <summary>
1169
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1170
            </summary>
1171
            <value>
1172
                    <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
1173
            </value>
1174
        </member>
1175
        <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
1176
            <summary>
1177
            Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
1178
            </summary>
1179
        </member>
1180
        <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">
1181
            <summary>
1182
            Determines whether this instance can convert the specified object type.
1183
            </summary>
1184
            <param name="objectType">Type of the object.</param>
1185
            <returns>
1186
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1187
            </returns>
1188
        </member>
1189
        <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter">
1190
            <summary>
1191
            Converts an Entity Framework EntityKey to and from JSON.
1192
            </summary>
1193
        </member>
1194
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1195
            <summary>
1196
            Writes the JSON representation of the object.
1197
            </summary>
1198
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1199
            <param name="value">The value.</param>
1200
            <param name="serializer">The calling serializer.</param>
1201
        </member>
1202
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1203
            <summary>
1204
            Reads the JSON representation of the object.
1205
            </summary>
1206
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1207
            <param name="objectType">Type of the object.</param>
1208
            <param name="existingValue">The existing value of object being read.</param>
1209
            <param name="serializer">The calling serializer.</param>
1210
            <returns>The object value.</returns>
1211
        </member>
1212
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)">
1213
            <summary>
1214
            Determines whether this instance can convert the specified object type.
1215
            </summary>
1216
            <param name="objectType">Type of the object.</param>
1217
            <returns>
1218
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1219
            </returns>
1220
        </member>
1221
        <member name="T:Newtonsoft.Json.Converters.ExpandoObjectConverter">
1222
            <summary>
1223
            Converts an ExpandoObject to and from JSON.
1224
            </summary>
1225
        </member>
1226
        <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1227
            <summary>
1228
            Writes the JSON representation of the object.
1229
            </summary>
1230
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1231
            <param name="value">The value.</param>
1232
            <param name="serializer">The calling serializer.</param>
1233
        </member>
1234
        <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1235
            <summary>
1236
            Reads the JSON representation of the object.
1237
            </summary>
1238
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1239
            <param name="objectType">Type of the object.</param>
1240
            <param name="existingValue">The existing value of object being read.</param>
1241
            <param name="serializer">The calling serializer.</param>
1242
            <returns>The object value.</returns>
1243
        </member>
1244
        <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)">
1245
            <summary>
1246
            Determines whether this instance can convert the specified object type.
1247
            </summary>
1248
            <param name="objectType">Type of the object.</param>
1249
            <returns>
1250
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1251
            </returns>
1252
        </member>
1253
        <member name="P:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanWrite">
1254
            <summary>
1255
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1256
            </summary>
1257
            <value>
1258
                    <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
1259
            </value>
1260
        </member>
1261
        <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
1262
            <summary>
1263
            Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
1264
            </summary>
1265
        </member>
1266
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1267
            <summary>
1268
            Writes the JSON representation of the object.
1269
            </summary>
1270
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1271
            <param name="value">The value.</param>
1272
            <param name="serializer">The calling serializer.</param>
1273
        </member>
1274
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1275
            <summary>
1276
            Reads the JSON representation of the object.
1277
            </summary>
1278
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1279
            <param name="objectType">Type of the object.</param>
1280
            <param name="existingValue">The existing value of object being read.</param>
1281
            <param name="serializer">The calling serializer.</param>
1282
            <returns>The object value.</returns>
1283
        </member>
1284
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
1285
            <summary>
1286
            Determines whether this instance can convert the specified object type.
1287
            </summary>
1288
            <param name="objectType">Type of the object.</param>
1289
            <returns>
1290
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1291
            </returns>
1292
        </member>
1293
        <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
1294
            <summary>
1295
            Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
1296
            </summary>
1297
        </member>
1298
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1299
            <summary>
1300
            Writes the JSON representation of the object.
1301
            </summary>
1302
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1303
            <param name="value">The value.</param>
1304
            <param name="serializer">The calling serializer.</param>
1305
        </member>
1306
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1307
            <summary>
1308
            Reads the JSON representation of the object.
1309
            </summary>
1310
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1311
            <param name="objectType">Type of the object.</param>
1312
            <param name="existingValue">The existing value of object being read.</param>
1313
            <param name="serializer">The calling serializer.</param>
1314
            <returns>The object value.</returns>
1315
        </member>
1316
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
1317
            <summary>
1318
            Determines whether this instance can convert the specified object type.
1319
            </summary>
1320
            <param name="objectType">Type of the object.</param>
1321
            <returns>
1322
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1323
            </returns>
1324
        </member>
1325
        <member name="T:Newtonsoft.Json.Converters.RegexConverter">
1326
            <summary>
1327
            Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
1328
            </summary>
1329
        </member>
1330
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1331
            <summary>
1332
            Writes the JSON representation of the object.
1333
            </summary>
1334
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1335
            <param name="value">The value.</param>
1336
            <param name="serializer">The calling serializer.</param>
1337
        </member>
1338
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1339
            <summary>
1340
            Reads the JSON representation of the object.
1341
            </summary>
1342
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1343
            <param name="objectType">Type of the object.</param>
1344
            <param name="existingValue">The existing value of object being read.</param>
1345
            <param name="serializer">The calling serializer.</param>
1346
            <returns>The object value.</returns>
1347
        </member>
1348
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
1349
            <summary>
1350
            Determines whether this instance can convert the specified object type.
1351
            </summary>
1352
            <param name="objectType">Type of the object.</param>
1353
            <returns>
1354
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1355
            </returns>
1356
        </member>
1357
        <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
1358
            <summary>
1359
            Converts an <see cref="T:System.Enum"/> to and from its name string value.
1360
            </summary>
1361
        </member>
1362
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1363
            <summary>
1364
            Writes the JSON representation of the object.
1365
            </summary>
1366
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1367
            <param name="value">The value.</param>
1368
            <param name="serializer">The calling serializer.</param>
1369
        </member>
1370
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1371
            <summary>
1372
            Reads the JSON representation of the object.
1373
            </summary>
1374
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1375
            <param name="objectType">Type of the object.</param>
1376
            <param name="existingValue">The existing value of object being read.</param>
1377
            <param name="serializer">The calling serializer.</param>
1378
            <returns>The object value.</returns>
1379
        </member>
1380
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.GetEnumNameMap(System.Type)">
1381
            <summary>
1382
            A cached representation of the Enum string representation to respect per Enum field name.
1383
            </summary>
1384
            <param name="t">The type of the Enum.</param>
1385
            <returns>A map of enum field name to either the field name, or the configured enum member name (<see cref="T:System.Runtime.Serialization.EnumMemberAttribute"/>).</returns>
1386
        </member>
1387
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
1388
            <summary>
1389
            Determines whether this instance can convert the specified object type.
1390
            </summary>
1391
            <param name="objectType">Type of the object.</param>
1392
            <returns>
1393
            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1394
            </returns>
1395
        </member>
1396
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
1397
            <summary>
1398
            Gets or sets a value indicating whether the written enum text should be camel case.
1399
            </summary>
1400
            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
1401
        </member>
1402
        <member name="T:Newtonsoft.Json.ConstructorHandling">
1403
            <summary>
1404
            Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1405
            </summary>
1406
        </member>
1407
        <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
1408
            <summary>
1409
            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.
1410
            </summary>
1411
        </member>
1412
        <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
1413
            <summary>
1414
            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.
1415
            </summary>
1416
        </member>
1417
        <member name="T:Newtonsoft.Json.Converters.VersionConverter">
1418
            <summary>
1419
            Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4").
1420
            </summary>
1421
        </member>
1422
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1423
            <summary>
1424
            Writes the JSON representation of the object.
1425
            </summary>
1426
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1427
            <param name="value">The value.</param>
1428
            <param name="serializer">The calling serializer.</param>
1429
        </member>
1430
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1431
            <summary>
1432
            Reads the JSON representation of the object.
1433
            </summary>
1434
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1435
            <param name="objectType">Type of the object.</param>
1436
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
1437
            <param name="serializer">The calling serializer.</param>
1438
            <returns>The object value.</returns>
1439
        </member>
1440
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
1441
            <summary>
1442
            Determines whether this instance can convert the specified object type.
1443
            </summary>
1444
            <param name="objectType">Type of the object.</param>
1445
            <returns>
1446
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1447
            </returns>
1448
        </member>
1449
        <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
1450
            <summary>
1451
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
1452
            </summary>
1453
        </member>
1454
        <member name="T:Newtonsoft.Json.JsonContainerAttribute">
1455
            <summary>
1456
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
1457
            </summary>
1458
        </member>
1459
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
1460
            <summary>
1461
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
1462
            </summary>
1463
        </member>
1464
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
1465
            <summary>
1466
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
1467
            </summary>
1468
            <param name="id">The container Id.</param>
1469
        </member>
1470
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
1471
            <summary>
1472
            Gets or sets the id.
1473
            </summary>
1474
            <value>The id.</value>
1475
        </member>
1476
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
1477
            <summary>
1478
            Gets or sets the title.
1479
            </summary>
1480
            <value>The title.</value>
1481
        </member>
1482
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
1483
            <summary>
1484
            Gets or sets the description.
1485
            </summary>
1486
            <value>The description.</value>
1487
        </member>
1488
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
1489
            <summary>
1490
            Gets the collection's items converter.
1491
            </summary>
1492
            <value>The collection's items converter.</value>
1493
        </member>
1494
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
1495
            <summary>
1496
            Gets or sets a value that indicates whether to preserve object references.
1497
            </summary>
1498
            <value>
1499
                    <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
1500
            </value>
1501
        </member>
1502
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
1503
            <summary>
1504
            Gets or sets a value that indicates whether to preserve collection's items references.
1505
            </summary>
1506
            <value>
1507
                    <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
1508
            </value>
1509
        </member>
1510
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
1511
            <summary>
1512
            Gets or sets the reference loop handling used when serializing the collection's items.
1513
            </summary>
1514
            <value>The reference loop handling.</value>
1515
        </member>
1516
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
1517
            <summary>
1518
            Gets or sets the type name handling used when serializing the collection's items.
1519
            </summary>
1520
            <value>The type name handling.</value>
1521
        </member>
1522
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
1523
            <summary>
1524
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
1525
            </summary>
1526
        </member>
1527
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
1528
            <summary>
1529
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
1530
            </summary>
1531
            <param name="id">The container Id.</param>
1532
        </member>
1533
        <member name="T:Newtonsoft.Json.JsonException">
1534
            <summary>
1535
            The exception thrown when an error occurs during Json serialization or deserialization.
1536
            </summary>
1537
        </member>
1538
        <member name="M:Newtonsoft.Json.JsonException.#ctor">
1539
            <summary>
1540
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1541
            </summary>
1542
        </member>
1543
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
1544
            <summary>
1545
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1546
            with a specified error message.
1547
            </summary>
1548
            <param name="message">The error message that explains the reason for the exception.</param>
1549
        </member>
1550
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
1551
            <summary>
1552
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1553
            with a specified error message and a reference to the inner exception that is the cause of this exception.
1554
            </summary>
1555
            <param name="message">The error message that explains the reason for the exception.</param>
1556
            <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>
1557
        </member>
1558
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1559
            <summary>
1560
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1561
            </summary>
1562
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
1563
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
1564
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
1565
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
1566
        </member>
1567
        <member name="T:Newtonsoft.Json.DateFormatHandling">
1568
            <summary>
1569
            Specifies how dates are formatted when writing JSON text.
1570
            </summary>
1571
        </member>
1572
        <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
1573
            <summary>
1574
            Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
1575
            </summary>
1576
        </member>
1577
        <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
1578
            <summary>
1579
            Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
1580
            </summary>
1581
        </member>
1582
        <member name="T:Newtonsoft.Json.DateParseHandling">
1583
            <summary>
1584
            Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
1585
            </summary>
1586
        </member>
1587
        <member name="F:Newtonsoft.Json.DateParseHandling.None">
1588
            <summary>
1589
            Date formatted strings are not parsed to a date type and are read as strings.
1590
            </summary>
1591
        </member>
1592
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
1593
            <summary>
1594
            Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.
1595
            </summary>
1596
        </member>
1597
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
1598
            <summary>
1599
            Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"/>.
1600
            </summary>
1601
        </member>
1602
        <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
1603
            <summary>
1604
            Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
1605
            </summary>
1606
        </member>
1607
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
1608
            <summary>
1609
            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.
1610
            </summary>
1611
        </member>
1612
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
1613
            <summary>
1614
            Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
1615
            </summary>
1616
        </member>
1617
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
1618
            <summary>
1619
            Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
1620
            If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
1621
            </summary>
1622
        </member>
1623
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
1624
            <summary>
1625
            Time zone information should be preserved when converting.
1626
            </summary>
1627
        </member>
1628
        <member name="T:Newtonsoft.Json.Formatting">
1629
            <summary>
1630
            Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
1631
            </summary>
1632
        </member>
1633
        <member name="F:Newtonsoft.Json.Formatting.None">
1634
            <summary>
1635
            No special formatting is applied. This is the default.
1636
            </summary>
1637
        </member>
1638
        <member name="F:Newtonsoft.Json.Formatting.Indented">
1639
            <summary>
1640
            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.
1641
            </summary>
1642
        </member>
1643
        <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1644
            <summary>
1645
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1646
            </summary>
1647
        </member>
1648
        <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">
1649
            <summary>
1650
            Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.
1651
            </summary>
1652
        </member>
1653
        <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
1654
            <summary>
1655
            Represents a trace writer.
1656
            </summary>
1657
        </member>
1658
        <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1659
            <summary>
1660
            Writes the specified trace level, message and optional exception.
1661
            </summary>
1662
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1663
            <param name="message">The trace message.</param>
1664
            <param name="ex">The trace exception. This parameter is optional.</param>
1665
        </member>
1666
        <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
1667
            <summary>
1668
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1669
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1670
            <code>Warning</code> and <code>Error</code> messages.
1671
            </summary>
1672
            <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>
1673
        </member>
1674
        <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1675
            <summary>
1676
            Writes the specified trace level, message and optional exception.
1677
            </summary>
1678
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1679
            <param name="message">The trace message.</param>
1680
            <param name="ex">The trace exception. This parameter is optional.</param>
1681
        </member>
1682
        <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">
1683
            <summary>
1684
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1685
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1686
            <code>Warning</code> and <code>Error</code> messages.
1687
            </summary>
1688
            <value>
1689
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1690
            </value>
1691
        </member>
1692
        <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
1693
            <summary>
1694
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1695
            </summary>
1696
        </member>
1697
        <member name="T:Newtonsoft.Json.Serialization.JsonContract">
1698
            <summary>
1699
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1700
            </summary>
1701
        </member>
1702
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
1703
            <summary>
1704
            Gets the underlying type for the contract.
1705
            </summary>
1706
            <value>The underlying type for the contract.</value>
1707
        </member>
1708
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
1709
            <summary>
1710
            Gets or sets the type created during deserialization.
1711
            </summary>
1712
            <value>The type created during deserialization.</value>
1713
        </member>
1714
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
1715
            <summary>
1716
            Gets or sets whether this type contract is serialized as a reference.
1717
            </summary>
1718
            <value>Whether this type contract is serialized as a reference.</value>
1719
        </member>
1720
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
1721
            <summary>
1722
            Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for this contract.
1723
            </summary>
1724
            <value>The converter.</value>
1725
        </member>
1726
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized">
1727
            <summary>
1728
            Gets or sets the method called immediately after deserialization of the object.
1729
            </summary>
1730
            <value>The method called immediately after deserialization of the object.</value>
1731
        </member>
1732
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing">
1733
            <summary>
1734
            Gets or sets the method called during deserialization of the object.
1735
            </summary>
1736
            <value>The method called during deserialization of the object.</value>
1737
        </member>
1738
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized">
1739
            <summary>
1740
            Gets or sets the method called after serialization of the object graph.
1741
            </summary>
1742
            <value>The method called after serialization of the object graph.</value>
1743
        </member>
1744
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing">
1745
            <summary>
1746
            Gets or sets the method called before serialization of the object.
1747
            </summary>
1748
            <value>The method called before serialization of the object.</value>
1749
        </member>
1750
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
1751
            <summary>
1752
            Gets or sets the default creator method used to create the object.
1753
            </summary>
1754
            <value>The default creator method used to create the object.</value>
1755
        </member>
1756
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
1757
            <summary>
1758
            Gets or sets a value indicating whether the default creator is non public.
1759
            </summary>
1760
            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
1761
        </member>
1762
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError">
1763
            <summary>
1764
            Gets or sets the method called when an error is thrown during the serialization of the object.
1765
            </summary>
1766
            <value>The method called when an error is thrown during the serialization of the object.</value>
1767
        </member>
1768
        <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
1769
            <summary>
1770
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
1771
            </summary>
1772
            <param name="underlyingType">The underlying type for the contract.</param>
1773
        </member>
1774
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
1775
            <summary>
1776
            Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1777
            </summary>
1778
            <value>The converter.</value>
1779
        </member>
1780
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
1781
            <summary>
1782
            Gets or sets a value indicating whether the collection items preserve object references.
1783
            </summary>
1784
            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
1785
        </member>
1786
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
1787
            <summary>
1788
            Gets or sets the collection item reference loop handling.
1789
            </summary>
1790
            <value>The reference loop handling.</value>
1791
        </member>
1792
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
1793
            <summary>
1794
            Gets or sets the collection item type name handling.
1795
            </summary>
1796
            <value>The type name handling.</value>
1797
        </member>
1798
        <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
1799
            <summary>
1800
            Represents a trace writer that writes to memory. When the trace message limit is
1801
            reached then old trace messages will be removed as new messages are added.
1802
            </summary>
1803
        </member>
1804
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
1805
            <summary>
1806
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.
1807
            </summary>
1808
        </member>
1809
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1810
            <summary>
1811
            Writes the specified trace level, message and optional exception.
1812
            </summary>
1813
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1814
            <param name="message">The trace message.</param>
1815
            <param name="ex">The trace exception. This parameter is optional.</param>
1816
        </member>
1817
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
1818
            <summary>
1819
            Returns an enumeration of the most recent trace messages.
1820
            </summary>
1821
            <returns>An enumeration of the most recent trace messages.</returns>
1822
        </member>
1823
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
1824
            <summary>
1825
            Returns a <see cref="T:System.String"/> of the most recent trace messages.
1826
            </summary>
1827
            <returns>
1828
            A <see cref="T:System.String"/> of the most recent trace messages.
1829
            </returns>
1830
        </member>
1831
        <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
1832
            <summary>
1833
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1834
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1835
            <code>Warning</code> and <code>Error</code> messages.
1836
            </summary>
1837
            <value>
1838
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1839
            </value>
1840
        </member>
1841
        <member name="T:Newtonsoft.Json.StringEscapeHandling">
1842
            <summary>
1843
            Specifies how strings are escaped when writing JSON text.
1844
            </summary>
1845
        </member>
1846
        <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
1847
            <summary>
1848
            Only control characters (e.g. newline) are escaped.
1849
            </summary>
1850
        </member>
1851
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
1852
            <summary>
1853
            All non-ASCII and control characters (e.g. newline) are escaped.
1854
            </summary>
1855
        </member>
1856
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
1857
            <summary>
1858
            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.
1859
            </summary>
1860
        </member>
1861
        <member name="T:Newtonsoft.Json.Linq.JRaw">
1862
            <summary>
1863
            Represents a raw JSON string.
1864
            </summary>
1865
        </member>
1866
        <member name="T:Newtonsoft.Json.Linq.JValue">
1867
            <summary>
1868
            Represents a value in JSON (string, integer, date, etc).
1869
            </summary>
1870
        </member>
1871
        <member name="T:Newtonsoft.Json.Linq.JToken">
1872
            <summary>
1873
            Represents an abstract JSON token.
1874
            </summary>
1875
        </member>
1876
        <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
1877
            <summary>
1878
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
1879
            </summary>
1880
            <typeparam name="T">The type of token</typeparam>
1881
        </member>
1882
        <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
1883
            <summary>
1884
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
1885
            </summary>
1886
            <value></value>
1887
        </member>
1888
        <member name="T:Newtonsoft.Json.IJsonLineInfo">
1889
            <summary>
1890
            Provides an interface to enable a class to return line and position information.
1891
            </summary>
1892
        </member>
1893
        <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
1894
            <summary>
1895
            Gets a value indicating whether the class can return line information.
1896
            </summary>
1897
            <returns>
1898
                    <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
1899
            </returns>
1900
        </member>
1901
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
1902
            <summary>
1903
            Gets the current line number.
1904
            </summary>
1905
            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>
1906
        </member>
1907
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
1908
            <summary>
1909
            Gets the current line position.
1910
            </summary>
1911
            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>
1912
        </member>
1913
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
1914
            <summary>
1915
            Compares the values of two tokens, including the values of all descendant tokens.
1916
            </summary>
1917
            <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
1918
            <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
1919
            <returns>true if the tokens are equal; otherwise false.</returns>
1920
        </member>
1921
        <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
1922
            <summary>
1923
            Adds the specified content immediately after this token.
1924
            </summary>
1925
            <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
1926
        </member>
1927
        <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
1928
            <summary>
1929
            Adds the specified content immediately before this token.
1930
            </summary>
1931
            <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
1932
        </member>
1933
        <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
1934
            <summary>
1935
            Returns a collection of the ancestor tokens of this token.
1936
            </summary>
1937
            <returns>A collection of the ancestor tokens of this token.</returns>
1938
        </member>
1939
        <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
1940
            <summary>
1941
            Returns a collection of the sibling tokens after this token, in document order.
1942
            </summary>
1943
            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
1944
        </member>
1945
        <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
1946
            <summary>
1947
            Returns a collection of the sibling tokens before this token, in document order.
1948
            </summary>
1949
            <returns>A collection of the sibling tokens before this token, in document order.</returns>
1950
        </member>
1951
        <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
1952
            <summary>
1953
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
1954
            </summary>
1955
            <typeparam name="T">The type to convert the token to.</typeparam>
1956
            <param name="key">The token key.</param>
1957
            <returns>The converted token value.</returns>
1958
        </member>
1959
        <member name="M:Newtonsoft.Json.Linq.JToken.Children">
1960
            <summary>
1961
            Returns a collection of the child tokens of this token, in document order.
1962
            </summary>
1963
            <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>
1964
        </member>
1965
        <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
1966
            <summary>
1967
            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
1968
            </summary>
1969
            <typeparam name="T">The type to filter the child tokens on.</typeparam>
1970
            <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>
1971
        </member>
1972
        <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
1973
            <summary>
1974
            Returns a collection of the child values of this token, in document order.
1975
            </summary>
1976
            <typeparam name="T">The type to convert the values to.</typeparam>
1977
            <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>
1978
        </member>
1979
        <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
1980
            <summary>
1981
            Removes this token from its parent.
1982
            </summary>
1983
        </member>
1984
        <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
1985
            <summary>
1986
            Replaces this token with the specified token.
1987
            </summary>
1988
            <param name="value">The value.</param>
1989
        </member>
1990
        <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
1991
            <summary>
1992
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1993
            </summary>
1994
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
1995
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
1996
        </member>
1997
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
1998
            <summary>
1999
            Returns the indented JSON for this token.
2000
            </summary>
2001
            <returns>
2002
            The indented JSON for this token.
2003
            </returns>
2004
        </member>
2005
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
2006
            <summary>
2007
            Returns the JSON for this token using the given formatting and converters.
2008
            </summary>
2009
            <param name="formatting">Indicates how the output is formatted.</param>
2010
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2011
            <returns>The JSON for this token using the given formatting and converters.</returns>
2012
        </member>
2013
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
2014
            <summary>
2015
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
2016
            </summary>
2017
            <param name="value">The value.</param>
2018
            <returns>The result of the conversion.</returns>
2019
        </member>
2020
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
2021
            <summary>
2022
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>.
2023
            </summary>
2024
            <param name="value">The value.</param>
2025
            <returns>The result of the conversion.</returns>
2026
        </member>
2027
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
2028
            <summary>
2029
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2030
            </summary>
2031
            <param name="value">The value.</param>
2032
            <returns>The result of the conversion.</returns>
2033
        </member>
2034
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
2035
            <summary>
2036
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>.
2037
            </summary>
2038
            <param name="value">The value.</param>
2039
            <returns>The result of the conversion.</returns>
2040
        </member>
2041
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
2042
            <summary>
2043
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2044
            </summary>
2045
            <param name="value">The value.</param>
2046
            <returns>The result of the conversion.</returns>
2047
        </member>
2048
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">
2049
            <summary>
2050
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2051
            </summary>
2052
            <param name="value">The value.</param>
2053
            <returns>The result of the conversion.</returns>
2054
        </member>
2055
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
2056
            <summary>
2057
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2058
            </summary>
2059
            <param name="value">The value.</param>
2060
            <returns>The result of the conversion.</returns>
2061
        </member>
2062
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
2063
            <summary>
2064
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2065
            </summary>
2066
            <param name="value">The value.</param>
2067
            <returns>The result of the conversion.</returns>
2068
        </member>
2069
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
2070
            <summary>
2071
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2072
            </summary>
2073
            <param name="value">The value.</param>
2074
            <returns>The result of the conversion.</returns>
2075
        </member>
2076
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
2077
            <summary>
2078
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
2079
            </summary>
2080
            <param name="value">The value.</param>
2081
            <returns>The result of the conversion.</returns>
2082
        </member>
2083
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
2084
            <summary>
2085
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
2086
            </summary>
2087
            <param name="value">The value.</param>
2088
            <returns>The result of the conversion.</returns>
2089
        </member>
2090
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
2091
            <summary>
2092
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
2093
            </summary>
2094
            <param name="value">The value.</param>
2095
            <returns>The result of the conversion.</returns>
2096
        </member>
2097
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
2098
            <summary>
2099
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.
2100
            </summary>
2101
            <param name="value">The value.</param>
2102
            <returns>The result of the conversion.</returns>
2103
        </member>
2104
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
2105
            <summary>
2106
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.
2107
            </summary>
2108
            <param name="value">The value.</param>
2109
            <returns>The result of the conversion.</returns>
2110
        </member>
2111
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
2112
            <summary>
2113
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2114
            </summary>
2115
            <param name="value">The value.</param>
2116
            <returns>The result of the conversion.</returns>
2117
        </member>
2118
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
2119
            <summary>
2120
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2121
            </summary>
2122
            <param name="value">The value.</param>
2123
            <returns>The result of the conversion.</returns>
2124
        </member>
2125
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
2126
            <summary>
2127
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2128
            </summary>
2129
            <param name="value">The value.</param>
2130
            <returns>The result of the conversion.</returns>
2131
        </member>
2132
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
2133
            <summary>
2134
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2135
            </summary>
2136
            <param name="value">The value.</param>
2137
            <returns>The result of the conversion.</returns>
2138
        </member>
2139
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
2140
            <summary>
2141
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>.
2142
            </summary>
2143
            <param name="value">The value.</param>
2144
            <returns>The result of the conversion.</returns>
2145
        </member>
2146
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
2147
            <summary>
2148
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2149
            </summary>
2150
            <param name="value">The value.</param>
2151
            <returns>The result of the conversion.</returns>
2152
        </member>
2153
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
2154
            <summary>
2155
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2156
            </summary>
2157
            <param name="value">The value.</param>
2158
            <returns>The result of the conversion.</returns>
2159
        </member>
2160
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
2161
            <summary>
2162
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
2163
            </summary>
2164
            <param name="value">The value.</param>
2165
            <returns>The result of the conversion.</returns>
2166
        </member>
2167
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
2168
            <summary>
2169
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2170
            </summary>
2171
            <param name="value">The value.</param>
2172
            <returns>The result of the conversion.</returns>
2173
        </member>
2174
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
2175
            <summary>
2176
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2177
            </summary>
2178
            <param name="value">The value.</param>
2179
            <returns>The result of the conversion.</returns>
2180
        </member>
2181
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
2182
            <summary>
2183
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
2184
            </summary>
2185
            <param name="value">The value.</param>
2186
            <returns>The result of the conversion.</returns>
2187
        </member>
2188
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
2189
            <summary>
2190
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
2191
            </summary>
2192
            <param name="value">The value.</param>
2193
            <returns>The result of the conversion.</returns>
2194
        </member>
2195
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
2196
            <summary>
2197
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
2198
            </summary>
2199
            <param name="value">The value.</param>
2200
            <returns>The result of the conversion.</returns>
2201
        </member>
2202
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
2203
            <summary>
2204
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
2205
            </summary>
2206
            <param name="value">The value.</param>
2207
            <returns>The result of the conversion.</returns>
2208
        </member>
2209
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
2210
            <summary>
2211
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
2212
            </summary>
2213
            <param name="value">The value.</param>
2214
            <returns>The result of the conversion.</returns>
2215
        </member>
2216
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
2217
            <summary>
2218
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte[]"/>.
2219
            </summary>
2220
            <param name="value">The value.</param>
2221
            <returns>The result of the conversion.</returns>
2222
        </member>
2223
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
2224
            <summary>
2225
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2226
            </summary>
2227
            <param name="value">The value.</param>
2228
            <returns>The result of the conversion.</returns>
2229
        </member>
2230
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
2231
            <summary>
2232
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2233
            </summary>
2234
            <param name="value">The value.</param>
2235
            <returns>The result of the conversion.</returns>
2236
        </member>
2237
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
2238
            <summary>
2239
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2240
            </summary>
2241
            <param name="value">The value.</param>
2242
            <returns>The result of the conversion.</returns>
2243
        </member>
2244
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
2245
            <summary>
2246
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2247
            </summary>
2248
            <param name="value">The value.</param>
2249
            <returns>The result of the conversion.</returns>
2250
        </member>
2251
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
2252
            <summary>
2253
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.
2254
            </summary>
2255
            <param name="value">The value.</param>
2256
            <returns>The result of the conversion.</returns>
2257
        </member>
2258
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
2259
            <summary>
2260
            Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2261
            </summary>
2262
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2263
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2264
        </member>
2265
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">
2266
            <summary>
2267
            Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2268
            </summary>
2269
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2270
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2271
        </member>
2272
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
2273
            <summary>
2274
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2275
            </summary>
2276
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2277
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2278
        </member>
2279
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
2280
            <summary>
2281
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2282
            </summary>
2283
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2284
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2285
        </member>
2286
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
2287
            <summary>
2288
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2289
            </summary>
2290
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2291
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2292
        </member>
2293
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">
2294
            <summary>
2295
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2296
            </summary>
2297
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2298
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2299
        </member>
2300
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
2301
            <summary>
2302
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2303
            </summary>
2304
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2305
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2306
        </member>
2307
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
2308
            <summary>
2309
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2310
            </summary>
2311
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2312
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2313
        </member>
2314
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
2315
            <summary>
2316
            Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2317
            </summary>
2318
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2319
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2320
        </member>
2321
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
2322
            <summary>
2323
            Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2324
            </summary>
2325
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2326
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2327
        </member>
2328
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
2329
            <summary>
2330
            Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2331
            </summary>
2332
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2333
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2334
        </member>
2335
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
2336
            <summary>
2337
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2338
            </summary>
2339
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2340
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2341
        </member>
2342
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
2343
            <summary>
2344
            Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2345
            </summary>
2346
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2347
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2348
        </member>
2349
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
2350
            <summary>
2351
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2352
            </summary>
2353
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2354
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2355
        </member>
2356
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
2357
            <summary>
2358
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2359
            </summary>
2360
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2361
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2362
        </member>
2363
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
2364
            <summary>
2365
            Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2366
            </summary>
2367
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2368
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2369
        </member>
2370
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
2371
            <summary>
2372
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2373
            </summary>
2374
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2375
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2376
        </member>
2377
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
2378
            <summary>
2379
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2380
            </summary>
2381
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2382
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2383
        </member>
2384
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
2385
            <summary>
2386
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2387
            </summary>
2388
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2389
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2390
        </member>
2391
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
2392
            <summary>
2393
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2394
            </summary>
2395
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2396
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2397
        </member>
2398
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
2399
            <summary>
2400
            Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2401
            </summary>
2402
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2403
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2404
        </member>
2405
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
2406
            <summary>
2407
            Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2408
            </summary>
2409
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2410
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2411
        </member>
2412
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
2413
            <summary>
2414
            Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2415
            </summary>
2416
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2417
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2418
        </member>
2419
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
2420
            <summary>
2421
            Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2422
            </summary>
2423
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2424
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2425
        </member>
2426
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
2427
            <summary>
2428
            Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2429
            </summary>
2430
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2431
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2432
        </member>
2433
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
2434
            <summary>
2435
            Performs an implicit conversion from <see cref="T:System.Byte[]"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2436
            </summary>
2437
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2438
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2439
        </member>
2440
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
2441
            <summary>
2442
            Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2443
            </summary>
2444
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2445
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2446
        </member>
2447
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
2448
            <summary>
2449
            Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2450
            </summary>
2451
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2452
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2453
        </member>
2454
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
2455
            <summary>
2456
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2457
            </summary>
2458
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2459
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2460
        </member>
2461
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
2462
            <summary>
2463
            Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2464
            </summary>
2465
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2466
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2467
        </member>
2468
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
2469
            <summary>
2470
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2471
            </summary>
2472
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2473
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2474
        </member>
2475
        <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
2476
            <summary>
2477
            Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
2478
            </summary>
2479
            <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
2480
        </member>
2481
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
2482
            <summary>
2483
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
2484
            </summary>
2485
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
2486
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
2487
        </member>
2488
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
2489
            <summary>
2490
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2491
            </summary>
2492
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
2493
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
2494
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
2495
        </member>
2496
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
2497
            <summary>
2498
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2499
            </summary>
2500
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
2501
            <returns>The new object created from the JSON value.</returns>
2502
        </member>
2503
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
2504
            <summary>
2505
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2506
            </summary>
2507
            <param name="objectType">The object type that the token will be deserialized to.</param>
2508
            <returns>The new object created from the JSON value.</returns>
2509
        </member>
2510
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
2511
            <summary>
2512
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2513
            </summary>
2514
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
2515
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
2516
            <returns>The new object created from the JSON value.</returns>
2517
        </member>
2518
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
2519
            <summary>
2520
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2521
            </summary>
2522
            <param name="objectType">The object type that the token will be deserialized to.</param>
2523
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
2524
            <returns>The new object created from the JSON value.</returns>
2525
        </member>
2526
        <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
2527
            <summary>
2528
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
2529
            </summary>
2530
            <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>
2531
            <returns>
2532
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
2533
            that were read from the reader. The runtime type of the token is determined
2534
            by the token type of the first token encountered in the reader.
2535
            </returns>
2536
        </member>
2537
        <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
2538
            <summary>
2539
            Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
2540
            </summary>
2541
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
2542
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
2543
        </member>
2544
        <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
2545
            <summary>
2546
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
2547
            </summary>
2548
            <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>
2549
            <returns>
2550
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
2551
            that were read from the reader. The runtime type of the token is determined
2552
            by the token type of the first token encountered in the reader.
2553
            </returns>
2554
        </member>
2555
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
2556
            <summary>
2557
            Selects the token that matches the object path.
2558
            </summary>
2559
            <param name="path">
2560
            The object path from the current <see cref="T:Newtonsoft.Json.Linq.JToken"/> to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>
2561
            to be returned. This must be a string of property names or array indexes separated
2562
            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or
2563
            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.
2564
            </param>
2565
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that matches the object path or a null reference if no matching token is found.</returns>
2566
        </member>
2567
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
2568
            <summary>
2569
            Selects the token that matches the object path.
2570
            </summary>
2571
            <param name="path">
2572
            The object path from the current <see cref="T:Newtonsoft.Json.Linq.JToken"/> to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>
2573
            to be returned. This must be a string of property names or array indexes separated
2574
            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or
2575
            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.
2576
            </param>
2577
            <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no token is found.</param>
2578
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that matches the object path.</returns>
2579
        </member>
2580
        <member name="M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)">
2581
            <summary>
2582
            Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
2583
            </summary>
2584
            <param name="parameter">The expression tree representation of the runtime value.</param>
2585
            <returns>
2586
            The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
2587
            </returns>
2588
        </member>
2589
        <member name="M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)">
2590
            <summary>
2591
            Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
2592
            </summary>
2593
            <param name="parameter">The expression tree representation of the runtime value.</param>
2594
            <returns>
2595
            The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
2596
            </returns>
2597
        </member>
2598
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
2599
            <summary>
2600
            Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
2601
            </summary>
2602
            <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
2603
        </member>
2604
        <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
2605
            <summary>
2606
            Gets a comparer that can compare two tokens for value equality.
2607
            </summary>
2608
            <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
2609
        </member>
2610
        <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
2611
            <summary>
2612
            Gets or sets the parent.
2613
            </summary>
2614
            <value>The parent.</value>
2615
        </member>
2616
        <member name="P:Newtonsoft.Json.Linq.JToken.Root">
2617
            <summary>
2618
            Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2619
            </summary>
2620
            <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2621
        </member>
2622
        <member name="P:Newtonsoft.Json.Linq.JToken.Type">
2623
            <summary>
2624
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2625
            </summary>
2626
            <value>The type.</value>
2627
        </member>
2628
        <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
2629
            <summary>
2630
            Gets a value indicating whether this token has childen tokens.
2631
            </summary>
2632
            <value>
2633
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
2634
            </value>
2635
        </member>
2636
        <member name="P:Newtonsoft.Json.Linq.JToken.Next">
2637
            <summary>
2638
            Gets the next sibling token of this node.
2639
            </summary>
2640
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
2641
        </member>
2642
        <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
2643
            <summary>
2644
            Gets the previous sibling token of this node.
2645
            </summary>
2646
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
2647
        </member>
2648
        <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
2649
            <summary>
2650
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
2651
            </summary>
2652
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
2653
        </member>
2654
        <member name="P:Newtonsoft.Json.Linq.JToken.First">
2655
            <summary>
2656
            Get the first child token of this token.
2657
            </summary>
2658
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2659
        </member>
2660
        <member name="P:Newtonsoft.Json.Linq.JToken.Last">
2661
            <summary>
2662
            Get the last child token of this token.
2663
            </summary>
2664
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2665
        </member>
2666
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
2667
            <summary>
2668
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
2669
            </summary>
2670
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
2671
        </member>
2672
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
2673
            <summary>
2674
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2675
            </summary>
2676
            <param name="value">The value.</param>
2677
        </member>
2678
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
2679
            <summary>
2680
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2681
            </summary>
2682
            <param name="value">The value.</param>
2683
        </member>
2684
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
2685
            <summary>
2686
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2687
            </summary>
2688
            <param name="value">The value.</param>
2689
        </member>
2690
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
2691
            <summary>
2692
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2693
            </summary>
2694
            <param name="value">The value.</param>
2695
        </member>
2696
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
2697
            <summary>
2698
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2699
            </summary>
2700
            <param name="value">The value.</param>
2701
        </member>
2702
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
2703
            <summary>
2704
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2705
            </summary>
2706
            <param name="value">The value.</param>
2707
        </member>
2708
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
2709
            <summary>
2710
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2711
            </summary>
2712
            <param name="value">The value.</param>
2713
        </member>
2714
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
2715
            <summary>
2716
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2717
            </summary>
2718
            <param name="value">The value.</param>
2719
        </member>
2720
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
2721
            <summary>
2722
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2723
            </summary>
2724
            <param name="value">The value.</param>
2725
        </member>
2726
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
2727
            <summary>
2728
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2729
            </summary>
2730
            <param name="value">The value.</param>
2731
        </member>
2732
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
2733
            <summary>
2734
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2735
            </summary>
2736
            <param name="value">The value.</param>
2737
        </member>
2738
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
2739
            <summary>
2740
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2741
            </summary>
2742
            <param name="value">The value.</param>
2743
        </member>
2744
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
2745
            <summary>
2746
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
2747
            </summary>
2748
            <param name="value">The value.</param>
2749
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
2750
        </member>
2751
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
2752
            <summary>
2753
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
2754
            </summary>
2755
            <param name="value">The value.</param>
2756
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
2757
        </member>
2758
        <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
2759
            <summary>
2760
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2761
            </summary>
2762
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
2763
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2764
        </member>
2765
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
2766
            <summary>
2767
            Indicates whether the current object is equal to another object of the same type.
2768
            </summary>
2769
            <returns>
2770
            true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.
2771
            </returns>
2772
            <param name="other">An object to compare with this object.</param>
2773
        </member>
2774
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
2775
            <summary>
2776
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
2777
            </summary>
2778
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
2779
            <returns>
2780
            true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
2781
            </returns>
2782
            <exception cref="T:System.NullReferenceException">
2783
            The <paramref name="obj"/> parameter is null.
2784
            </exception>
2785
        </member>
2786
        <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
2787
            <summary>
2788
            Serves as a hash function for a particular type.
2789
            </summary>
2790
            <returns>
2791
            A hash code for the current <see cref="T:System.Object"/>.
2792
            </returns>
2793
        </member>
2794
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
2795
            <summary>
2796
            Returns a <see cref="T:System.String"/> that represents this instance.
2797
            </summary>
2798
            <returns>
2799
            A <see cref="T:System.String"/> that represents this instance.
2800
            </returns>
2801
        </member>
2802
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
2803
            <summary>
2804
            Returns a <see cref="T:System.String"/> that represents this instance.
2805
            </summary>
2806
            <param name="format">The format.</param>
2807
            <returns>
2808
            A <see cref="T:System.String"/> that represents this instance.
2809
            </returns>
2810
        </member>
2811
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
2812
            <summary>
2813
            Returns a <see cref="T:System.String"/> that represents this instance.
2814
            </summary>
2815
            <param name="formatProvider">The format provider.</param>
2816
            <returns>
2817
            A <see cref="T:System.String"/> that represents this instance.
2818
            </returns>
2819
        </member>
2820
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
2821
            <summary>
2822
            Returns a <see cref="T:System.String"/> that represents this instance.
2823
            </summary>
2824
            <param name="format">The format.</param>
2825
            <param name="formatProvider">The format provider.</param>
2826
            <returns>
2827
            A <see cref="T:System.String"/> that represents this instance.
2828
            </returns>
2829
        </member>
2830
        <member name="M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)">
2831
            <summary>
2832
            Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
2833
            </summary>
2834
            <param name="parameter">The expression tree representation of the runtime value.</param>
2835
            <returns>
2836
            The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
2837
            </returns>
2838
        </member>
2839
        <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
2840
            <summary>
2841
            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.
2842
            </summary>
2843
            <param name="obj">An object to compare with this instance.</param>
2844
            <returns>
2845
            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
2846
            Value
2847
            Meaning
2848
            Less than zero
2849
            This instance is less than <paramref name="obj"/>.
2850
            Zero
2851
            This instance is equal to <paramref name="obj"/>.
2852
            Greater than zero
2853
            This instance is greater than <paramref name="obj"/>.
2854
            </returns>
2855
            <exception cref="T:System.ArgumentException">
2856
                    <paramref name="obj"/> is not the same type as this instance.
2857
            </exception>
2858
        </member>
2859
        <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
2860
            <summary>
2861
            Gets a value indicating whether this token has childen tokens.
2862
            </summary>
2863
            <value>
2864
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
2865
            </value>
2866
        </member>
2867
        <member name="P:Newtonsoft.Json.Linq.JValue.Type">
2868
            <summary>
2869
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2870
            </summary>
2871
            <value>The type.</value>
2872
        </member>
2873
        <member name="P:Newtonsoft.Json.Linq.JValue.Value">
2874
            <summary>
2875
            Gets or sets the underlying token value.
2876
            </summary>
2877
            <value>The underlying token value.</value>
2878
        </member>
2879
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
2880
            <summary>
2881
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
2882
            </summary>
2883
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
2884
        </member>
2885
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
2886
            <summary>
2887
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
2888
            </summary>
2889
            <param name="rawJson">The raw json.</param>
2890
        </member>
2891
        <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
2892
            <summary>
2893
            Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
2894
            </summary>
2895
            <param name="reader">The reader.</param>
2896
            <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
2897
        </member>
2898
        <member name="T:Newtonsoft.Json.Required">
2899
            <summary>
2900
            Indicating whether a property is required.
2901
            </summary>
2902
        </member>
2903
        <member name="F:Newtonsoft.Json.Required.Default">
2904
            <summary>
2905
            The property is not required. The default state.
2906
            </summary>
2907
        </member>
2908
        <member name="F:Newtonsoft.Json.Required.AllowNull">
2909
            <summary>
2910
            The property must be defined in JSON but can be a null value.
2911
            </summary>
2912
        </member>
2913
        <member name="F:Newtonsoft.Json.Required.Always">
2914
            <summary>
2915
            The property must be defined in JSON and cannot be a null value.
2916
            </summary>
2917
        </member>
2918
        <member name="T:Newtonsoft.Json.Serialization.JsonDynamicContract">
2919
            <summary>
2920
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2921
            </summary>
2922
        </member>
2923
        <member name="M:Newtonsoft.Json.Serialization.JsonDynamicContract.#ctor(System.Type)">
2924
            <summary>
2925
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> class.
2926
            </summary>
2927
            <param name="underlyingType">The underlying type for the contract.</param>
2928
        </member>
2929
        <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.Properties">
2930
            <summary>
2931
            Gets the object's properties.
2932
            </summary>
2933
            <value>The object's properties.</value>
2934
        </member>
2935
        <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.PropertyNameResolver">
2936
            <summary>
2937
            Gets or sets the property name resolver.
2938
            </summary>
2939
            <value>The property name resolver.</value>
2940
        </member>
2941
        <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
2942
            <summary>
2943
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2944
            </summary>
2945
        </member>
2946
        <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
2947
            <summary>
2948
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
2949
            </summary>
2950
            <param name="underlyingType">The underlying type for the contract.</param>
2951
        </member>
2952
        <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
2953
            <summary>
2954
            Gets or sets the ISerializable object constructor.
2955
            </summary>
2956
            <value>The ISerializable object constructor.</value>
2957
        </member>
2958
        <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
2959
            <summary>
2960
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2961
            </summary>
2962
        </member>
2963
        <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
2964
            <summary>
2965
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
2966
            </summary>
2967
            <param name="underlyingType">The underlying type for the contract.</param>
2968
        </member>
2969
        <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
2970
            <summary>
2971
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2972
            </summary>
2973
        </member>
2974
        <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
2975
            <summary>
2976
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
2977
            </summary>
2978
            <param name="underlyingType">The underlying type for the contract.</param>
2979
        </member>
2980
        <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
2981
            <summary>
2982
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
2983
            </summary>
2984
        </member>
2985
        <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
2986
            <summary>
2987
            Provides methods to get and set values.
2988
            </summary>
2989
        </member>
2990
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
2991
            <summary>
2992
            Sets the value.
2993
            </summary>
2994
            <param name="target">The target to set the value on.</param>
2995
            <param name="value">The value to set on the target.</param>
2996
        </member>
2997
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
2998
            <summary>
2999
            Gets the value.
3000
            </summary>
3001
            <param name="target">The target to get the value from.</param>
3002
            <returns>The value.</returns>
3003
        </member>
3004
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
3005
            <summary>
3006
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
3007
            </summary>
3008
            <param name="memberInfo">The member info.</param>
3009
        </member>
3010
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
3011
            <summary>
3012
            Sets the value.
3013
            </summary>
3014
            <param name="target">The target to set the value on.</param>
3015
            <param name="value">The value to set on the target.</param>
3016
        </member>
3017
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
3018
            <summary>
3019
            Gets the value.
3020
            </summary>
3021
            <param name="target">The target to get the value from.</param>
3022
            <returns>The value.</returns>
3023
        </member>
3024
        <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
3025
            <summary>
3026
            Provides data for the Error event.
3027
            </summary>
3028
        </member>
3029
        <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
3030
            <summary>
3031
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
3032
            </summary>
3033
            <param name="currentObject">The current object.</param>
3034
            <param name="errorContext">The error context.</param>
3035
        </member>
3036
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
3037
            <summary>
3038
            Gets the current object the error event is being raised against.
3039
            </summary>
3040
            <value>The current object the error event is being raised against.</value>
3041
        </member>
3042
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
3043
            <summary>
3044
            Gets the error context.
3045
            </summary>
3046
            <value>The error context.</value>
3047
        </member>
3048
        <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
3049
            <summary>
3050
            Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
3051
            </summary>
3052
        </member>
3053
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String,System.Type)">
3054
            <summary>
3055
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
3056
            </summary>
3057
            <param name="name">The name.</param>
3058
            <param name="propertyType">Type of the property.</param>
3059
        </member>
3060
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
3061
            <summary>
3062
            When overridden in a derived class, returns whether resetting an object changes its value.
3063
            </summary>
3064
            <returns>
3065
            true if resetting the component changes its value; otherwise, false.
3066
            </returns>
3067
            <param name="component">The component to test for reset capability. 
3068
                            </param>
3069
        </member>
3070
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
3071
            <summary>
3072
            When overridden in a derived class, gets the current value of the property on a component.
3073
            </summary>
3074
            <returns>
3075
            The value of a property for a given component.
3076
            </returns>
3077
            <param name="component">The component with the property for which to retrieve the value. 
3078
                            </param>
3079
        </member>
3080
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
3081
            <summary>
3082
            When overridden in a derived class, resets the value for this property of the component to the default value.
3083
            </summary>
3084
            <param name="component">The component with the property value that is to be reset to the default value. 
3085
                            </param>
3086
        </member>
3087
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
3088
            <summary>
3089
            When overridden in a derived class, sets the value of the component to a different value.
3090
            </summary>
3091
            <param name="component">The component with the property value that is to be set. 
3092
                            </param><param name="value">The new value. 
3093
                            </param>
3094
        </member>
3095
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
3096
            <summary>
3097
            When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
3098
            </summary>
3099
            <returns>
3100
            true if the property should be persisted; otherwise, false.
3101
            </returns>
3102
            <param name="component">The component with the property to be examined for persistence. 
3103
                            </param>
3104
        </member>
3105
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
3106
            <summary>
3107
            When overridden in a derived class, gets the type of the component this property is bound to.
3108
            </summary>
3109
            <returns>
3110
            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.
3111
            </returns>
3112
        </member>
3113
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
3114
            <summary>
3115
            When overridden in a derived class, gets a value indicating whether this property is read-only.
3116
            </summary>
3117
            <returns>
3118
            true if the property is read-only; otherwise, false.
3119
            </returns>
3120
        </member>
3121
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
3122
            <summary>
3123
            When overridden in a derived class, gets the type of the property.
3124
            </summary>
3125
            <returns>
3126
            A <see cref="T:System.Type"/> that represents the type of the property.
3127
            </returns>
3128
        </member>
3129
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
3130
            <summary>
3131
            Gets the hash code for the name of the member.
3132
            </summary>
3133
            <value></value>
3134
            <returns>
3135
            The hash code for the name of the member.
3136
            </returns>
3137
        </member>
3138
        <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
3139
            <summary>
3140
            Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3141
            </summary>
3142
        </member>
3143
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
3144
            <summary>
3145
            Resolves a reference to its object.
3146
            </summary>
3147
            <param name="context">The serialization context.</param>
3148
            <param name="reference">The reference to resolve.</param>
3149
            <returns>The object that</returns>
3150
        </member>
3151
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
3152
            <summary>
3153
            Gets the reference for the sepecified object.
3154
            </summary>
3155
            <param name="context">The serialization context.</param>
3156
            <param name="value">The object to get a reference for.</param>
3157
            <returns>The reference to the object.</returns>
3158
        </member>
3159
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
3160
            <summary>
3161
            Determines whether the specified object is referenced.
3162
            </summary>
3163
            <param name="context">The serialization context.</param>
3164
            <param name="value">The object to test for a reference.</param>
3165
            <returns>
3166
                    <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
3167
            </returns>
3168
        </member>
3169
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
3170
            <summary>
3171
            Adds a reference to the specified object.
3172
            </summary>
3173
            <param name="context">The serialization context.</param>
3174
            <param name="reference">The reference.</param>
3175
            <param name="value">The object to reference.</param>
3176
        </member>
3177
        <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
3178
            <summary>
3179
            Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3180
            </summary>
3181
            <example>
3182
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References"/>       
3183
            </example>
3184
        </member>
3185
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
3186
            <summary>
3187
            Do not preserve references when serializing types.
3188
            </summary>
3189
        </member>
3190
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
3191
            <summary>
3192
            Preserve references when serializing into a JSON object structure.
3193
            </summary>
3194
        </member>
3195
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
3196
            <summary>
3197
            Preserve references when serializing into a JSON array structure.
3198
            </summary>
3199
        </member>
3200
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
3201
            <summary>
3202
            Preserve references when serializing.
3203
            </summary>
3204
        </member>
3205
        <member name="T:Newtonsoft.Json.JsonArrayAttribute">
3206
            <summary>
3207
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
3208
            </summary>
3209
        </member>
3210
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
3211
            <summary>
3212
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
3213
            </summary>
3214
        </member>
3215
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
3216
            <summary>
3217
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items
3218
            </summary>
3219
            <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
3220
        </member>
3221
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
3222
            <summary>
3223
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
3224
            </summary>
3225
            <param name="id">The container Id.</param>
3226
        </member>
3227
        <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
3228
            <summary>
3229
            Gets or sets a value indicating whether null items are allowed in the collection.
3230
            </summary>
3231
            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
3232
        </member>
3233
        <member name="T:Newtonsoft.Json.DefaultValueHandling">
3234
            <summary>
3235
            Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3236
            </summary>
3237
            <example>
3238
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class"/>
3239
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example"/>
3240
            </example>
3241
        </member>
3242
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
3243
            <summary>
3244
            Include members where the member value is the same as the member's default value when serializing objects.
3245
            Included members are written to JSON. Has no effect when deserializing.
3246
            </summary>
3247
        </member>
3248
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
3249
            <summary>
3250
            Ignore members where the member value is the same as the member's default value when serializing objects
3251
            so that is is not written to JSON.
3252
            This option will ignore all default values (e.g. <c>null</c> for objects and nullable typesl; <c>0</c> for integers,
3253
            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
3254
            placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
3255
            </summary>
3256
        </member>
3257
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
3258
            <summary>
3259
            Members with a default value but no JSON will be set to their default value when deserializing.
3260
            </summary>
3261
        </member>
3262
        <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
3263
            <summary>
3264
            Ignore members where the member value is the same as the member's default value when serializing objects
3265
            and sets members to their default value when deserializing.
3266
            </summary>
3267
        </member>
3268
        <member name="T:Newtonsoft.Json.JsonConverterAttribute">
3269
            <summary>
3270
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
3271
            </summary>
3272
        </member>
3273
        <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
3274
            <summary>
3275
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
3276
            </summary>
3277
            <param name="converterType">Type of the converter.</param>
3278
        </member>
3279
        <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
3280
            <summary>
3281
            Gets the type of the converter.
3282
            </summary>
3283
            <value>The type of the converter.</value>
3284
        </member>
3285
        <member name="T:Newtonsoft.Json.JsonObjectAttribute">
3286
            <summary>
3287
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
3288
            </summary>
3289
        </member>
3290
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
3291
            <summary>
3292
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
3293
            </summary>
3294
        </member>
3295
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
3296
            <summary>
3297
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
3298
            </summary>
3299
            <param name="memberSerialization">The member serialization.</param>
3300
        </member>
3301
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
3302
            <summary>
3303
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
3304
            </summary>
3305
            <param name="id">The container Id.</param>
3306
        </member>
3307
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
3308
            <summary>
3309
            Gets or sets the member serialization.
3310
            </summary>
3311
            <value>The member serialization.</value>
3312
        </member>
3313
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
3314
            <summary>
3315
            Gets or sets a value that indicates whether the object's properties are required.
3316
            </summary>
3317
            <value>
3318
                    A value indicating whether the object's properties are required.
3319
            </value>
3320
        </member>
3321
        <member name="T:Newtonsoft.Json.JsonSerializerSettings">
3322
            <summary>
3323
            Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
3324
            </summary>
3325
        </member>
3326
        <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
3327
            <summary>
3328
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
3329
            </summary>
3330
        </member>
3331
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
3332
            <summary>
3333
            Gets or sets how reference loops (e.g. a class referencing itself) is handled.
3334
            </summary>
3335
            <value>Reference loop handling.</value>
3336
        </member>
3337
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
3338
            <summary>
3339
            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
3340
            </summary>
3341
            <value>Missing member handling.</value>
3342
        </member>
3343
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
3344
            <summary>
3345
            Gets or sets how objects are created during deserialization.
3346
            </summary>
3347
            <value>The object creation handling.</value>
3348
        </member>
3349
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
3350
            <summary>
3351
            Gets or sets how null values are handled during serialization and deserialization.
3352
            </summary>
3353
            <value>Null value handling.</value>
3354
        </member>
3355
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
3356
            <summary>
3357
            Gets or sets how null default are handled during serialization and deserialization.
3358
            </summary>
3359
            <value>The default value handling.</value>
3360
        </member>
3361
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
3362
            <summary>
3363
            Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
3364
            </summary>
3365
            <value>The converters.</value>
3366
        </member>
3367
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
3368
            <summary>
3369
            Gets or sets how object references are preserved by the serializer.
3370
            </summary>
3371
            <value>The preserve references handling.</value>
3372
        </member>
3373
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
3374
            <summary>
3375
            Gets or sets how type name writing and reading is handled by the serializer.
3376
            </summary>
3377
            <value>The type name handling.</value>
3378
        </member>
3379
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
3380
            <summary>
3381
            Gets or sets how a type name assembly is written and resolved by the serializer.
3382
            </summary>
3383
            <value>The type name assembly format.</value>
3384
        </member>
3385
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
3386
            <summary>
3387
            Gets or sets how constructors are used during deserialization.
3388
            </summary>
3389
            <value>The constructor handling.</value>
3390
        </member>
3391
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
3392
            <summary>
3393
            Gets or sets the contract resolver used by the serializer when
3394
            serializing .NET objects to JSON and vice versa.
3395
            </summary>
3396
            <value>The contract resolver.</value>
3397
        </member>
3398
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
3399
            <summary>
3400
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
3401
            </summary>
3402
            <value>The reference resolver.</value>
3403
        </member>
3404
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
3405
            <summary>
3406
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
3407
            </summary>
3408
            <value>The trace writer.</value>
3409
        </member>
3410
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
3411
            <summary>
3412
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
3413
            </summary>
3414
            <value>The binder.</value>
3415
        </member>
3416
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
3417
            <summary>
3418
            Gets or sets the error handler called during serialization and deserialization.
3419
            </summary>
3420
            <value>The error handler called during serialization and deserialization.</value>
3421
        </member>
3422
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
3423
            <summary>
3424
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
3425
            </summary>
3426
            <value>The context.</value>
3427
        </member>
3428
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
3429
            <summary>
3430
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
3431
            </summary>
3432
        </member>
3433
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
3434
            <summary>
3435
            Indicates how JSON text output is formatted.
3436
            </summary>
3437
        </member>
3438
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
3439
            <summary>
3440
            Get or set how dates are written to JSON text.
3441
            </summary>
3442
        </member>
3443
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
3444
            <summary>
3445
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
3446
            </summary>
3447
        </member>
3448
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
3449
            <summary>
3450
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
3451
            </summary>
3452
        </member>
3453
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
3454
            <summary>
3455
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
3456
            </summary>
3457
        </member>
3458
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
3459
            <summary>
3460
            Gets a value indicating whether there will be a check for additional content after deserializing an object.
3461
            </summary>
3462
            <value>
3463
                    <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
3464
            </value>
3465
        </member>
3466
        <member name="T:Newtonsoft.Json.JsonValidatingReader">
3467
            <summary>
3468
            Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
3469
            </summary>
3470
        </member>
3471
        <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
3472
            <summary>
3473
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
3474
            validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
3475
            </summary>
3476
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
3477
        </member>
3478
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
3479
            <summary>
3480
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3481
            </summary>
3482
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3483
        </member>
3484
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
3485
            <summary>
3486
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
3487
            </summary>
3488
            <returns>
3489
            A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null.
3490
            </returns>
3491
        </member>
3492
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
3493
            <summary>
3494
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3495
            </summary>
3496
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3497
        </member>
3498
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
3499
            <summary>
3500
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
3501
            </summary>
3502
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3503
        </member>
3504
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
3505
            <summary>
3506
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3507
            </summary>
3508
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3509
        </member>
3510
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
3511
            <summary>
3512
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3513
            </summary>
3514
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3515
        </member>
3516
        <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
3517
            <summary>
3518
            Reads the next JSON token from the stream.
3519
            </summary>
3520
            <returns>
3521
            true if the next token was read successfully; false if there are no more tokens to read.
3522
            </returns>
3523
        </member>
3524
        <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
3525
            <summary>
3526
            Sets an event handler for receiving schema validation errors.
3527
            </summary>
3528
        </member>
3529
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
3530
            <summary>
3531
            Gets the text value of the current Json token.
3532
            </summary>
3533
            <value></value>
3534
        </member>
3535
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
3536
            <summary>
3537
            Gets the depth of the current token in the JSON document.
3538
            </summary>
3539
            <value>The depth of the current token in the JSON document.</value>
3540
        </member>
3541
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
3542
            <summary>
3543
            Gets the path of the current JSON token. 
3544
            </summary>
3545
        </member>
3546
        <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
3547
            <summary>
3548
            Gets the quotation mark character used to enclose the value of a string.
3549
            </summary>
3550
            <value></value>
3551
        </member>
3552
        <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
3553
            <summary>
3554
            Gets the type of the current Json token.
3555
            </summary>
3556
            <value></value>
3557
        </member>
3558
        <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
3559
            <summary>
3560
            Gets the Common Language Runtime (CLR) type for the current Json token.
3561
            </summary>
3562
            <value></value>
3563
        </member>
3564
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
3565
            <summary>
3566
            Gets or sets the schema.
3567
            </summary>
3568
            <value>The schema.</value>
3569
        </member>
3570
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
3571
            <summary>
3572
            Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
3573
            </summary>
3574
            <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
3575
        </member>
3576
        <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
3577
            <summary>
3578
            Compares tokens to determine whether they are equal.
3579
            </summary>
3580
        </member>
3581
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
3582
            <summary>
3583
            Determines whether the specified objects are equal.
3584
            </summary>
3585
            <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
3586
            <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
3587
            <returns>
3588
            true if the specified objects are equal; otherwise, false.
3589
            </returns>
3590
        </member>
3591
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
3592
            <summary>
3593
            Returns a hash code for the specified object.
3594
            </summary>
3595
            <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
3596
            <returns>A hash code for the specified object.</returns>
3597
            <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception>
3598
        </member>
3599
        <member name="T:Newtonsoft.Json.MemberSerialization">
3600
            <summary>
3601
            Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3602
            </summary>
3603
        </member>
3604
        <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
3605
            <summary>
3606
            All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
3607
            This is the default member serialization mode.
3608
            </summary>
3609
        </member>
3610
        <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
3611
            <summary>
3612
            Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/> are serialized.
3613
            This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute"/>.
3614
            </summary>
3615
        </member>
3616
        <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
3617
            <summary>
3618
            All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
3619
            This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
3620
            and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to false.
3621
            </summary>
3622
        </member>
3623
        <member name="T:Newtonsoft.Json.ObjectCreationHandling">
3624
            <summary>
3625
            Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3626
            </summary>
3627
        </member>
3628
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
3629
            <summary>
3630
            Reuse existing objects, create new objects when needed.
3631
            </summary>
3632
        </member>
3633
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
3634
            <summary>
3635
            Only reuse existing objects.
3636
            </summary>
3637
        </member>
3638
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
3639
            <summary>
3640
            Always create new objects.
3641
            </summary>
3642
        </member>
3643
        <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
3644
            <summary>
3645
            Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).
3646
            </summary>
3647
        </member>
3648
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
3649
            <summary>
3650
            Writes the JSON representation of the object.
3651
            </summary>
3652
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
3653
            <param name="value">The value.</param>
3654
            <param name="serializer">The calling serializer.</param>
3655
        </member>
3656
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
3657
            <summary>
3658
            Reads the JSON representation of the object.
3659
            </summary>
3660
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
3661
            <param name="objectType">Type of the object.</param>
3662
            <param name="existingValue">The existing value of object being read.</param>
3663
            <param name="serializer">The calling serializer.</param>
3664
            <returns>The object value.</returns>
3665
        </member>
3666
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
3667
            <summary>
3668
            Gets or sets the date time styles used when converting a date to and from JSON.
3669
            </summary>
3670
            <value>The date time styles used when converting a date to and from JSON.</value>
3671
        </member>
3672
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
3673
            <summary>
3674
            Gets or sets the date time format used when converting a date to and from JSON.
3675
            </summary>
3676
            <value>The date time format used when converting a date to and from JSON.</value>
3677
        </member>
3678
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
3679
            <summary>
3680
            Gets or sets the culture used when converting a date to and from JSON.
3681
            </summary>
3682
            <value>The culture used when converting a date to and from JSON.</value>
3683
        </member>
3684
        <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
3685
            <summary>
3686
            Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).
3687
            </summary>
3688
        </member>
3689
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
3690
            <summary>
3691
            Writes the JSON representation of the object.
3692
            </summary>
3693
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
3694
            <param name="value">The value.</param>
3695
            <param name="serializer">The calling serializer.</param>
3696
        </member>
3697
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
3698
            <summary>
3699
            Reads the JSON representation of the object.
3700
            </summary>
3701
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
3702
            <param name="objectType">Type of the object.</param>
3703
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
3704
            <param name="serializer">The calling serializer.</param>
3705
            <returns>The object value.</returns>
3706
        </member>
3707
        <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
3708
            <summary>
3709
            Converts XML to and from JSON.
3710
            </summary>
3711
        </member>
3712
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
3713
            <summary>
3714
            Writes the JSON representation of the object.
3715
            </summary>
3716
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
3717
            <param name="serializer">The calling serializer.</param>
3718
            <param name="value">The value.</param>
3719
        </member>
3720
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
3721
            <summary>
3722
            Reads the JSON representation of the object.
3723
            </summary>
3724
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
3725
            <param name="objectType">Type of the object.</param>
3726
            <param name="existingValue">The existing value of object being read.</param>
3727
            <param name="serializer">The calling serializer.</param>
3728
            <returns>The object value.</returns>
3729
        </member>
3730
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
3731
            <summary>
3732
            Checks if the attributeName is a namespace attribute.
3733
            </summary>
3734
            <param name="attributeName">Attribute name to test.</param>
3735
            <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
3736
            <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>
3737
        </member>
3738
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
3739
            <summary>
3740
            Determines whether this instance can convert the specified value type.
3741
            </summary>
3742
            <param name="valueType">Type of the value.</param>
3743
            <returns>
3744
                    <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
3745
            </returns>
3746
        </member>
3747
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
3748
            <summary>
3749
            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.
3750
            </summary>
3751
            <value>The name of the deserialize root element.</value>
3752
        </member>
3753
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
3754
            <summary>
3755
            Gets or sets a flag to indicate whether to write the Json.NET array attribute.
3756
            This attribute helps preserve arrays when converting the written XML back to JSON.
3757
            </summary>
3758
            <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>
3759
        </member>
3760
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
3761
            <summary>
3762
            Gets or sets a value indicating whether to write the root JSON object.
3763
            </summary>
3764
            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
3765
        </member>
3766
        <member name="T:Newtonsoft.Json.JsonTextReader">
3767
            <summary>
3768
            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
3769
            </summary>
3770
        </member>
3771
        <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
3772
            <summary>
3773
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
3774
            </summary>
3775
            <param name="reader">The <c>TextReader</c> containing the XML data to read.</param>
3776
        </member>
3777
        <member name="M:Newtonsoft.Json.JsonTextReader.Read">
3778
            <summary>
3779
            Reads the next JSON token from the stream.
3780
            </summary>
3781
            <returns>
3782
            true if the next token was read successfully; false if there are no more tokens to read.
3783
            </returns>
3784
        </member>
3785
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
3786
            <summary>
3787
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
3788
            </summary>
3789
            <returns>
3790
            A <see cref="T: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.
3791
            </returns>
3792
        </member>
3793
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
3794
            <summary>
3795
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3796
            </summary>
3797
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
3798
        </member>
3799
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
3800
            <summary>
3801
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3802
            </summary>
3803
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
3804
        </member>
3805
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
3806
            <summary>
3807
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
3808
            </summary>
3809
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3810
        </member>
3811
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
3812
            <summary>
3813
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3814
            </summary>
3815
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3816
        </member>
3817
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
3818
            <summary>
3819
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3820
            </summary>
3821
            <returns>A <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>
3822
        </member>
3823
        <member name="M:Newtonsoft.Json.JsonTextReader.Close">
3824
            <summary>
3825
            Changes the state to closed. 
3826
            </summary>
3827
        </member>
3828
        <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
3829
            <summary>
3830
            Gets a value indicating whether the class can return line information.
3831
            </summary>
3832
            <returns>
3833
                    <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
3834
            </returns>
3835
        </member>
3836
        <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
3837
            <summary>
3838
            Gets the current line number.
3839
            </summary>
3840
            <value>
3841
            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
3842
            </value>
3843
        </member>
3844
        <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
3845
            <summary>
3846
            Gets the current line position.
3847
            </summary>
3848
            <value>
3849
            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
3850
            </value>
3851
        </member>
3852
        <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
3853
            <summary>
3854
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
3855
            </summary>
3856
        </member>
3857
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
3858
            <summary>
3859
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
3860
            </summary>
3861
        </member>
3862
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
3863
            <summary>
3864
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
3865
            </summary>
3866
            <param name="propertyName">Name of the property.</param>
3867
        </member>
3868
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
3869
            <summary>
3870
            Gets or sets the converter used when serializing the property's collection items.
3871
            </summary>
3872
            <value>The collection's items converter.</value>
3873
        </member>
3874
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
3875
            <summary>
3876
            Gets or sets the null value handling used when serializing this property.
3877
            </summary>
3878
            <value>The null value handling.</value>
3879
        </member>
3880
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
3881
            <summary>
3882
            Gets or sets the default value handling used when serializing this property.
3883
            </summary>
3884
            <value>The default value handling.</value>
3885
        </member>
3886
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
3887
            <summary>
3888
            Gets or sets the reference loop handling used when serializing this property.
3889
            </summary>
3890
            <value>The reference loop handling.</value>
3891
        </member>
3892
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
3893
            <summary>
3894
            Gets or sets the object creation handling used when deserializing this property.
3895
            </summary>
3896
            <value>The object creation handling.</value>
3897
        </member>
3898
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
3899
            <summary>
3900
            Gets or sets the type name handling used when serializing this property.
3901
            </summary>
3902
            <value>The type name handling.</value>
3903
        </member>
3904
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
3905
            <summary>
3906
            Gets or sets whether this property's value is serialized as a reference.
3907
            </summary>
3908
            <value>Whether this property's value is serialized as a reference.</value>
3909
        </member>
3910
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
3911
            <summary>
3912
            Gets or sets the order of serialization and deserialization of a member.
3913
            </summary>
3914
            <value>The numeric order of serialization or deserialization.</value>
3915
        </member>
3916
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
3917
            <summary>
3918
            Gets or sets a value indicating whether this property is required.
3919
            </summary>
3920
            <value>
3921
                    A value indicating whether this property is required.
3922
            </value>
3923
        </member>
3924
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
3925
            <summary>
3926
            Gets or sets the name of the property.
3927
            </summary>
3928
            <value>The name of the property.</value>
3929
        </member>
3930
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
3931
            <summary>
3932
            Gets or sets the the reference loop handling used when serializing the property's collection items.
3933
            </summary>
3934
            <value>The collection's items reference loop handling.</value>
3935
        </member>
3936
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
3937
            <summary>
3938
            Gets or sets the the type name handling used when serializing the property's collection items.
3939
            </summary>
3940
            <value>The collection's items type name handling.</value>
3941
        </member>
3942
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
3943
            <summary>
3944
            Gets or sets whether this property's collection items are serialized as a reference.
3945
            </summary>
3946
            <value>Whether this property's collection items are serialized as a reference.</value>
3947
        </member>
3948
        <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
3949
            <summary>
3950
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
3951
            </summary>
3952
        </member>
3953
        <member name="T:Newtonsoft.Json.JsonTextWriter">
3954
            <summary>
3955
            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
3956
            </summary>
3957
        </member>
3958
        <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
3959
            <summary>
3960
            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>. 
3961
            </summary>
3962
            <param name="textWriter">The <c>TextWriter</c> to write to.</param>
3963
        </member>
3964
        <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
3965
            <summary>
3966
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
3967
            </summary>
3968
        </member>
3969
        <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
3970
            <summary>
3971
            Closes this stream and the underlying stream.
3972
            </summary>
3973
        </member>
3974
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
3975
            <summary>
3976
            Writes the beginning of a Json object.
3977
            </summary>
3978
        </member>
3979
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
3980
            <summary>
3981
            Writes the beginning of a Json array.
3982
            </summary>
3983
        </member>
3984
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
3985
            <summary>
3986
            Writes the start of a constructor with the given name.
3987
            </summary>
3988
            <param name="name">The name of the constructor.</param>
3989
        </member>
3990
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
3991
            <summary>
3992
            Writes the specified end token.
3993
            </summary>
3994
            <param name="token">The end token to write.</param>
3995
        </member>
3996
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
3997
            <summary>
3998
            Writes the property name of a name/value pair on a Json object.
3999
            </summary>
4000
            <param name="name">The name of the property.</param>
4001
        </member>
4002
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
4003
            <summary>
4004
            Writes indent characters.
4005
            </summary>
4006
        </member>
4007
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
4008
            <summary>
4009
            Writes the JSON value delimiter.
4010
            </summary>
4011
        </member>
4012
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
4013
            <summary>
4014
            Writes an indent space.
4015
            </summary>
4016
        </member>
4017
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
4018
            <summary>
4019
            Writes a null value.
4020
            </summary>
4021
        </member>
4022
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
4023
            <summary>
4024
            Writes an undefined value.
4025
            </summary>
4026
        </member>
4027
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
4028
            <summary>
4029
            Writes raw JSON.
4030
            </summary>
4031
            <param name="json">The raw JSON to write.</param>
4032
        </member>
4033
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
4034
            <summary>
4035
            Writes a <see cref="T:System.String"/> value.
4036
            </summary>
4037
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
4038
        </member>
4039
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
4040
            <summary>
4041
            Writes a <see cref="T:System.Int32"/> value.
4042
            </summary>
4043
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
4044
        </member>
4045
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
4046
            <summary>
4047
            Writes a <see cref="T:System.UInt32"/> value.
4048
            </summary>
4049
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
4050
        </member>
4051
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
4052
            <summary>
4053
            Writes a <see cref="T:System.Int64"/> value.
4054
            </summary>
4055
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
4056
        </member>
4057
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
4058
            <summary>
4059
            Writes a <see cref="T:System.UInt64"/> value.
4060
            </summary>
4061
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
4062
        </member>
4063
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
4064
            <summary>
4065
            Writes a <see cref="T:System.Single"/> value.
4066
            </summary>
4067
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
4068
        </member>
4069
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
4070
            <summary>
4071
            Writes a <see cref="T:System.Double"/> value.
4072
            </summary>
4073
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
4074
        </member>
4075
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
4076
            <summary>
4077
            Writes a <see cref="T:System.Boolean"/> value.
4078
            </summary>
4079
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
4080
        </member>
4081
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
4082
            <summary>
4083
            Writes a <see cref="T:System.Int16"/> value.
4084
            </summary>
4085
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
4086
        </member>
4087
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
4088
            <summary>
4089
            Writes a <see cref="T:System.UInt16"/> value.
4090
            </summary>
4091
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
4092
        </member>
4093
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
4094
            <summary>
4095
            Writes a <see cref="T:System.Char"/> value.
4096
            </summary>
4097
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
4098
        </member>
4099
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
4100
            <summary>
4101
            Writes a <see cref="T:System.Byte"/> value.
4102
            </summary>
4103
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
4104
        </member>
4105
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
4106
            <summary>
4107
            Writes a <see cref="T:System.SByte"/> value.
4108
            </summary>
4109
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
4110
        </member>
4111
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
4112
            <summary>
4113
            Writes a <see cref="T:System.Decimal"/> value.
4114
            </summary>
4115
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
4116
        </member>
4117
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
4118
            <summary>
4119
            Writes a <see cref="T:System.DateTime"/> value.
4120
            </summary>
4121
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
4122
        </member>
4123
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
4124
            <summary>
4125
            Writes a <see cref="T:Byte[]"/> value.
4126
            </summary>
4127
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
4128
        </member>
4129
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
4130
            <summary>
4131
            Writes a <see cref="T:System.DateTimeOffset"/> value.
4132
            </summary>
4133
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
4134
        </member>
4135
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
4136
            <summary>
4137
            Writes a <see cref="T:System.Guid"/> value.
4138
            </summary>
4139
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
4140
        </member>
4141
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
4142
            <summary>
4143
            Writes a <see cref="T:System.TimeSpan"/> value.
4144
            </summary>
4145
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
4146
        </member>
4147
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
4148
            <summary>
4149
            Writes a <see cref="T:System.Uri"/> value.
4150
            </summary>
4151
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
4152
        </member>
4153
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
4154
            <summary>
4155
            Writes out a comment <code>/*...*/</code> containing the specified text. 
4156
            </summary>
4157
            <param name="text">Text to place inside the comment.</param>
4158
        </member>
4159
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
4160
            <summary>
4161
            Writes out the given white space.
4162
            </summary>
4163
            <param name="ws">The string of white space characters.</param>
4164
        </member>
4165
        <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
4166
            <summary>
4167
            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>.
4168
            </summary>
4169
        </member>
4170
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
4171
            <summary>
4172
            Gets or sets which character to use to quote attribute values.
4173
            </summary>
4174
        </member>
4175
        <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
4176
            <summary>
4177
            Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
4178
            </summary>
4179
        </member>
4180
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
4181
            <summary>
4182
            Gets or sets a value indicating whether object names will be surrounded with quotes.
4183
            </summary>
4184
        </member>
4185
        <member name="T:Newtonsoft.Json.JsonWriterException">
4186
            <summary>
4187
            The exception thrown when an error occurs while reading Json text.
4188
            </summary>
4189
        </member>
4190
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
4191
            <summary>
4192
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
4193
            </summary>
4194
        </member>
4195
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
4196
            <summary>
4197
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
4198
            with a specified error message.
4199
            </summary>
4200
            <param name="message">The error message that explains the reason for the exception.</param>
4201
        </member>
4202
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
4203
            <summary>
4204
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
4205
            with a specified error message and a reference to the inner exception that is the cause of this exception.
4206
            </summary>
4207
            <param name="message">The error message that explains the reason for the exception.</param>
4208
            <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>
4209
        </member>
4210
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
4211
            <summary>
4212
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
4213
            </summary>
4214
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4215
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4216
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
4217
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
4218
        </member>
4219
        <member name="P:Newtonsoft.Json.JsonWriterException.Path">
4220
            <summary>
4221
            Gets the path to the JSON where the error occurred.
4222
            </summary>
4223
            <value>The path to the JSON where the error occurred.</value>
4224
        </member>
4225
        <member name="T:Newtonsoft.Json.JsonReaderException">
4226
            <summary>
4227
            The exception thrown when an error occurs while reading Json text.
4228
            </summary>
4229
        </member>
4230
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
4231
            <summary>
4232
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
4233
            </summary>
4234
        </member>
4235
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
4236
            <summary>
4237
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
4238
            with a specified error message.
4239
            </summary>
4240
            <param name="message">The error message that explains the reason for the exception.</param>
4241
        </member>
4242
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
4243
            <summary>
4244
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
4245
            with a specified error message and a reference to the inner exception that is the cause of this exception.
4246
            </summary>
4247
            <param name="message">The error message that explains the reason for the exception.</param>
4248
            <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>
4249
        </member>
4250
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
4251
            <summary>
4252
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
4253
            </summary>
4254
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4255
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4256
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
4257
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
4258
        </member>
4259
        <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
4260
            <summary>
4261
            Gets the line number indicating where the error occurred.
4262
            </summary>
4263
            <value>The line number indicating where the error occurred.</value>
4264
        </member>
4265
        <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
4266
            <summary>
4267
            Gets the line position indicating where the error occurred.
4268
            </summary>
4269
            <value>The line position indicating where the error occurred.</value>
4270
        </member>
4271
        <member name="P:Newtonsoft.Json.JsonReaderException.Path">
4272
            <summary>
4273
            Gets the path to the JSON where the error occurred.
4274
            </summary>
4275
            <value>The path to the JSON where the error occurred.</value>
4276
        </member>
4277
        <member name="T:Newtonsoft.Json.JsonConverterCollection">
4278
            <summary>
4279
            Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4280
            </summary>
4281
        </member>
4282
        <member name="T:Newtonsoft.Json.JsonConvert">
4283
            <summary>
4284
            Provides methods for converting between common language runtime types and JSON types.
4285
            </summary>
4286
            <example>
4287
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
4288
            </example>
4289
        </member>
4290
        <member name="F:Newtonsoft.Json.JsonConvert.True">
4291
            <summary>
4292
            Represents JavaScript's boolean value true as a string. This field is read-only.
4293
            </summary>
4294
        </member>
4295
        <member name="F:Newtonsoft.Json.JsonConvert.False">
4296
            <summary>
4297
            Represents JavaScript's boolean value false as a string. This field is read-only.
4298
            </summary>
4299
        </member>
4300
        <member name="F:Newtonsoft.Json.JsonConvert.Null">
4301
            <summary>
4302
            Represents JavaScript's null as a string. This field is read-only.
4303
            </summary>
4304
        </member>
4305
        <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
4306
            <summary>
4307
            Represents JavaScript's undefined as a string. This field is read-only.
4308
            </summary>
4309
        </member>
4310
        <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
4311
            <summary>
4312
            Represents JavaScript's positive infinity as a string. This field is read-only.
4313
            </summary>
4314
        </member>
4315
        <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
4316
            <summary>
4317
            Represents JavaScript's negative infinity as a string. This field is read-only.
4318
            </summary>
4319
        </member>
4320
        <member name="F:Newtonsoft.Json.JsonConvert.NaN">
4321
            <summary>
4322
            Represents JavaScript's NaN as a string. This field is read-only.
4323
            </summary>
4324
        </member>
4325
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
4326
            <summary>
4327
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
4328
            </summary>
4329
            <param name="value">The value to convert.</param>
4330
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
4331
        </member>
4332
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
4333
            <summary>
4334
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
4335
            </summary>
4336
            <param name="value">The value to convert.</param>
4337
            <param name="format">The format the date will be converted to.</param>
4338
            <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
4339
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
4340
        </member>
4341
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
4342
            <summary>
4343
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
4344
            </summary>
4345
            <param name="value">The value to convert.</param>
4346
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
4347
        </member>
4348
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
4349
            <summary>
4350
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
4351
            </summary>
4352
            <param name="value">The value to convert.</param>
4353
            <param name="format">The format the date will be converted to.</param>
4354
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
4355
        </member>
4356
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
4357
            <summary>
4358
            Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
4359
            </summary>
4360
            <param name="value">The value to convert.</param>
4361
            <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
4362
        </member>
4363
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
4364
            <summary>
4365
            Converts the <see cref="T:System.Char"/> to its JSON string representation.
4366
            </summary>
4367
            <param name="value">The value to convert.</param>
4368
            <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
4369
        </member>
4370
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
4371
            <summary>
4372
            Converts the <see cref="T:System.Enum"/> to its JSON string representation.
4373
            </summary>
4374
            <param name="value">The value to convert.</param>
4375
            <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
4376
        </member>
4377
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
4378
            <summary>
4379
            Converts the <see cref="T:System.Int32"/> to its JSON string representation.
4380
            </summary>
4381
            <param name="value">The value to convert.</param>
4382
            <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
4383
        </member>
4384
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
4385
            <summary>
4386
            Converts the <see cref="T:System.Int16"/> to its JSON string representation.
4387
            </summary>
4388
            <param name="value">The value to convert.</param>
4389
            <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
4390
        </member>
4391
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
4392
            <summary>
4393
            Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
4394
            </summary>
4395
            <param name="value">The value to convert.</param>
4396
            <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
4397
        </member>
4398
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
4399
            <summary>
4400
            Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
4401
            </summary>
4402
            <param name="value">The value to convert.</param>
4403
            <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
4404
        </member>
4405
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
4406
            <summary>
4407
            Converts the <see cref="T:System.Int64"/>  to its JSON string representation.
4408
            </summary>
4409
            <param name="value">The value to convert.</param>
4410
            <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
4411
        </member>
4412
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
4413
            <summary>
4414
            Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
4415
            </summary>
4416
            <param name="value">The value to convert.</param>
4417
            <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
4418
        </member>
4419
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
4420
            <summary>
4421
            Converts the <see cref="T:System.Single"/> to its JSON string representation.
4422
            </summary>
4423
            <param name="value">The value to convert.</param>
4424
            <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
4425
        </member>
4426
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
4427
            <summary>
4428
            Converts the <see cref="T:System.Double"/> to its JSON string representation.
4429
            </summary>
4430
            <param name="value">The value to convert.</param>
4431
            <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
4432
        </member>
4433
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
4434
            <summary>
4435
            Converts the <see cref="T:System.Byte"/> to its JSON string representation.
4436
            </summary>
4437
            <param name="value">The value to convert.</param>
4438
            <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
4439
        </member>
4440
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
4441
            <summary>
4442
            Converts the <see cref="T:System.SByte"/> to its JSON string representation.
4443
            </summary>
4444
            <param name="value">The value to convert.</param>
4445
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
4446
        </member>
4447
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
4448
            <summary>
4449
            Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
4450
            </summary>
4451
            <param name="value">The value to convert.</param>
4452
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
4453
        </member>
4454
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
4455
            <summary>
4456
            Converts the <see cref="T:System.Guid"/> to its JSON string representation.
4457
            </summary>
4458
            <param name="value">The value to convert.</param>
4459
            <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
4460
        </member>
4461
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
4462
            <summary>
4463
            Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
4464
            </summary>
4465
            <param name="value">The value to convert.</param>
4466
            <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
4467
        </member>
4468
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
4469
            <summary>
4470
            Converts the <see cref="T:System.Uri"/> to its JSON string representation.
4471
            </summary>
4472
            <param name="value">The value to convert.</param>
4473
            <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
4474
        </member>
4475
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
4476
            <summary>
4477
            Converts the <see cref="T:System.String"/> to its JSON string representation.
4478
            </summary>
4479
            <param name="value">The value to convert.</param>
4480
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
4481
        </member>
4482
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
4483
            <summary>
4484
            Converts the <see cref="T:System.String"/> to its JSON string representation.
4485
            </summary>
4486
            <param name="value">The value to convert.</param>
4487
            <param name="delimiter">The string delimiter character.</param>
4488
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
4489
        </member>
4490
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
4491
            <summary>
4492
            Converts the <see cref="T:System.Object"/> to its JSON string representation.
4493
            </summary>
4494
            <param name="value">The value to convert.</param>
4495
            <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
4496
        </member>
4497
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
4498
            <summary>
4499
            Serializes the specified object to a JSON string.
4500
            </summary>
4501
            <param name="value">The object to serialize.</param>
4502
            <returns>A JSON string representation of the object.</returns>
4503
        </member>
4504
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
4505
            <summary>
4506
            Serializes the specified object to a JSON string.
4507
            </summary>
4508
            <param name="value">The object to serialize.</param>
4509
            <param name="formatting">Indicates how the output is formatted.</param>
4510
            <returns>
4511
            A JSON string representation of the object.
4512
            </returns>
4513
        </member>
4514
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
4515
            <summary>
4516
            Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4517
            </summary>
4518
            <param name="value">The object to serialize.</param>
4519
            <param name="converters">A collection converters used while serializing.</param>
4520
            <returns>A JSON string representation of the object.</returns>
4521
        </member>
4522
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
4523
            <summary>
4524
            Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4525
            </summary>
4526
            <param name="value">The object to serialize.</param>
4527
            <param name="formatting">Indicates how the output is formatted.</param>
4528
            <param name="converters">A collection converters used while serializing.</param>
4529
            <returns>A JSON string representation of the object.</returns>
4530
        </member>
4531
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
4532
            <summary>
4533
            Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4534
            </summary>
4535
            <param name="value">The object to serialize.</param>
4536
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4537
            If this is null, default serialization settings will be is used.</param>
4538
            <returns>
4539
            A JSON string representation of the object.
4540
            </returns>
4541
        </member>
4542
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
4543
            <summary>
4544
            Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4545
            </summary>
4546
            <param name="value">The object to serialize.</param>
4547
            <param name="formatting">Indicates how the output is formatted.</param>
4548
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4549
            If this is null, default serialization settings will be is used.</param>
4550
            <returns>
4551
            A JSON string representation of the object.
4552
            </returns>
4553
        </member>
4554
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object)">
4555
            <summary>
4556
            Asynchronously serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4557
            </summary>
4558
            <param name="value">The object to serialize.</param>
4559
            <returns>
4560
            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
4561
            </returns>
4562
        </member>
4563
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting)">
4564
            <summary>
4565
            Asynchronously serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4566
            </summary>
4567
            <param name="value">The object to serialize.</param>
4568
            <param name="formatting">Indicates how the output is formatted.</param>
4569
            <returns>
4570
            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
4571
            </returns>
4572
        </member>
4573
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
4574
            <summary>
4575
            Asynchronously serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4576
            </summary>
4577
            <param name="value">The object to serialize.</param>
4578
            <param name="formatting">Indicates how the output is formatted.</param>
4579
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4580
            If this is null, default serialization settings will be is used.</param>
4581
            <returns>
4582
            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
4583
            </returns>
4584
        </member>
4585
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
4586
            <summary>
4587
            Deserializes the JSON to a .NET object.
4588
            </summary>
4589
            <param name="value">The JSON to deserialize.</param>
4590
            <returns>The deserialized object from the Json string.</returns>
4591
        </member>
4592
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
4593
            <summary>
4594
            Deserializes the JSON to a .NET object.
4595
            </summary>
4596
            <param name="value">The JSON to deserialize.</param>
4597
            <param name="settings">
4598
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
4599
            If this is null, default serialization settings will be is used.
4600
            </param>
4601
            <returns>The deserialized object from the JSON string.</returns>
4602
        </member>
4603
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
4604
            <summary>
4605
            Deserializes the JSON to the specified .NET type.
4606
            </summary>
4607
            <param name="value">The JSON to deserialize.</param>
4608
            <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
4609
            <returns>The deserialized object from the Json string.</returns>
4610
        </member>
4611
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
4612
            <summary>
4613
            Deserializes the JSON to the specified .NET type.
4614
            </summary>
4615
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
4616
            <param name="value">The JSON to deserialize.</param>
4617
            <returns>The deserialized object from the Json string.</returns>
4618
        </member>
4619
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
4620
            <summary>
4621
            Deserializes the JSON to the given anonymous type.
4622
            </summary>
4623
            <typeparam name="T">
4624
            The anonymous type to deserialize to. This can't be specified
4625
            traditionally and must be infered from the anonymous type passed
4626
            as a parameter.
4627
            </typeparam>
4628
            <param name="value">The JSON to deserialize.</param>
4629
            <param name="anonymousTypeObject">The anonymous type object.</param>
4630
            <returns>The deserialized anonymous type from the JSON string.</returns>
4631
        </member>
4632
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
4633
            <summary>
4634
            Deserializes the JSON to the specified .NET type.
4635
            </summary>
4636
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
4637
            <param name="value">The JSON to deserialize.</param>
4638
            <param name="converters">Converters to use while deserializing.</param>
4639
            <returns>The deserialized object from the JSON string.</returns>
4640
        </member>
4641
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
4642
            <summary>
4643
            Deserializes the JSON to the specified .NET type.
4644
            </summary>
4645
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
4646
            <param name="value">The object to deserialize.</param>
4647
            <param name="settings">
4648
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
4649
            If this is null, default serialization settings will be is used.
4650
            </param>
4651
            <returns>The deserialized object from the JSON string.</returns>
4652
        </member>
4653
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
4654
            <summary>
4655
            Deserializes the JSON to the specified .NET type.
4656
            </summary>
4657
            <param name="value">The JSON to deserialize.</param>
4658
            <param name="type">The type of the object to deserialize.</param>
4659
            <param name="converters">Converters to use while deserializing.</param>
4660
            <returns>The deserialized object from the JSON string.</returns>
4661
        </member>
4662
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
4663
            <summary>
4664
            Deserializes the JSON to the specified .NET type.
4665
            </summary>
4666
            <param name="value">The JSON to deserialize.</param>
4667
            <param name="type">The type of the object to deserialize to.</param>
4668
            <param name="settings">
4669
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
4670
            If this is null, default serialization settings will be is used.
4671
            </param>
4672
            <returns>The deserialized object from the JSON string.</returns>
4673
        </member>
4674
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String)">
4675
            <summary>
4676
            Asynchronously deserializes the JSON to the specified .NET type.
4677
            </summary>
4678
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
4679
            <param name="value">The JSON to deserialize.</param>
4680
            <returns>
4681
            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
4682
            </returns>
4683
        </member>
4684
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
4685
            <summary>
4686
            Asynchronously deserializes the JSON to the specified .NET type.
4687
            </summary>
4688
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
4689
            <param name="value">The JSON to deserialize.</param>
4690
            <param name="settings">
4691
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
4692
            If this is null, default serialization settings will be is used.
4693
            </param>
4694
            <returns>
4695
            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
4696
            </returns>
4697
        </member>
4698
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String)">
4699
            <summary>
4700
            Asynchronously deserializes the JSON to the specified .NET type.
4701
            </summary>
4702
            <param name="value">The JSON to deserialize.</param>
4703
            <returns>
4704
            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
4705
            </returns>
4706
        </member>
4707
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
4708
            <summary>
4709
            Asynchronously deserializes the JSON to the specified .NET type.
4710
            </summary>
4711
            <param name="value">The JSON to deserialize.</param>
4712
            <param name="type">The type of the object to deserialize to.</param>
4713
            <param name="settings">
4714
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
4715
            If this is null, default serialization settings will be is used.
4716
            </param>
4717
            <returns>
4718
            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
4719
            </returns>
4720
        </member>
4721
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
4722
            <summary>
4723
            Populates the object with values from the JSON string.
4724
            </summary>
4725
            <param name="value">The JSON to populate values from.</param>
4726
            <param name="target">The target object to populate values onto.</param>
4727
        </member>
4728
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
4729
            <summary>
4730
            Populates the object with values from the JSON string.
4731
            </summary>
4732
            <param name="value">The JSON to populate values from.</param>
4733
            <param name="target">The target object to populate values onto.</param>
4734
            <param name="settings">
4735
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
4736
            If this is null, default serialization settings will be is used.
4737
            </param>
4738
        </member>
4739
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObjectAsync(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
4740
            <summary>
4741
            Asynchronously populates the object with values from the JSON string.
4742
            </summary>
4743
            <param name="value">The JSON to populate values from.</param>
4744
            <param name="target">The target object to populate values onto.</param>
4745
            <param name="settings">
4746
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
4747
            If this is null, default serialization settings will be is used.
4748
            </param>
4749
            <returns>
4750
            A task that represents the asynchronous populate operation.
4751
            </returns>
4752
        </member>
4753
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
4754
            <summary>
4755
            Serializes the XML node to a JSON string.
4756
            </summary>
4757
            <param name="node">The node to serialize.</param>
4758
            <returns>A JSON string of the XmlNode.</returns>
4759
        </member>
4760
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
4761
            <summary>
4762
            Serializes the XML node to a JSON string.
4763
            </summary>
4764
            <param name="node">The node to serialize.</param>
4765
            <param name="formatting">Indicates how the output is formatted.</param>
4766
            <returns>A JSON string of the XmlNode.</returns>
4767
        </member>
4768
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
4769
            <summary>
4770
            Serializes the XML node to a JSON string.
4771
            </summary>
4772
            <param name="node">The node to serialize.</param>
4773
            <param name="formatting">Indicates how the output is formatted.</param>
4774
            <param name="omitRootObject">Omits writing the root object.</param>
4775
            <returns>A JSON string of the XmlNode.</returns>
4776
        </member>
4777
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
4778
            <summary>
4779
            Deserializes the XmlNode from a JSON string.
4780
            </summary>
4781
            <param name="value">The JSON string.</param>
4782
            <returns>The deserialized XmlNode</returns>
4783
        </member>
4784
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
4785
            <summary>
4786
            Deserializes the XmlNode from a JSON string nested in a root elment.
4787
            </summary>
4788
            <param name="value">The JSON string.</param>
4789
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
4790
            <returns>The deserialized XmlNode</returns>
4791
        </member>
4792
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
4793
            <summary>
4794
            Deserializes the XmlNode from a JSON string nested in a root elment.
4795
            </summary>
4796
            <param name="value">The JSON string.</param>
4797
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
4798
            <param name="writeArrayAttribute">
4799
            A flag to indicate whether to write the Json.NET array attribute.
4800
            This attribute helps preserve arrays when converting the written XML back to JSON.
4801
            </param>
4802
            <returns>The deserialized XmlNode</returns>
4803
        </member>
4804
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
4805
            <summary>
4806
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
4807
            </summary>
4808
            <param name="node">The node to convert to JSON.</param>
4809
            <returns>A JSON string of the XNode.</returns>
4810
        </member>
4811
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
4812
            <summary>
4813
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
4814
            </summary>
4815
            <param name="node">The node to convert to JSON.</param>
4816
            <param name="formatting">Indicates how the output is formatted.</param>
4817
            <returns>A JSON string of the XNode.</returns>
4818
        </member>
4819
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
4820
            <summary>
4821
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
4822
            </summary>
4823
            <param name="node">The node to serialize.</param>
4824
            <param name="formatting">Indicates how the output is formatted.</param>
4825
            <param name="omitRootObject">Omits writing the root object.</param>
4826
            <returns>A JSON string of the XNode.</returns>
4827
        </member>
4828
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
4829
            <summary>
4830
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.
4831
            </summary>
4832
            <param name="value">The JSON string.</param>
4833
            <returns>The deserialized XNode</returns>
4834
        </member>
4835
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
4836
            <summary>
4837
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment.
4838
            </summary>
4839
            <param name="value">The JSON string.</param>
4840
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
4841
            <returns>The deserialized XNode</returns>
4842
        </member>
4843
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
4844
            <summary>
4845
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment.
4846
            </summary>
4847
            <param name="value">The JSON string.</param>
4848
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
4849
            <param name="writeArrayAttribute">
4850
            A flag to indicate whether to write the Json.NET array attribute.
4851
            This attribute helps preserve arrays when converting the written XML back to JSON.
4852
            </param>
4853
            <returns>The deserialized XNode</returns>
4854
        </member>
4855
        <member name="T:Newtonsoft.Json.JsonSerializationException">
4856
            <summary>
4857
            The exception thrown when an error occurs during Json serialization or deserialization.
4858
            </summary>
4859
        </member>
4860
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
4861
            <summary>
4862
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
4863
            </summary>
4864
        </member>
4865
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
4866
            <summary>
4867
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
4868
            with a specified error message.
4869
            </summary>
4870
            <param name="message">The error message that explains the reason for the exception.</param>
4871
        </member>
4872
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
4873
            <summary>
4874
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
4875
            with a specified error message and a reference to the inner exception that is the cause of this exception.
4876
            </summary>
4877
            <param name="message">The error message that explains the reason for the exception.</param>
4878
            <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>
4879
        </member>
4880
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
4881
            <summary>
4882
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
4883
            </summary>
4884
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4885
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4886
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
4887
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
4888
        </member>
4889
        <member name="T:Newtonsoft.Json.JsonSerializer">
4890
            <summary>
4891
            Serializes and deserializes objects into and from the JSON format.
4892
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
4893
            </summary>
4894
        </member>
4895
        <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
4896
            <summary>
4897
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
4898
            </summary>
4899
        </member>
4900
        <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
4901
            <summary>
4902
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4903
            </summary>
4904
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
4905
            <returns>A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.</returns>
4906
        </member>
4907
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
4908
            <summary>
4909
            Populates the JSON values onto the target object.
4910
            </summary>
4911
            <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
4912
            <param name="target">The target object to populate values onto.</param>
4913
        </member>
4914
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
4915
            <summary>
4916
            Populates the JSON values onto the target object.
4917
            </summary>
4918
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
4919
            <param name="target">The target object to populate values onto.</param>
4920
        </member>
4921
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
4922
            <summary>
4923
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
4924
            </summary>
4925
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
4926
            <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
4927
        </member>
4928
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
4929
            <summary>
4930
            Deserializes the Json structure contained by the specified <see cref="T:System.IO.StringReader"/>
4931
            into an instance of the specified type.
4932
            </summary>
4933
            <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
4934
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
4935
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
4936
        </member>
4937
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
4938
            <summary>
4939
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
4940
            into an instance of the specified type.
4941
            </summary>
4942
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
4943
            <typeparam name="T">The type of the object to deserialize.</typeparam>
4944
            <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
4945
        </member>
4946
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
4947
            <summary>
4948
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
4949
            into an instance of the specified type.
4950
            </summary>
4951
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
4952
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
4953
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
4954
        </member>
4955
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
4956
            <summary>
4957
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
4958
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
4959
            </summary>
4960
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
4961
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
4962
        </member>
4963
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
4964
            <summary>
4965
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
4966
            to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>. 
4967
            </summary>
4968
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
4969
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
4970
        </member>
4971
        <member name="E:Newtonsoft.Json.JsonSerializer.Error">
4972
            <summary>
4973
            Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
4974
            </summary>
4975
        </member>
4976
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
4977
            <summary>
4978
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
4979
            </summary>
4980
        </member>
4981
        <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
4982
            <summary>
4983
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
4984
            </summary>
4985
        </member>
4986
        <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
4987
            <summary>
4988
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
4989
            </summary>
4990
            <value>The trace writer.</value>
4991
        </member>
4992
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
4993
            <summary>
4994
            Gets or sets how type name writing and reading is handled by the serializer.
4995
            </summary>
4996
        </member>
4997
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
4998
            <summary>
4999
            Gets or sets how a type name assembly is written and resolved by the serializer.
5000
            </summary>
5001
            <value>The type name assembly format.</value>
5002
        </member>
5003
        <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
5004
            <summary>
5005
            Gets or sets how object references are preserved by the serializer.
5006
            </summary>
5007
        </member>
5008
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
5009
            <summary>
5010
            Get or set how reference loops (e.g. a class referencing itself) is handled.
5011
            </summary>
5012
        </member>
5013
        <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
5014
            <summary>
5015
            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
5016
            </summary>
5017
        </member>
5018
        <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
5019
            <summary>
5020
            Get or set how null values are handled during serialization and deserialization.
5021
            </summary>
5022
        </member>
5023
        <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
5024
            <summary>
5025
            Get or set how null default are handled during serialization and deserialization.
5026
            </summary>
5027
        </member>
5028
        <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
5029
            <summary>
5030
            Gets or sets how objects are created during deserialization.
5031
            </summary>
5032
            <value>The object creation handling.</value>
5033
        </member>
5034
        <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
5035
            <summary>
5036
            Gets or sets how constructors are used during deserialization.
5037
            </summary>
5038
            <value>The constructor handling.</value>
5039
        </member>
5040
        <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
5041
            <summary>
5042
            Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
5043
            </summary>
5044
            <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
5045
        </member>
5046
        <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
5047
            <summary>
5048
            Gets or sets the contract resolver used by the serializer when
5049
            serializing .NET objects to JSON and vice versa.
5050
            </summary>
5051
        </member>
5052
        <member name="P:Newtonsoft.Json.JsonSerializer.Context">
5053
            <summary>
5054
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
5055
            </summary>
5056
            <value>The context.</value>
5057
        </member>
5058
        <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
5059
            <summary>
5060
            Indicates how JSON text output is formatted.
5061
            </summary>
5062
        </member>
5063
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
5064
            <summary>
5065
            Get or set how dates are written to JSON text.
5066
            </summary>
5067
        </member>
5068
        <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
5069
            <summary>
5070
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
5071
            </summary>
5072
        </member>
5073
        <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
5074
            <summary>
5075
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
5076
            </summary>
5077
        </member>
5078
        <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
5079
            <summary>
5080
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
5081
            </summary>
5082
        </member>
5083
        <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
5084
            <summary>
5085
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
5086
            </summary>
5087
        </member>
5088
        <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
5089
            <summary>
5090
            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
5091
            </summary>
5092
            <value>
5093
                    <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
5094
            </value>
5095
        </member>
5096
        <member name="T:Newtonsoft.Json.Linq.Extensions">
5097
            <summary>
5098
            Contains the LINQ to JSON extension methods.
5099
            </summary>
5100
        </member>
5101
        <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
5102
            <summary>
5103
            Returns a collection of tokens that contains the ancestors of every token in the source collection.
5104
            </summary>
5105
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
5106
            <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>
5107
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the ancestors of every node in the source collection.</returns>
5108
        </member>
5109
        <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
5110
            <summary>
5111
            Returns a collection of tokens that contains the descendants of every token in the source collection.
5112
            </summary>
5113
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
5114
            <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>
5115
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the descendants of every node in the source collection.</returns>
5116
        </member>
5117
        <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
5118
            <summary>
5119
            Returns a collection of child properties of every object in the source collection.
5120
            </summary>
5121
            <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>
5122
            <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>
5123
        </member>
5124
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
5125
            <summary>
5126
            Returns a collection of child values of every object in the source collection with the given key.
5127
            </summary>
5128
            <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>
5129
            <param name="key">The token key.</param>
5130
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every node in the source collection with the given key.</returns>
5131
        </member>
5132
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5133
            <summary>
5134
            Returns a collection of child values of every object in the source collection.
5135
            </summary>
5136
            <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>
5137
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every node in the source collection.</returns>
5138
        </member>
5139
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
5140
            <summary>
5141
            Returns a collection of converted child values of every object in the source collection with the given key.
5142
            </summary>
5143
            <typeparam name="U">The type to convert the values to.</typeparam>
5144
            <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>
5145
            <param name="key">The token key.</param>
5146
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection with the given key.</returns>
5147
        </member>
5148
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5149
            <summary>
5150
            Returns a collection of converted child values of every object in the source collection.
5151
            </summary>
5152
            <typeparam name="U">The type to convert the values to.</typeparam>
5153
            <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>
5154
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection.</returns>
5155
        </member>
5156
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5157
            <summary>
5158
            Converts the value.
5159
            </summary>
5160
            <typeparam name="U">The type to convert the value to.</typeparam>
5161
            <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>
5162
            <returns>A converted value.</returns>
5163
        </member>
5164
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
5165
            <summary>
5166
            Converts the value.
5167
            </summary>
5168
            <typeparam name="T">The source collection type.</typeparam>
5169
            <typeparam name="U">The type to convert the value to.</typeparam>
5170
            <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>
5171
            <returns>A converted value.</returns>
5172
        </member>
5173
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
5174
            <summary>
5175
            Returns a collection of child tokens of every array in the source collection.
5176
            </summary>
5177
            <typeparam name="T">The source collection type.</typeparam>
5178
            <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>
5179
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every node in the source collection.</returns>
5180
        </member>
5181
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
5182
            <summary>
5183
            Returns a collection of converted child tokens of every array in the source collection.
5184
            </summary>
5185
            <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>
5186
            <typeparam name="U">The type to convert the values to.</typeparam>
5187
            <typeparam name="T">The source collection type.</typeparam>
5188
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection.</returns>
5189
        </member>
5190
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5191
            <summary>
5192
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
5193
            </summary>
5194
            <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>
5195
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
5196
        </member>
5197
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
5198
            <summary>
5199
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
5200
            </summary>
5201
            <typeparam name="T">The source collection type.</typeparam>
5202
            <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>
5203
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
5204
        </member>
5205
        <member name="T:Newtonsoft.Json.Linq.JConstructor">
5206
            <summary>
5207
            Represents a JSON constructor.
5208
            </summary>
5209
        </member>
5210
        <member name="T:Newtonsoft.Json.Linq.JContainer">
5211
            <summary>
5212
            Represents a token that can contain other tokens.
5213
            </summary>
5214
        </member>
5215
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
5216
            <summary>
5217
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
5218
            </summary>
5219
            <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
5220
        </member>
5221
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
5222
            <summary>
5223
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
5224
            </summary>
5225
            <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
5226
        </member>
5227
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
5228
            <summary>
5229
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged"/> event.
5230
            </summary>
5231
            <param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> instance containing the event data.</param>
5232
        </member>
5233
        <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
5234
            <summary>
5235
            Returns a collection of the child tokens of this token, in document order.
5236
            </summary>
5237
            <returns>
5238
            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.
5239
            </returns>
5240
        </member>
5241
        <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
5242
            <summary>
5243
            Returns a collection of the child values of this token, in document order.
5244
            </summary>
5245
            <typeparam name="T">The type to convert the values to.</typeparam>
5246
            <returns>
5247
            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.
5248
            </returns>
5249
        </member>
5250
        <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
5251
            <summary>
5252
            Returns a collection of the descendant tokens for this token in document order.
5253
            </summary>
5254
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
5255
        </member>
5256
        <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
5257
            <summary>
5258
            Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5259
            </summary>
5260
            <param name="content">The content to be added.</param>
5261
        </member>
5262
        <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
5263
            <summary>
5264
            Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5265
            </summary>
5266
            <param name="content">The content to be added.</param>
5267
        </member>
5268
        <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
5269
            <summary>
5270
            Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5271
            </summary>
5272
            <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
5273
        </member>
5274
        <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
5275
            <summary>
5276
            Replaces the children nodes of this token with the specified content.
5277
            </summary>
5278
            <param name="content">The content.</param>
5279
        </member>
5280
        <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
5281
            <summary>
5282
            Removes the child nodes from this token.
5283
            </summary>
5284
        </member>
5285
        <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
5286
            <summary>
5287
            Occurs when the list changes or an item in the list changes.
5288
            </summary>
5289
        </member>
5290
        <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
5291
            <summary>
5292
            Occurs before an item is added to the collection.
5293
            </summary>
5294
        </member>
5295
        <member name="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged">
5296
            <summary>
5297
            Occurs when the items list of the collection has changed, or the collection is reset.
5298
            </summary>
5299
        </member>
5300
        <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
5301
            <summary>
5302
            Gets the container's children tokens.
5303
            </summary>
5304
            <value>The container's children tokens.</value>
5305
        </member>
5306
        <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
5307
            <summary>
5308
            Gets a value indicating whether this token has childen tokens.
5309
            </summary>
5310
            <value>
5311
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
5312
            </value>
5313
        </member>
5314
        <member name="P:Newtonsoft.Json.Linq.JContainer.First">
5315
            <summary>
5316
            Get the first child token of this token.
5317
            </summary>
5318
            <value>
5319
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5320
            </value>
5321
        </member>
5322
        <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
5323
            <summary>
5324
            Get the last child token of this token.
5325
            </summary>
5326
            <value>
5327
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5328
            </value>
5329
        </member>
5330
        <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
5331
            <summary>
5332
            Gets the count of child JSON tokens.
5333
            </summary>
5334
            <value>The count of child JSON tokens</value>
5335
        </member>
5336
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
5337
            <summary>
5338
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
5339
            </summary>
5340
        </member>
5341
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
5342
            <summary>
5343
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
5344
            </summary>
5345
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
5346
        </member>
5347
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
5348
            <summary>
5349
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
5350
            </summary>
5351
            <param name="name">The constructor name.</param>
5352
            <param name="content">The contents of the constructor.</param>
5353
        </member>
5354
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
5355
            <summary>
5356
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
5357
            </summary>
5358
            <param name="name">The constructor name.</param>
5359
            <param name="content">The contents of the constructor.</param>
5360
        </member>
5361
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
5362
            <summary>
5363
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
5364
            </summary>
5365
            <param name="name">The constructor name.</param>
5366
        </member>
5367
        <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5368
            <summary>
5369
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5370
            </summary>
5371
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5372
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5373
        </member>
5374
        <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
5375
            <summary>
5376
            Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5377
            </summary>
5378
            <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>
5379
            <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>
5380
        </member>
5381
        <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
5382
            <summary>
5383
            Gets the container's children tokens.
5384
            </summary>
5385
            <value>The container's children tokens.</value>
5386
        </member>
5387
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
5388
            <summary>
5389
            Gets or sets the name of this constructor.
5390
            </summary>
5391
            <value>The constructor name.</value>
5392
        </member>
5393
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
5394
            <summary>
5395
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5396
            </summary>
5397
            <value>The type.</value>
5398
        </member>
5399
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
5400
            <summary>
5401
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5402
            </summary>
5403
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
5404
        </member>
5405
        <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
5406
            <summary>
5407
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
5408
            </summary>
5409
            <typeparam name="T">The type of token</typeparam>
5410
        </member>
5411
        <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
5412
            <summary>
5413
            An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
5414
            </summary>
5415
        </member>
5416
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
5417
            <summary>
5418
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
5419
            </summary>
5420
            <param name="enumerable">The enumerable.</param>
5421
        </member>
5422
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
5423
            <summary>
5424
            Returns an enumerator that iterates through the collection.
5425
            </summary>
5426
            <returns>
5427
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
5428
            </returns>
5429
        </member>
5430
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator">
5431
            <summary>
5432
            Returns an enumerator that iterates through a collection.
5433
            </summary>
5434
            <returns>
5435
            An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
5436
            </returns>
5437
        </member>
5438
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
5439
            <summary>
5440
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
5441
            </summary>
5442
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
5443
            <returns>
5444
                    <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
5445
            </returns>
5446
        </member>
5447
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
5448
            <summary>
5449
            Returns a hash code for this instance.
5450
            </summary>
5451
            <returns>
5452
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
5453
            </returns>
5454
        </member>
5455
        <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
5456
            <summary>
5457
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
5458
            </summary>
5459
            <value></value>
5460
        </member>
5461
        <member name="T:Newtonsoft.Json.Linq.JObject">
5462
            <summary>
5463
            Represents a JSON object.
5464
            </summary>
5465
            <example>
5466
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
5467
            </example>
5468
        </member>
5469
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
5470
            <summary>
5471
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
5472
            </summary>
5473
        </member>
5474
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
5475
            <summary>
5476
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
5477
            </summary>
5478
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
5479
        </member>
5480
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
5481
            <summary>
5482
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
5483
            </summary>
5484
            <param name="content">The contents of the object.</param>
5485
        </member>
5486
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
5487
            <summary>
5488
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
5489
            </summary>
5490
            <param name="content">The contents of the object.</param>
5491
        </member>
5492
        <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
5493
            <summary>
5494
            Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.
5495
            </summary>
5496
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns>
5497
        </member>
5498
        <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
5499
            <summary>
5500
            Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
5501
            </summary>
5502
            <param name="name">The property name.</param>
5503
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns>
5504
        </member>
5505
        <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
5506
            <summary>
5507
            Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.
5508
            </summary>
5509
            <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns>
5510
        </member>
5511
        <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
5512
            <summary>
5513
            Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5514
            </summary>
5515
            <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>
5516
            <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>
5517
        </member>
5518
        <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
5519
            <summary>
5520
            Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
5521
            </summary>
5522
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
5523
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
5524
            <example>
5525
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text"/>
5526
            </example>
5527
        </member>
5528
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
5529
            <summary>
5530
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
5531
            </summary>
5532
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
5533
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
5534
        </member>
5535
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
5536
            <summary>
5537
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
5538
            </summary>
5539
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
5540
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
5541
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
5542
        </member>
5543
        <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5544
            <summary>
5545
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5546
            </summary>
5547
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5548
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5549
        </member>
5550
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
5551
            <summary>
5552
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
5553
            </summary>
5554
            <param name="propertyName">Name of the property.</param>
5555
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</value>
5556
        </member>
5557
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
5558
            <summary>
5559
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
5560
            The exact property name will be searched for first and if no matching property is found then
5561
            the <see cref="T:System.StringComparison"/> will be used to match a property.
5562
            </summary>
5563
            <param name="propertyName">Name of the property.</param>
5564
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
5565
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</value>
5566
        </member>
5567
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
5568
            <summary>
5569
            Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
5570
            The exact property name will be searched for first and if no matching property is found then
5571
            the <see cref="T:System.StringComparison"/> will be used to match a property.
5572
            </summary>
5573
            <param name="propertyName">Name of the property.</param>
5574
            <param name="value">The value.</param>
5575
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
5576
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
5577
        </member>
5578
        <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
5579
            <summary>
5580
            Adds the specified property name.
5581
            </summary>
5582
            <param name="propertyName">Name of the property.</param>
5583
            <param name="value">The value.</param>
5584
        </member>
5585
        <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
5586
            <summary>
5587
            Removes the property with the specified name.
5588
            </summary>
5589
            <param name="propertyName">Name of the property.</param>
5590
            <returns>true if item was successfully removed; otherwise, false.</returns>
5591
        </member>
5592
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
5593
            <summary>
5594
            Tries the get value.
5595
            </summary>
5596
            <param name="propertyName">Name of the property.</param>
5597
            <param name="value">The value.</param>
5598
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
5599
        </member>
5600
        <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
5601
            <summary>
5602
            Returns an enumerator that iterates through the collection.
5603
            </summary>
5604
            <returns>
5605
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
5606
            </returns>
5607
        </member>
5608
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
5609
            <summary>
5610
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
5611
            </summary>
5612
            <param name="propertyName">Name of the property.</param>
5613
        </member>
5614
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">
5615
            <summary>
5616
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments.
5617
            </summary>
5618
            <param name="propertyName">Name of the property.</param>
5619
        </member>
5620
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
5621
            <summary>
5622
            Returns the properties for this instance of a component.
5623
            </summary>
5624
            <returns>
5625
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance.
5626
            </returns>
5627
        </member>
5628
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
5629
            <summary>
5630
            Returns the properties for this instance of a component using the attribute array as a filter.
5631
            </summary>
5632
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
5633
            <returns>
5634
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.
5635
            </returns>
5636
        </member>
5637
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
5638
            <summary>
5639
            Returns a collection of custom attributes for this instance of a component.
5640
            </summary>
5641
            <returns>
5642
            An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object.
5643
            </returns>
5644
        </member>
5645
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
5646
            <summary>
5647
            Returns the class name of this instance of a component.
5648
            </summary>
5649
            <returns>
5650
            The class name of the object, or null if the class does not have a name.
5651
            </returns>
5652
        </member>
5653
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
5654
            <summary>
5655
            Returns the name of this instance of a component.
5656
            </summary>
5657
            <returns>
5658
            The name of the object, or null if the object does not have a name.
5659
            </returns>
5660
        </member>
5661
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
5662
            <summary>
5663
            Returns a type converter for this instance of a component.
5664
            </summary>
5665
            <returns>
5666
            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.
5667
            </returns>
5668
        </member>
5669
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
5670
            <summary>
5671
            Returns the default event for this instance of a component.
5672
            </summary>
5673
            <returns>
5674
            An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events.
5675
            </returns>
5676
        </member>
5677
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
5678
            <summary>
5679
            Returns the default property for this instance of a component.
5680
            </summary>
5681
            <returns>
5682
            A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties.
5683
            </returns>
5684
        </member>
5685
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
5686
            <summary>
5687
            Returns an editor of the specified type for this instance of a component.
5688
            </summary>
5689
            <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param>
5690
            <returns>
5691
            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.
5692
            </returns>
5693
        </member>
5694
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
5695
            <summary>
5696
            Returns the events for this instance of a component using the specified attribute array as a filter.
5697
            </summary>
5698
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
5699
            <returns>
5700
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance.
5701
            </returns>
5702
        </member>
5703
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
5704
            <summary>
5705
            Returns the events for this instance of a component.
5706
            </summary>
5707
            <returns>
5708
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance.
5709
            </returns>
5710
        </member>
5711
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
5712
            <summary>
5713
            Returns an object that contains the property described by the specified property descriptor.
5714
            </summary>
5715
            <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param>
5716
            <returns>
5717
            An <see cref="T:System.Object"/> that represents the owner of the specified property.
5718
            </returns>
5719
        </member>
5720
        <member name="M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)">
5721
            <summary>
5722
            Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
5723
            </summary>
5724
            <param name="parameter">The expression tree representation of the runtime value.</param>
5725
            <returns>
5726
            The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
5727
            </returns>
5728
        </member>
5729
        <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
5730
            <summary>
5731
            Gets the container's children tokens.
5732
            </summary>
5733
            <value>The container's children tokens.</value>
5734
        </member>
5735
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
5736
            <summary>
5737
            Occurs when a property value changes.
5738
            </summary>
5739
        </member>
5740
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">
5741
            <summary>
5742
            Occurs when a property value is changing.
5743
            </summary>
5744
        </member>
5745
        <member name="P:Newtonsoft.Json.Linq.JObject.Type">
5746
            <summary>
5747
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5748
            </summary>
5749
            <value>The type.</value>
5750
        </member>
5751
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
5752
            <summary>
5753
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5754
            </summary>
5755
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
5756
        </member>
5757
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
5758
            <summary>
5759
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
5760
            </summary>
5761
            <value></value>
5762
        </member>
5763
        <member name="T:Newtonsoft.Json.Linq.JArray">
5764
            <summary>
5765
            Represents a JSON array.
5766
            </summary>
5767
            <example>
5768
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
5769
            </example>
5770
        </member>
5771
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
5772
            <summary>
5773
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
5774
            </summary>
5775
        </member>
5776
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
5777
            <summary>
5778
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
5779
            </summary>
5780
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
5781
        </member>
5782
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
5783
            <summary>
5784
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
5785
            </summary>
5786
            <param name="content">The contents of the array.</param>
5787
        </member>
5788
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
5789
            <summary>
5790
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
5791
            </summary>
5792
            <param name="content">The contents of the array.</param>
5793
        </member>
5794
        <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
5795
            <summary>
5796
            Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5797
            </summary>
5798
            <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>
5799
            <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>
5800
        </member>
5801
        <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
5802
            <summary>
5803
            Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
5804
            </summary>
5805
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
5806
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
5807
            <example>
5808
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text"/>
5809
            </example>
5810
        </member>
5811
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
5812
            <summary>
5813
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
5814
            </summary>
5815
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
5816
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
5817
        </member>
5818
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
5819
            <summary>
5820
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
5821
            </summary>
5822
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
5823
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
5824
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
5825
        </member>
5826
        <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5827
            <summary>
5828
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5829
            </summary>
5830
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5831
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5832
        </member>
5833
        <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
5834
            <summary>
5835
            Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
5836
            </summary>
5837
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
5838
            <returns>
5839
            The index of <paramref name="item"/> if found in the list; otherwise, -1.
5840
            </returns>
5841
        </member>
5842
        <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
5843
            <summary>
5844
            Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.
5845
            </summary>
5846
            <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
5847
            <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
5848
            <exception cref="T:System.ArgumentOutOfRangeException">
5849
                    <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
5850
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
5851
        </member>
5852
        <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
5853
            <summary>
5854
            Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
5855
            </summary>
5856
            <param name="index">The zero-based index of the item to remove.</param>
5857
            <exception cref="T:System.ArgumentOutOfRangeException">
5858
                    <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
5859
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
5860
        </member>
5861
        <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
5862
            <summary>
5863
            Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
5864
            </summary>
5865
            <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
5866
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
5867
        </member>
5868
        <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
5869
            <summary>
5870
            Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
5871
            </summary>
5872
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
5873
        </member>
5874
        <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
5875
            <summary>
5876
            Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
5877
            </summary>
5878
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
5879
            <returns>
5880
            true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
5881
            </returns>
5882
        </member>
5883
        <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
5884
            <summary>
5885
            Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
5886
            </summary>
5887
            <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
5888
            <returns>
5889
            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"/>.
5890
            </returns>
5891
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
5892
        </member>
5893
        <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
5894
            <summary>
5895
            Gets the container's children tokens.
5896
            </summary>
5897
            <value>The container's children tokens.</value>
5898
        </member>
5899
        <member name="P:Newtonsoft.Json.Linq.JArray.Type">
5900
            <summary>
5901
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5902
            </summary>
5903
            <value>The type.</value>
5904
        </member>
5905
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
5906
            <summary>
5907
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5908
            </summary>
5909
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
5910
        </member>
5911
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
5912
            <summary>
5913
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
5914
            </summary>
5915
            <value></value>
5916
        </member>
5917
        <member name="T:Newtonsoft.Json.Linq.JTokenReader">
5918
            <summary>
5919
            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
5920
            </summary>
5921
        </member>
5922
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
5923
            <summary>
5924
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
5925
            </summary>
5926
            <param name="token">The token to read from.</param>
5927
        </member>
5928
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">
5929
            <summary>
5930
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
5931
            </summary>
5932
            <returns>
5933
            A <see cref="T: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.
5934
            </returns>
5935
        </member>
5936
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">
5937
            <summary>
5938
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5939
            </summary>
5940
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
5941
        </member>
5942
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
5943
            <summary>
5944
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5945
            </summary>
5946
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
5947
        </member>
5948
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString">
5949
            <summary>
5950
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
5951
            </summary>
5952
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
5953
        </member>
5954
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime">
5955
            <summary>
5956
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5957
            </summary>
5958
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
5959
        </member>
5960
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">
5961
            <summary>
5962
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5963
            </summary>
5964
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
5965
        </member>
5966
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
5967
            <summary>
5968
            Reads the next JSON token from the stream.
5969
            </summary>
5970
            <returns>
5971
            true if the next token was read successfully; false if there are no more tokens to read.
5972
            </returns>
5973
        </member>
5974
        <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
5975
            <summary>
5976
            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
5977
            </summary>
5978
        </member>
5979
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
5980
            <summary>
5981
            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"/>.
5982
            </summary>
5983
            <param name="container">The container being written to.</param>
5984
        </member>
5985
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
5986
            <summary>
5987
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
5988
            </summary>
5989
        </member>
5990
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
5991
            <summary>
5992
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
5993
            </summary>
5994
        </member>
5995
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
5996
            <summary>
5997
            Closes this stream and the underlying stream.
5998
            </summary>
5999
        </member>
6000
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
6001
            <summary>
6002
            Writes the beginning of a Json object.
6003
            </summary>
6004
        </member>
6005
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
6006
            <summary>
6007
            Writes the beginning of a Json array.
6008
            </summary>
6009
        </member>
6010
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
6011
            <summary>
6012
            Writes the start of a constructor with the given name.
6013
            </summary>
6014
            <param name="name">The name of the constructor.</param>
6015
        </member>
6016
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
6017
            <summary>
6018
            Writes the end.
6019
            </summary>
6020
            <param name="token">The token.</param>
6021
        </member>
6022
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
6023
            <summary>
6024
            Writes the property name of a name/value pair on a Json object.
6025
            </summary>
6026
            <param name="name">The name of the property.</param>
6027
        </member>
6028
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
6029
            <summary>
6030
            Writes a null value.
6031
            </summary>
6032
        </member>
6033
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
6034
            <summary>
6035
            Writes an undefined value.
6036
            </summary>
6037
        </member>
6038
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
6039
            <summary>
6040
            Writes raw JSON.
6041
            </summary>
6042
            <param name="json">The raw JSON to write.</param>
6043
        </member>
6044
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
6045
            <summary>
6046
            Writes out a comment <code>/*...*/</code> containing the specified text.
6047
            </summary>
6048
            <param name="text">Text to place inside the comment.</param>
6049
        </member>
6050
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
6051
            <summary>
6052
            Writes a <see cref="T:System.String"/> value.
6053
            </summary>
6054
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
6055
        </member>
6056
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
6057
            <summary>
6058
            Writes a <see cref="T:System.Int32"/> value.
6059
            </summary>
6060
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
6061
        </member>
6062
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
6063
            <summary>
6064
            Writes a <see cref="T:System.UInt32"/> value.
6065
            </summary>
6066
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
6067
        </member>
6068
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
6069
            <summary>
6070
            Writes a <see cref="T:System.Int64"/> value.
6071
            </summary>
6072
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
6073
        </member>
6074
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
6075
            <summary>
6076
            Writes a <see cref="T:System.UInt64"/> value.
6077
            </summary>
6078
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
6079
        </member>
6080
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
6081
            <summary>
6082
            Writes a <see cref="T:System.Single"/> value.
6083
            </summary>
6084
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
6085
        </member>
6086
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
6087
            <summary>
6088
            Writes a <see cref="T:System.Double"/> value.
6089
            </summary>
6090
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
6091
        </member>
6092
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
6093
            <summary>
6094
            Writes a <see cref="T:System.Boolean"/> value.
6095
            </summary>
6096
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
6097
        </member>
6098
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
6099
            <summary>
6100
            Writes a <see cref="T:System.Int16"/> value.
6101
            </summary>
6102
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
6103
        </member>
6104
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
6105
            <summary>
6106
            Writes a <see cref="T:System.UInt16"/> value.
6107
            </summary>
6108
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
6109
        </member>
6110
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
6111
            <summary>
6112
            Writes a <see cref="T:System.Char"/> value.
6113
            </summary>
6114
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
6115
        </member>
6116
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
6117
            <summary>
6118
            Writes a <see cref="T:System.Byte"/> value.
6119
            </summary>
6120
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
6121
        </member>
6122
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
6123
            <summary>
6124
            Writes a <see cref="T:System.SByte"/> value.
6125
            </summary>
6126
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
6127
        </member>
6128
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
6129
            <summary>
6130
            Writes a <see cref="T:System.Decimal"/> value.
6131
            </summary>
6132
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
6133
        </member>
6134
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
6135
            <summary>
6136
            Writes a <see cref="T:System.DateTime"/> value.
6137
            </summary>
6138
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
6139
        </member>
6140
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">
6141
            <summary>
6142
            Writes a <see cref="T:System.DateTimeOffset"/> value.
6143
            </summary>
6144
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
6145
        </member>
6146
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
6147
            <summary>
6148
            Writes a <see cref="T:Byte[]"/> value.
6149
            </summary>
6150
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
6151
        </member>
6152
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
6153
            <summary>
6154
            Writes a <see cref="T:System.TimeSpan"/> value.
6155
            </summary>
6156
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
6157
        </member>
6158
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
6159
            <summary>
6160
            Writes a <see cref="T:System.Guid"/> value.
6161
            </summary>
6162
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
6163
        </member>
6164
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
6165
            <summary>
6166
            Writes a <see cref="T:System.Uri"/> value.
6167
            </summary>
6168
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
6169
        </member>
6170
        <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
6171
            <summary>
6172
            Gets the token being writen.
6173
            </summary>
6174
            <value>The token being writen.</value>
6175
        </member>
6176
        <member name="T:Newtonsoft.Json.Linq.JProperty">
6177
            <summary>
6178
            Represents a JSON property.
6179
            </summary>
6180
        </member>
6181
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
6182
            <summary>
6183
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
6184
            </summary>
6185
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
6186
        </member>
6187
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
6188
            <summary>
6189
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
6190
            </summary>
6191
            <param name="name">The property name.</param>
6192
            <param name="content">The property content.</param>
6193
        </member>
6194
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
6195
            <summary>
6196
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
6197
            </summary>
6198
            <param name="name">The property name.</param>
6199
            <param name="content">The property content.</param>
6200
        </member>
6201
        <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6202
            <summary>
6203
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6204
            </summary>
6205
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6206
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6207
        </member>
6208
        <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
6209
            <summary>
6210
            Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6211
            </summary>
6212
            <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>
6213
            <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>
6214
        </member>
6215
        <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
6216
            <summary>
6217
            Gets the container's children tokens.
6218
            </summary>
6219
            <value>The container's children tokens.</value>
6220
        </member>
6221
        <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
6222
            <summary>
6223
            Gets the property name.
6224
            </summary>
6225
            <value>The property name.</value>
6226
        </member>
6227
        <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
6228
            <summary>
6229
            Gets or sets the property value.
6230
            </summary>
6231
            <value>The property value.</value>
6232
        </member>
6233
        <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
6234
            <summary>
6235
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6236
            </summary>
6237
            <value>The type.</value>
6238
        </member>
6239
        <member name="T:Newtonsoft.Json.Linq.JTokenType">
6240
            <summary>
6241
            Specifies the type of token.
6242
            </summary>
6243
        </member>
6244
        <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
6245
            <summary>
6246
            No token type has been set.
6247
            </summary>
6248
        </member>
6249
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
6250
            <summary>
6251
            A JSON object.
6252
            </summary>
6253
        </member>
6254
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
6255
            <summary>
6256
            A JSON array.
6257
            </summary>
6258
        </member>
6259
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
6260
            <summary>
6261
            A JSON constructor.
6262
            </summary>
6263
        </member>
6264
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
6265
            <summary>
6266
            A JSON object property.
6267
            </summary>
6268
        </member>
6269
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
6270
            <summary>
6271
            A comment.
6272
            </summary>
6273
        </member>
6274
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
6275
            <summary>
6276
            An integer value.
6277
            </summary>
6278
        </member>
6279
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
6280
            <summary>
6281
            A float value.
6282
            </summary>
6283
        </member>
6284
        <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
6285
            <summary>
6286
            A string value.
6287
            </summary>
6288
        </member>
6289
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
6290
            <summary>
6291
            A boolean value.
6292
            </summary>
6293
        </member>
6294
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
6295
            <summary>
6296
            A null value.
6297
            </summary>
6298
        </member>
6299
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
6300
            <summary>
6301
            An undefined value.
6302
            </summary>
6303
        </member>
6304
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
6305
            <summary>
6306
            A date value.
6307
            </summary>
6308
        </member>
6309
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
6310
            <summary>
6311
            A raw JSON value.
6312
            </summary>
6313
        </member>
6314
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
6315
            <summary>
6316
            A collection of bytes value.
6317
            </summary>
6318
        </member>
6319
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
6320
            <summary>
6321
            A Guid value.
6322
            </summary>
6323
        </member>
6324
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
6325
            <summary>
6326
            A Uri value.
6327
            </summary>
6328
        </member>
6329
        <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
6330
            <summary>
6331
            A TimeSpan value.
6332
            </summary>
6333
        </member>
6334
        <member name="T:Newtonsoft.Json.Schema.Extensions">
6335
            <summary>
6336
            Contains the JSON schema extension methods.
6337
            </summary>
6338
        </member>
6339
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
6340
            <summary>
6341
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
6342
            </summary>
6343
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6344
            <param name="schema">The schema to test with.</param>
6345
            <returns>
6346
                    <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
6347
            </returns>
6348
        </member>
6349
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
6350
            <summary>
6351
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
6352
            </summary>
6353
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6354
            <param name="schema">The schema to test with.</param>
6355
            <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
6356
            <returns>
6357
                    <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
6358
            </returns>
6359
        </member>
6360
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
6361
            <summary>
6362
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6363
            </summary>
6364
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6365
            <param name="schema">The schema to test with.</param>
6366
        </member>
6367
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
6368
            <summary>
6369
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6370
            </summary>
6371
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6372
            <param name="schema">The schema to test with.</param>
6373
            <param name="validationEventHandler">The validation event handler.</param>
6374
        </member>
6375
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
6376
            <summary>
6377
            Returns detailed information about the schema exception.
6378
            </summary>
6379
        </member>
6380
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
6381
            <summary>
6382
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
6383
            </summary>
6384
        </member>
6385
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
6386
            <summary>
6387
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
6388
            with a specified error message.
6389
            </summary>
6390
            <param name="message">The error message that explains the reason for the exception.</param>
6391
        </member>
6392
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
6393
            <summary>
6394
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
6395
            with a specified error message and a reference to the inner exception that is the cause of this exception.
6396
            </summary>
6397
            <param name="message">The error message that explains the reason for the exception.</param>
6398
            <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>
6399
        </member>
6400
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
6401
            <summary>
6402
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
6403
            </summary>
6404
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
6405
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
6406
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
6407
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
6408
        </member>
6409
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
6410
            <summary>
6411
            Gets the line number indicating where the error occurred.
6412
            </summary>
6413
            <value>The line number indicating where the error occurred.</value>
6414
        </member>
6415
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
6416
            <summary>
6417
            Gets the line position indicating where the error occurred.
6418
            </summary>
6419
            <value>The line position indicating where the error occurred.</value>
6420
        </member>
6421
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
6422
            <summary>
6423
            Gets the path to the JSON where the error occurred.
6424
            </summary>
6425
            <value>The path to the JSON where the error occurred.</value>
6426
        </member>
6427
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
6428
            <summary>
6429
            Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
6430
            </summary>
6431
        </member>
6432
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
6433
            <summary>
6434
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
6435
            </summary>
6436
        </member>
6437
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
6438
            <summary>
6439
            Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified id.
6440
            </summary>
6441
            <param name="id">The id.</param>
6442
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified id.</returns>
6443
        </member>
6444
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
6445
            <summary>
6446
            Gets or sets the loaded schemas.
6447
            </summary>
6448
            <value>The loaded schemas.</value>
6449
        </member>
6450
        <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
6451
            <summary>
6452
            Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
6453
            </summary>
6454
        </member>
6455
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
6456
            <summary>
6457
            Do not infer a schema Id.
6458
            </summary>
6459
        </member>
6460
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
6461
            <summary>
6462
            Use the .NET type name as the schema Id.
6463
            </summary>
6464
        </member>
6465
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
6466
            <summary>
6467
            Use the assembly qualified .NET type name as the schema Id.
6468
            </summary>
6469
        </member>
6470
        <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
6471
            <summary>
6472
            Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
6473
            </summary>
6474
        </member>
6475
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
6476
            <summary>
6477
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.
6478
            </summary>
6479
            <value>The JsonSchemaException associated with the validation error.</value>
6480
        </member>
6481
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
6482
            <summary>
6483
            Gets the path of the JSON location where the validation error occurred.
6484
            </summary>
6485
            <value>The path of the JSON location where the validation error occurred.</value>
6486
        </member>
6487
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
6488
            <summary>
6489
            Gets the text description corresponding to the validation error.
6490
            </summary>
6491
            <value>The text description.</value>
6492
        </member>
6493
        <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
6494
            <summary>
6495
            Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
6496
            </summary>
6497
        </member>
6498
        <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
6499
            <summary>
6500
            Resolves member mappings for a type, camel casing property names.
6501
            </summary>
6502
        </member>
6503
        <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
6504
            <summary>
6505
            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"/>.
6506
            </summary>
6507
        </member>
6508
        <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
6509
            <summary>
6510
            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"/>.
6511
            </summary>
6512
            <example>
6513
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class"/>
6514
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example"/>
6515
            </example>
6516
        </member>
6517
        <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
6518
            <summary>
6519
            Resolves the contract for a given type.
6520
            </summary>
6521
            <param name="type">The type to resolve a contract for.</param>
6522
            <returns>The contract for a given type.</returns>
6523
        </member>
6524
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
6525
            <summary>
6526
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
6527
            </summary>
6528
        </member>
6529
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)">
6530
            <summary>
6531
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
6532
            </summary>
6533
            <param name="shareCache">
6534
            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.
6535
            Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected
6536
            behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly
6537
            recommended to reuse <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> instances with the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6538
            </param>
6539
        </member>
6540
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
6541
            <summary>
6542
            Resolves the contract for a given type.
6543
            </summary>
6544
            <param name="type">The type to resolve a contract for.</param>
6545
            <returns>The contract for a given type.</returns>
6546
        </member>
6547
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
6548
            <summary>
6549
            Gets the serializable members for the type.
6550
            </summary>
6551
            <param name="objectType">The type to get serializable members for.</param>
6552
            <returns>The serializable members for the type.</returns>
6553
        </member>
6554
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
6555
            <summary>
6556
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
6557
            </summary>
6558
            <param name="objectType">Type of the object.</param>
6559
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
6560
        </member>
6561
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
6562
            <summary>
6563
            Creates the constructor parameters.
6564
            </summary>
6565
            <param name="constructor">The constructor to create properties for.</param>
6566
            <param name="memberProperties">The type's member properties.</param>
6567
            <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
6568
        </member>
6569
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
6570
            <summary>
6571
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
6572
            </summary>
6573
            <param name="matchingMemberProperty">The matching member property.</param>
6574
            <param name="parameterInfo">The constructor parameter.</param>
6575
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
6576
        </member>
6577
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
6578
            <summary>
6579
            Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for the contract.
6580
            </summary>
6581
            <param name="objectType">Type of the object.</param>
6582
            <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter"/>.</returns>
6583
        </member>
6584
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
6585
            <summary>
6586
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
6587
            </summary>
6588
            <param name="objectType">Type of the object.</param>
6589
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
6590
        </member>
6591
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
6592
            <summary>
6593
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
6594
            </summary>
6595
            <param name="objectType">Type of the object.</param>
6596
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
6597
        </member>
6598
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
6599
            <summary>
6600
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
6601
            </summary>
6602
            <param name="objectType">Type of the object.</param>
6603
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
6604
        </member>
6605
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
6606
            <summary>
6607
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
6608
            </summary>
6609
            <param name="objectType">Type of the object.</param>
6610
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
6611
        </member>
6612
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
6613
            <summary>
6614
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
6615
            </summary>
6616
            <param name="objectType">Type of the object.</param>
6617
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
6618
        </member>
6619
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDynamicContract(System.Type)">
6620
            <summary>
6621
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.
6622
            </summary>
6623
            <param name="objectType">Type of the object.</param>
6624
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.</returns>
6625
        </member>
6626
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
6627
            <summary>
6628
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
6629
            </summary>
6630
            <param name="objectType">Type of the object.</param>
6631
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
6632
        </member>
6633
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
6634
            <summary>
6635
            Determines which contract type is created for the given type.
6636
            </summary>
6637
            <param name="objectType">Type of the object.</param>
6638
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
6639
        </member>
6640
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
6641
            <summary>
6642
            Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
6643
            </summary>
6644
            <param name="type">The type to create properties for.</param>
6645
            /// <param name="memberSerialization">The member serialization mode for the type.</param>
6646
            <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
6647
        </member>
6648
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
6649
            <summary>
6650
            Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
6651
            </summary>
6652
            <param name="member">The member.</param>
6653
            <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
6654
        </member>
6655
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
6656
            <summary>
6657
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
6658
            </summary>
6659
            <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
6660
            <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
6661
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
6662
        </member>
6663
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
6664
            <summary>
6665
            Resolves the name of the property.
6666
            </summary>
6667
            <param name="propertyName">Name of the property.</param>
6668
            <returns>Name of the property.</returns>
6669
        </member>
6670
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
6671
            <summary>
6672
            Gets the resolved name of the property.
6673
            </summary>
6674
            <param name="propertyName">Name of the property.</param>
6675
            <returns>Name of the property.</returns>
6676
        </member>
6677
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
6678
            <summary>
6679
            Gets a value indicating whether members are being get and set using dynamic code generation.
6680
            This value is determined by the runtime permissions available.
6681
            </summary>
6682
            <value>
6683
                    <c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
6684
            </value>
6685
        </member>
6686
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
6687
            <summary>
6688
            Gets or sets the default members search flags.
6689
            </summary>
6690
            <value>The default members search flags.</value>
6691
        </member>
6692
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
6693
            <summary>
6694
            Gets or sets a value indicating whether compiler generated members should be serialized.
6695
            </summary>
6696
            <value>
6697
                    <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
6698
            </value>
6699
        </member>
6700
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
6701
            <summary>
6702
            Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.
6703
            </summary>
6704
            <value>
6705
                    <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>.
6706
            </value>
6707
        </member>
6708
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
6709
            <summary>
6710
            Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.
6711
            </summary>
6712
            <value>
6713
                    <c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
6714
            </value>
6715
        </member>
6716
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
6717
            <summary>
6718
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
6719
            </summary>
6720
        </member>
6721
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)">
6722
            <summary>
6723
            Resolves the name of the property.
6724
            </summary>
6725
            <param name="propertyName">Name of the property.</param>
6726
            <returns>The property name camel cased.</returns>
6727
        </member>
6728
        <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
6729
            <summary>
6730
            The default serialization binder used when resolving and loading classes from type names.
6731
            </summary>
6732
        </member>
6733
        <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
6734
            <summary>
6735
            When overridden in a derived class, controls the binding of a serialized object to a type.
6736
            </summary>
6737
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
6738
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
6739
            <returns>
6740
            The type of the object the formatter creates a new instance of.
6741
            </returns>
6742
        </member>
6743
        <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)">
6744
            <summary>
6745
            When overridden in a derived class, controls the binding of a serialized object to a type.
6746
            </summary>
6747
            <param name="serializedType">The type of the object the formatter creates a new instance of.</param>
6748
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object. </param>
6749
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object. </param>
6750
        </member>
6751
        <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
6752
            <summary>
6753
            Provides information surrounding an error.
6754
            </summary>
6755
        </member>
6756
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
6757
            <summary>
6758
            Gets or sets the error.
6759
            </summary>
6760
            <value>The error.</value>
6761
        </member>
6762
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
6763
            <summary>
6764
            Gets the original object that caused the error.
6765
            </summary>
6766
            <value>The original object that caused the error.</value>
6767
        </member>
6768
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
6769
            <summary>
6770
            Gets the member that caused the error.
6771
            </summary>
6772
            <value>The member that caused the error.</value>
6773
        </member>
6774
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
6775
            <summary>
6776
            Gets the path of the JSON location where the error occurred.
6777
            </summary>
6778
            <value>The path of the JSON location where the error occurred.</value>
6779
        </member>
6780
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
6781
            <summary>
6782
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
6783
            </summary>
6784
            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
6785
        </member>
6786
        <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
6787
            <summary>
6788
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6789
            </summary>
6790
        </member>
6791
        <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
6792
            <summary>
6793
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
6794
            </summary>
6795
            <param name="underlyingType">The underlying type for the contract.</param>
6796
        </member>
6797
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
6798
            <summary>
6799
            Gets the <see cref="T:System.Type"/> of the collection items.
6800
            </summary>
6801
            <value>The <see cref="T:System.Type"/> of the collection items.</value>
6802
        </member>
6803
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
6804
            <summary>
6805
            Gets a value indicating whether the collection type is a multidimensional array.
6806
            </summary>
6807
            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
6808
        </member>
6809
        <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
6810
            <summary>
6811
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6812
            </summary>
6813
        </member>
6814
        <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
6815
            <summary>
6816
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
6817
            </summary>
6818
            <param name="underlyingType">The underlying type for the contract.</param>
6819
        </member>
6820
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver">
6821
            <summary>
6822
            Gets or sets the property name resolver.
6823
            </summary>
6824
            <value>The property name resolver.</value>
6825
        </member>
6826
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
6827
            <summary>
6828
            Gets the <see cref="T:System.Type"/> of the dictionary keys.
6829
            </summary>
6830
            <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
6831
        </member>
6832
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
6833
            <summary>
6834
            Gets the <see cref="T:System.Type"/> of the dictionary values.
6835
            </summary>
6836
            <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
6837
        </member>
6838
        <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
6839
            <summary>
6840
            Maps a JSON property to a .NET member or constructor parameter.
6841
            </summary>
6842
        </member>
6843
        <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
6844
            <summary>
6845
            Returns a <see cref="T:System.String"/> that represents this instance.
6846
            </summary>
6847
            <returns>
6848
            A <see cref="T:System.String"/> that represents this instance.
6849
            </returns>
6850
        </member>
6851
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
6852
            <summary>
6853
            Gets or sets the name of the property.
6854
            </summary>
6855
            <value>The name of the property.</value>
6856
        </member>
6857
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
6858
            <summary>
6859
            Gets or sets the type that declared this property.
6860
            </summary>
6861
            <value>The type that declared this property.</value>
6862
        </member>
6863
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
6864
            <summary>
6865
            Gets or sets the order of serialization and deserialization of a member.
6866
            </summary>
6867
            <value>The numeric order of serialization or deserialization.</value>
6868
        </member>
6869
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
6870
            <summary>
6871
            Gets or sets the name of the underlying member or parameter.
6872
            </summary>
6873
            <value>The name of the underlying member or parameter.</value>
6874
        </member>
6875
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
6876
            <summary>
6877
            Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
6878
            </summary>
6879
            <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>
6880
        </member>
6881
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
6882
            <summary>
6883
            Gets or sets the type of the property.
6884
            </summary>
6885
            <value>The type of the property.</value>
6886
        </member>
6887
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
6888
            <summary>
6889
            Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> for the property.
6890
            If set this converter takes presidence over the contract converter for the property type.
6891
            </summary>
6892
            <value>The converter.</value>
6893
        </member>
6894
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
6895
            <summary>
6896
            Gets the member converter.
6897
            </summary>
6898
            <value>The member converter.</value>
6899
        </member>
6900
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
6901
            <summary>
6902
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
6903
            </summary>
6904
            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
6905
        </member>
6906
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
6907
            <summary>
6908
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
6909
            </summary>
6910
            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
6911
        </member>
6912
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
6913
            <summary>
6914
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
6915
            </summary>
6916
            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
6917
        </member>
6918
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
6919
            <summary>
6920
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
6921
            </summary>
6922
            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
6923
        </member>
6924
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
6925
            <summary>
6926
            Gets the default value.
6927
            </summary>
6928
            <value>The default value.</value>
6929
        </member>
6930
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
6931
            <summary>
6932
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
6933
            </summary>
6934
            <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
6935
        </member>
6936
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
6937
            <summary>
6938
            Gets a value indicating whether this property preserves object references.
6939
            </summary>
6940
            <value>
6941
                    <c>true</c> if this instance is reference; otherwise, <c>false</c>.
6942
            </value>
6943
        </member>
6944
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
6945
            <summary>
6946
            Gets the property null value handling.
6947
            </summary>
6948
            <value>The null value handling.</value>
6949
        </member>
6950
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
6951
            <summary>
6952
            Gets the property default value handling.
6953
            </summary>
6954
            <value>The default value handling.</value>
6955
        </member>
6956
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
6957
            <summary>
6958
            Gets the property reference loop handling.
6959
            </summary>
6960
            <value>The reference loop handling.</value>
6961
        </member>
6962
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
6963
            <summary>
6964
            Gets the property object creation handling.
6965
            </summary>
6966
            <value>The object creation handling.</value>
6967
        </member>
6968
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
6969
            <summary>
6970
            Gets or sets the type name handling.
6971
            </summary>
6972
            <value>The type name handling.</value>
6973
        </member>
6974
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
6975
            <summary>
6976
            Gets or sets a predicate used to determine whether the property should be serialize.
6977
            </summary>
6978
            <value>A predicate used to determine whether the property should be serialize.</value>
6979
        </member>
6980
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
6981
            <summary>
6982
            Gets or sets a predicate used to determine whether the property should be serialized.
6983
            </summary>
6984
            <value>A predicate used to determine whether the property should be serialized.</value>
6985
        </member>
6986
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
6987
            <summary>
6988
            Gets or sets an action used to set whether the property has been deserialized.
6989
            </summary>
6990
            <value>An action used to set whether the property has been deserialized.</value>
6991
        </member>
6992
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
6993
            <summary>
6994
            Gets or sets the converter used when serializing the property's collection items.
6995
            </summary>
6996
            <value>The collection's items converter.</value>
6997
        </member>
6998
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
6999
            <summary>
7000
            Gets or sets whether this property's collection items are serialized as a reference.
7001
            </summary>
7002
            <value>Whether this property's collection items are serialized as a reference.</value>
7003
        </member>
7004
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
7005
            <summary>
7006
            Gets or sets the the type name handling used when serializing the property's collection items.
7007
            </summary>
7008
            <value>The collection's items type name handling.</value>
7009
        </member>
7010
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
7011
            <summary>
7012
            Gets or sets the the reference loop handling used when serializing the property's collection items.
7013
            </summary>
7014
            <value>The collection's items reference loop handling.</value>
7015
        </member>
7016
        <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
7017
            <summary>
7018
            A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
7019
            </summary>
7020
        </member>
7021
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
7022
            <summary>
7023
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
7024
            </summary>
7025
            <param name="type">The type.</param>
7026
        </member>
7027
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
7028
            <summary>
7029
            When implemented in a derived class, extracts the key from the specified element.
7030
            </summary>
7031
            <param name="item">The element from which to extract the key.</param>
7032
            <returns>The key for the specified element.</returns>
7033
        </member>
7034
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
7035
            <summary>
7036
            Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
7037
            </summary>
7038
            <param name="property">The property to add to the collection.</param>
7039
        </member>
7040
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
7041
            <summary>
7042
            Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
7043
            First attempts to get an exact case match of propertyName and then
7044
            a case insensitive match.
7045
            </summary>
7046
            <param name="propertyName">Name of the property.</param>
7047
            <returns>A matching property if found.</returns>
7048
        </member>
7049
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
7050
            <summary>
7051
            Gets a property by property name.
7052
            </summary>
7053
            <param name="propertyName">The name of the property to get.</param>
7054
            <param name="comparisonType">Type property name string comparison.</param>
7055
            <returns>A matching property if found.</returns>
7056
        </member>
7057
        <member name="T:Newtonsoft.Json.MissingMemberHandling">
7058
            <summary>
7059
            Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7060
            </summary>
7061
        </member>
7062
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
7063
            <summary>
7064
            Ignore a missing member and do not attempt to deserialize it.
7065
            </summary>
7066
        </member>
7067
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
7068
            <summary>
7069
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
7070
            </summary>
7071
        </member>
7072
        <member name="T:Newtonsoft.Json.NullValueHandling">
7073
            <summary>
7074
            Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7075
            </summary>
7076
            <example>
7077
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class"/>
7078
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example"/>
7079
            </example>
7080
        </member>
7081
        <member name="F:Newtonsoft.Json.NullValueHandling.Include">
7082
            <summary>
7083
            Include null values when serializing and deserializing objects.
7084
            </summary>
7085
        </member>
7086
        <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
7087
            <summary>
7088
            Ignore null values when serializing and deserializing objects.
7089
            </summary>
7090
        </member>
7091
        <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
7092
            <summary>
7093
            Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7094
            </summary>
7095
        </member>
7096
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
7097
            <summary>
7098
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
7099
            </summary>
7100
        </member>
7101
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
7102
            <summary>
7103
            Ignore loop references and do not serialize.
7104
            </summary>
7105
        </member>
7106
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
7107
            <summary>
7108
            Serialize loop references.
7109
            </summary>
7110
        </member>
7111
        <member name="T:Newtonsoft.Json.Schema.JsonSchema">
7112
            <summary>
7113
            An in-memory representation of a JSON Schema.
7114
            </summary>
7115
        </member>
7116
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
7117
            <summary>
7118
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
7119
            </summary>
7120
        </member>
7121
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
7122
            <summary>
7123
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7124
            </summary>
7125
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
7126
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
7127
        </member>
7128
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7129
            <summary>
7130
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7131
            </summary>
7132
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
7133
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
7134
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
7135
        </member>
7136
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
7137
            <summary>
7138
            Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON.
7139
            </summary>
7140
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
7141
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
7142
        </member>
7143
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7144
            <summary>
7145
            Parses the specified json.
7146
            </summary>
7147
            <param name="json">The json.</param>
7148
            <param name="resolver">The resolver.</param>
7149
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
7150
        </member>
7151
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
7152
            <summary>
7153
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
7154
            </summary>
7155
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7156
        </member>
7157
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7158
            <summary>
7159
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
7160
            </summary>
7161
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7162
            <param name="resolver">The resolver used.</param>
7163
        </member>
7164
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
7165
            <summary>
7166
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
7167
            </summary>
7168
            <returns>
7169
            A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
7170
            </returns>
7171
        </member>
7172
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
7173
            <summary>
7174
            Gets or sets the id.
7175
            </summary>
7176
        </member>
7177
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
7178
            <summary>
7179
            Gets or sets the title.
7180
            </summary>
7181
        </member>
7182
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
7183
            <summary>
7184
            Gets or sets whether the object is required.
7185
            </summary>
7186
        </member>
7187
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
7188
            <summary>
7189
            Gets or sets whether the object is read only.
7190
            </summary>
7191
        </member>
7192
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
7193
            <summary>
7194
            Gets or sets whether the object is visible to users.
7195
            </summary>
7196
        </member>
7197
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
7198
            <summary>
7199
            Gets or sets whether the object is transient.
7200
            </summary>
7201
        </member>
7202
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
7203
            <summary>
7204
            Gets or sets the description of the object.
7205
            </summary>
7206
        </member>
7207
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
7208
            <summary>
7209
            Gets or sets the types of values allowed by the object.
7210
            </summary>
7211
            <value>The type.</value>
7212
        </member>
7213
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
7214
            <summary>
7215
            Gets or sets the pattern.
7216
            </summary>
7217
            <value>The pattern.</value>
7218
        </member>
7219
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
7220
            <summary>
7221
            Gets or sets the minimum length.
7222
            </summary>
7223
            <value>The minimum length.</value>
7224
        </member>
7225
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
7226
            <summary>
7227
            Gets or sets the maximum length.
7228
            </summary>
7229
            <value>The maximum length.</value>
7230
        </member>
7231
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
7232
            <summary>
7233
            Gets or sets a number that the value should be divisble by.
7234
            </summary>
7235
            <value>A number that the value should be divisble by.</value>
7236
        </member>
7237
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
7238
            <summary>
7239
            Gets or sets the minimum.
7240
            </summary>
7241
            <value>The minimum.</value>
7242
        </member>
7243
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
7244
            <summary>
7245
            Gets or sets the maximum.
7246
            </summary>
7247
            <value>The maximum.</value>
7248
        </member>
7249
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
7250
            <summary>
7251
            Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.
7252
            </summary>
7253
            <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value>
7254
        </member>
7255
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
7256
            <summary>
7257
            Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.
7258
            </summary>
7259
            <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>
7260
        </member>
7261
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
7262
            <summary>
7263
            Gets or sets the minimum number of items.
7264
            </summary>
7265
            <value>The minimum number of items.</value>
7266
        </member>
7267
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
7268
            <summary>
7269
            Gets or sets the maximum number of items.
7270
            </summary>
7271
            <value>The maximum number of items.</value>
7272
        </member>
7273
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
7274
            <summary>
7275
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
7276
            </summary>
7277
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
7278
        </member>
7279
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
7280
            <summary>
7281
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
7282
            </summary>
7283
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
7284
        </member>
7285
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
7286
            <summary>
7287
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
7288
            </summary>
7289
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
7290
        </member>
7291
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
7292
            <summary>
7293
            Gets or sets the pattern properties.
7294
            </summary>
7295
            <value>The pattern properties.</value>
7296
        </member>
7297
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
7298
            <summary>
7299
            Gets or sets a value indicating whether additional properties are allowed.
7300
            </summary>
7301
            <value>
7302
                    <c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
7303
            </value>
7304
        </member>
7305
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
7306
            <summary>
7307
            Gets or sets the required property if this property is present.
7308
            </summary>
7309
            <value>The required property if this property is present.</value>
7310
        </member>
7311
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Identity">
7312
            <summary>
7313
            Gets or sets the identity.
7314
            </summary>
7315
            <value>The identity.</value>
7316
        </member>
7317
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
7318
            <summary>
7319
            Gets or sets the a collection of valid enum values allowed.
7320
            </summary>
7321
            <value>A collection of valid enum values allowed.</value>
7322
        </member>
7323
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Options">
7324
            <summary>
7325
            Gets or sets a collection of options.
7326
            </summary>
7327
            <value>A collection of options.</value>
7328
        </member>
7329
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
7330
            <summary>
7331
            Gets or sets disallowed types.
7332
            </summary>
7333
            <value>The disallow types.</value>
7334
        </member>
7335
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
7336
            <summary>
7337
            Gets or sets the default value.
7338
            </summary>
7339
            <value>The default value.</value>
7340
        </member>
7341
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
7342
            <summary>
7343
            Gets or sets the extend <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
7344
            </summary>
7345
            <value>The extended <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.</value>
7346
        </member>
7347
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
7348
            <summary>
7349
            Gets or sets the format.
7350
            </summary>
7351
            <value>The format.</value>
7352
        </member>
7353
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
7354
            <summary>
7355
            Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
7356
            </summary>
7357
        </member>
7358
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
7359
            <summary>
7360
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7361
            </summary>
7362
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7363
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7364
        </member>
7365
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7366
            <summary>
7367
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7368
            </summary>
7369
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7370
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
7371
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7372
        </member>
7373
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
7374
            <summary>
7375
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7376
            </summary>
7377
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7378
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
7379
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7380
        </member>
7381
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
7382
            <summary>
7383
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7384
            </summary>
7385
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7386
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
7387
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
7388
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7389
        </member>
7390
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
7391
            <summary>
7392
            Gets or sets how undefined schemas are handled by the serializer.
7393
            </summary>
7394
        </member>
7395
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
7396
            <summary>
7397
            Gets or sets the contract resolver.
7398
            </summary>
7399
            <value>The contract resolver.</value>
7400
        </member>
7401
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
7402
            <summary>
7403
            The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
7404
            </summary>
7405
        </member>
7406
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
7407
            <summary>
7408
            No type specified.
7409
            </summary>
7410
        </member>
7411
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
7412
            <summary>
7413
            String type.
7414
            </summary>
7415
        </member>
7416
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
7417
            <summary>
7418
            Float type.
7419
            </summary>
7420
        </member>
7421
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
7422
            <summary>
7423
            Integer type.
7424
            </summary>
7425
        </member>
7426
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
7427
            <summary>
7428
            Boolean type.
7429
            </summary>
7430
        </member>
7431
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
7432
            <summary>
7433
            Object type.
7434
            </summary>
7435
        </member>
7436
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
7437
            <summary>
7438
            Array type.
7439
            </summary>
7440
        </member>
7441
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
7442
            <summary>
7443
            Null type.
7444
            </summary>
7445
        </member>
7446
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
7447
            <summary>
7448
            Any type.
7449
            </summary>
7450
        </member>
7451
        <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
7452
            <summary>
7453
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7454
            </summary>
7455
        </member>
7456
        <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
7457
            <summary>
7458
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
7459
            </summary>
7460
            <param name="underlyingType">The underlying type for the contract.</param>
7461
        </member>
7462
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
7463
            <summary>
7464
            Gets or sets the object member serialization.
7465
            </summary>
7466
            <value>The member object serialization.</value>
7467
        </member>
7468
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
7469
            <summary>
7470
            Gets or sets a value that indicates whether the object's properties are required.
7471
            </summary>
7472
            <value>
7473
                    A value indicating whether the object's properties are required.
7474
            </value>
7475
        </member>
7476
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
7477
            <summary>
7478
            Gets the object's properties.
7479
            </summary>
7480
            <value>The object's properties.</value>
7481
        </member>
7482
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters">
7483
            <summary>
7484
            Gets the constructor parameters required for any non-default constructor
7485
            </summary>
7486
        </member>
7487
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor">
7488
            <summary>
7489
            Gets or sets the override constructor used to create the object.
7490
            This is set when a constructor is marked up using the
7491
            JsonConstructor attribute.
7492
            </summary>
7493
            <value>The override constructor.</value>
7494
        </member>
7495
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor">
7496
            <summary>
7497
            Gets or sets the parametrized constructor used to create the object.
7498
            </summary>
7499
            <value>The parametrized constructor.</value>
7500
        </member>
7501
        <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
7502
            <summary>
7503
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7504
            </summary>
7505
        </member>
7506
        <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
7507
            <summary>
7508
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
7509
            </summary>
7510
            <param name="underlyingType">The underlying type for the contract.</param>
7511
        </member>
7512
        <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
7513
            <summary>
7514
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
7515
            </summary>
7516
        </member>
7517
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
7518
            <summary>
7519
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
7520
            </summary>
7521
            <param name="memberInfo">The member info.</param>
7522
        </member>
7523
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
7524
            <summary>
7525
            Sets the value.
7526
            </summary>
7527
            <param name="target">The target to set the value on.</param>
7528
            <param name="value">The value to set on the target.</param>
7529
        </member>
7530
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
7531
            <summary>
7532
            Gets the value.
7533
            </summary>
7534
            <param name="target">The target to get the value from.</param>
7535
            <returns>The value.</returns>
7536
        </member>
7537
        <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
7538
            <summary>
7539
            When applied to a method, specifies that the method is called when an error occurs serializing an object.
7540
            </summary>
7541
        </member>
7542
        <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)">
7543
            <summary>
7544
            Helper method for generating a MetaObject which calls a
7545
            specific method on Dynamic that returns a result
7546
            </summary>
7547
        </member>
7548
        <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodReturnLast(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
7549
            <summary>
7550
            Helper method for generating a MetaObject which calls a
7551
            specific method on Dynamic, but uses one of the arguments for
7552
            the result.
7553
            </summary>
7554
        </member>
7555
        <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodNoResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
7556
            <summary>
7557
            Helper method for generating a MetaObject which calls a
7558
            specific method on Dynamic, but uses one of the arguments for
7559
            the result.
7560
            </summary>
7561
        </member>
7562
        <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.GetRestrictions">
7563
            <summary>
7564
            Returns a Restrictions object which includes our current restrictions merged
7565
            with a restriction limiting our type
7566
            </summary>
7567
        </member>
7568
        <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
7569
            <summary>
7570
            Represents a method that constructs an object.
7571
            </summary>
7572
            <typeparam name="T">The object type to create.</typeparam>
7573
        </member>
7574
        <member name="T:Newtonsoft.Json.TypeNameHandling">
7575
            <summary>
7576
            Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7577
            </summary>
7578
        </member>
7579
        <member name="F:Newtonsoft.Json.TypeNameHandling.None">
7580
            <summary>
7581
            Do not include the .NET type name when serializing types.
7582
            </summary>
7583
        </member>
7584
        <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
7585
            <summary>
7586
            Include the .NET type name when serializing into a JSON object structure.
7587
            </summary>
7588
        </member>
7589
        <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
7590
            <summary>
7591
            Include the .NET type name when serializing into a JSON array structure.
7592
            </summary>
7593
        </member>
7594
        <member name="F:Newtonsoft.Json.TypeNameHandling.All">
7595
            <summary>
7596
            Always include the .NET type name when serializing.
7597
            </summary>
7598
        </member>
7599
        <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
7600
            <summary>
7601
            Include the .NET type name when the type of the object being serialized is not the same as its declared type.
7602
            </summary>
7603
        </member>
7604
        <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)">
7605
            <summary>
7606
            Converts the value to the specified type.
7607
            </summary>
7608
            <param name="initialValue">The value to convert.</param>
7609
            <param name="culture">The culture to use when converting.</param>
7610
            <param name="targetType">The type to convert the value to.</param>
7611
            <returns>The converted type.</returns>
7612
        </member>
7613
        <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)">
7614
            <summary>
7615
            Converts the value to the specified type.
7616
            </summary>
7617
            <param name="initialValue">The value to convert.</param>
7618
            <param name="culture">The culture to use when converting.</param>
7619
            <param name="targetType">The type to convert the value to.</param>
7620
            <param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
7621
            <returns>
7622
                    <c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
7623
            </returns>
7624
        </member>
7625
        <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
7626
            <summary>
7627
            Converts the value to the specified type. If the value is unable to be converted, the
7628
            value is checked whether it assignable to the specified type.
7629
            </summary>
7630
            <param name="initialValue">The value to convert.</param>
7631
            <param name="culture">The culture to use when converting.</param>
7632
            <param name="targetType">The type to convert or cast the value to.</param>
7633
            <returns>
7634
            The converted type. If conversion was unsuccessful, the initial value
7635
            is returned if assignable to the target type.
7636
            </returns>
7637
        </member>
7638
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
7639
            <summary>
7640
            Gets a dictionary of the names and values of an Enum type.
7641
            </summary>
7642
            <returns></returns>
7643
        </member>
7644
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
7645
            <summary>
7646
            Gets a dictionary of the names and values of an Enum type.
7647
            </summary>
7648
            <param name="enumType">The enum type to get names and values for.</param>
7649
            <returns></returns>
7650
        </member>
7651
        <member name="T:Newtonsoft.Json.JsonToken">
7652
            <summary>
7653
            Specifies the type of Json token.
7654
            </summary>
7655
        </member>
7656
        <member name="F:Newtonsoft.Json.JsonToken.None">
7657
            <summary>
7658
            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. 
7659
            </summary>
7660
        </member>
7661
        <member name="F:Newtonsoft.Json.JsonToken.StartObject">
7662
            <summary>
7663
            An object start token.
7664
            </summary>
7665
        </member>
7666
        <member name="F:Newtonsoft.Json.JsonToken.StartArray">
7667
            <summary>
7668
            An array start token.
7669
            </summary>
7670
        </member>
7671
        <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
7672
            <summary>
7673
            A constructor start token.
7674
            </summary>
7675
        </member>
7676
        <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
7677
            <summary>
7678
            An object property name.
7679
            </summary>
7680
        </member>
7681
        <member name="F:Newtonsoft.Json.JsonToken.Comment">
7682
            <summary>
7683
            A comment.
7684
            </summary>
7685
        </member>
7686
        <member name="F:Newtonsoft.Json.JsonToken.Raw">
7687
            <summary>
7688
            Raw JSON.
7689
            </summary>
7690
        </member>
7691
        <member name="F:Newtonsoft.Json.JsonToken.Integer">
7692
            <summary>
7693
            An integer.
7694
            </summary>
7695
        </member>
7696
        <member name="F:Newtonsoft.Json.JsonToken.Float">
7697
            <summary>
7698
            A float.
7699
            </summary>
7700
        </member>
7701
        <member name="F:Newtonsoft.Json.JsonToken.String">
7702
            <summary>
7703
            A string.
7704
            </summary>
7705
        </member>
7706
        <member name="F:Newtonsoft.Json.JsonToken.Boolean">
7707
            <summary>
7708
            A boolean.
7709
            </summary>
7710
        </member>
7711
        <member name="F:Newtonsoft.Json.JsonToken.Null">
7712
            <summary>
7713
            A null token.
7714
            </summary>
7715
        </member>
7716
        <member name="F:Newtonsoft.Json.JsonToken.Undefined">
7717
            <summary>
7718
            An undefined token.
7719
            </summary>
7720
        </member>
7721
        <member name="F:Newtonsoft.Json.JsonToken.EndObject">
7722
            <summary>
7723
            An object end token.
7724
            </summary>
7725
        </member>
7726
        <member name="F:Newtonsoft.Json.JsonToken.EndArray">
7727
            <summary>
7728
            An array end token.
7729
            </summary>
7730
        </member>
7731
        <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
7732
            <summary>
7733
            A constructor end token.
7734
            </summary>
7735
        </member>
7736
        <member name="F:Newtonsoft.Json.JsonToken.Date">
7737
            <summary>
7738
            A Date.
7739
            </summary>
7740
        </member>
7741
        <member name="F:Newtonsoft.Json.JsonToken.Bytes">
7742
            <summary>
7743
            Byte data.
7744
            </summary>
7745
        </member>
7746
        <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
7747
            <summary>
7748
            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
7749
            </summary>
7750
        </member>
7751
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
7752
            <summary>
7753
            Determines whether the collection is null or empty.
7754
            </summary>
7755
            <param name="collection">The collection.</param>
7756
            <returns>
7757
                    <c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
7758
            </returns>
7759
        </member>
7760
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
7761
            <summary>
7762
            Adds the elements of the specified collection to the specified generic IList.
7763
            </summary>
7764
            <param name="initial">The list to add to.</param>
7765
            <param name="collection">The collection of elements to add.</param>
7766
        </member>
7767
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
7768
            <summary>
7769
            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
7770
            </summary>
7771
            <typeparam name="TSource">The type of the elements of source.</typeparam>
7772
            <param name="list">A sequence in which to locate a value.</param>
7773
            <param name="value">The object to locate in the sequence</param>
7774
            <param name="comparer">An equality comparer to compare values.</param>
7775
            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
7776
        </member>
7777
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
7778
            <summary>
7779
            Gets the type of the typed collection's items.
7780
            </summary>
7781
            <param name="type">The type.</param>
7782
            <returns>The type of the typed collection's items.</returns>
7783
        </member>
7784
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
7785
            <summary>
7786
            Gets the member's underlying type.
7787
            </summary>
7788
            <param name="member">The member.</param>
7789
            <returns>The underlying type of the member.</returns>
7790
        </member>
7791
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
7792
            <summary>
7793
            Determines whether the member is an indexed property.
7794
            </summary>
7795
            <param name="member">The member.</param>
7796
            <returns>
7797
                    <c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
7798
            </returns>
7799
        </member>
7800
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
7801
            <summary>
7802
            Determines whether the property is an indexed property.
7803
            </summary>
7804
            <param name="property">The property.</param>
7805
            <returns>
7806
                    <c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
7807
            </returns>
7808
        </member>
7809
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
7810
            <summary>
7811
            Gets the member's value on the object.
7812
            </summary>
7813
            <param name="member">The member.</param>
7814
            <param name="target">The target object.</param>
7815
            <returns>The member's value on the object.</returns>
7816
        </member>
7817
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
7818
            <summary>
7819
            Sets the member's value on the target object.
7820
            </summary>
7821
            <param name="member">The member.</param>
7822
            <param name="target">The target.</param>
7823
            <param name="value">The value.</param>
7824
        </member>
7825
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
7826
            <summary>
7827
            Determines whether the specified MemberInfo can be read.
7828
            </summary>
7829
            <param name="member">The MemberInfo to determine whether can be read.</param>
7830
            /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
7831
            <returns>
7832
                    <c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
7833
            </returns>
7834
        </member>
7835
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
7836
            <summary>
7837
            Determines whether the specified MemberInfo can be set.
7838
            </summary>
7839
            <param name="member">The MemberInfo to determine whether can be set.</param>
7840
            <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
7841
            <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
7842
            <returns>
7843
                    <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
7844
            </returns>
7845
        </member>
7846
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
7847
            <summary>
7848
            Determines whether the string is all white space. Empty string will return false.
7849
            </summary>
7850
            <param name="s">The string to test whether it is all white space.</param>
7851
            <returns>
7852
                    <c>true</c> if the string is all white space; otherwise, <c>false</c>.
7853
            </returns>
7854
        </member>
7855
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
7856
            <summary>
7857
            Nulls an empty string.
7858
            </summary>
7859
            <param name="s">The string.</param>
7860
            <returns>Null if the string was null, otherwise the string unchanged.</returns>
7861
        </member>
7862
        <member name="T:Newtonsoft.Json.WriteState">
7863
            <summary>
7864
            Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
7865
            </summary>
7866
        </member>
7867
        <member name="F:Newtonsoft.Json.WriteState.Error">
7868
            <summary>
7869
            An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
7870
            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.
7871
            Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown. 
7872
            </summary>
7873
        </member>
7874
        <member name="F:Newtonsoft.Json.WriteState.Closed">
7875
            <summary>
7876
            The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called. 
7877
            </summary>
7878
        </member>
7879
        <member name="F:Newtonsoft.Json.WriteState.Object">
7880
            <summary>
7881
            An object is being written. 
7882
            </summary>
7883
        </member>
7884
        <member name="F:Newtonsoft.Json.WriteState.Array">
7885
            <summary>
7886
            A array is being written.
7887
            </summary>
7888
        </member>
7889
        <member name="F:Newtonsoft.Json.WriteState.Constructor">
7890
            <summary>
7891
            A constructor is being written.
7892
            </summary>
7893
        </member>
7894
        <member name="F:Newtonsoft.Json.WriteState.Property">
7895
            <summary>
7896
            A property is being written.
7897
            </summary>
7898
        </member>
7899
        <member name="F:Newtonsoft.Json.WriteState.Start">
7900
            <summary>
7901
            A write method has not been called.
7902
            </summary>
7903
        </member>
7904
    </members>
7905
</doc>