프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / packages / Newtonsoft.Json.6.0.4 / lib / net40 / Newtonsoft.Json.xml @ 23a96932

이력 | 보기 | 이력해설 | 다운로드 (459 KB)

1 787a4489 KangIngu
<?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.SupportMultipleContent">
120
            <summary>
121
            Gets or sets a value indicating whether multiple pieces of JSON content can
122
            be read from a continuous stream without erroring.
123
            </summary>
124
            <value>
125
            true to support reading multiple pieces of JSON content; otherwise false. The default is false.
126
            </value>
127
        </member>
128
        <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
129
            <summary>
130
            Gets the quotation mark character used to enclose the value of a string.
131
            </summary>
132
        </member>
133
        <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
134
            <summary>
135
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when reading JSON.
136
            </summary>
137
        </member>
138
        <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
139
            <summary>
140
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
141
            </summary>
142
        </member>
143
        <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
144
            <summary>
145
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
146
            </summary>
147
        </member>
148
        <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
149
            <summary>
150
            Get or set how custom date formatted strings are parsed when reading JSON.
151
            </summary>
152
        </member>
153
        <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
154
            <summary>
155
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
156
            </summary>
157
        </member>
158
        <member name="P:Newtonsoft.Json.JsonReader.TokenType">
159
            <summary>
160
            Gets the type of the current JSON token. 
161
            </summary>
162
        </member>
163
        <member name="P:Newtonsoft.Json.JsonReader.Value">
164
            <summary>
165
            Gets the text value of the current JSON token.
166
            </summary>
167
        </member>
168
        <member name="P:Newtonsoft.Json.JsonReader.ValueType">
169
            <summary>
170
            Gets The Common Language Runtime (CLR) type for the current JSON token.
171
            </summary>
172
        </member>
173
        <member name="P:Newtonsoft.Json.JsonReader.Depth">
174
            <summary>
175
            Gets the depth of the current token in the JSON document.
176
            </summary>
177
            <value>The depth of the current token in the JSON document.</value>
178
        </member>
179
        <member name="P:Newtonsoft.Json.JsonReader.Path">
180
            <summary>
181
            Gets the path of the current JSON token. 
182
            </summary>
183
        </member>
184
        <member name="P:Newtonsoft.Json.JsonReader.Culture">
185
            <summary>
186
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
187
            </summary>
188
        </member>
189
        <member name="T:Newtonsoft.Json.JsonReader.State">
190
            <summary>
191
            Specifies the state of the reader.
192
            </summary>
193
        </member>
194
        <member name="F:Newtonsoft.Json.JsonReader.State.Start">
195
            <summary>
196
            The Read method has not been called.
197
            </summary>
198
        </member>
199
        <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
200
            <summary>
201
            The end of the file has been reached successfully.
202
            </summary>
203
        </member>
204
        <member name="F:Newtonsoft.Json.JsonReader.State.Property">
205
            <summary>
206
            Reader is at a property.
207
            </summary>
208
        </member>
209
        <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
210
            <summary>
211
            Reader is at the start of an object.
212
            </summary>
213
        </member>
214
        <member name="F:Newtonsoft.Json.JsonReader.State.Object">
215
            <summary>
216
            Reader is in an object.
217
            </summary>
218
        </member>
219
        <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
220
            <summary>
221
            Reader is at the start of an array.
222
            </summary>
223
        </member>
224
        <member name="F:Newtonsoft.Json.JsonReader.State.Array">
225
            <summary>
226
            Reader is in an array.
227
            </summary>
228
        </member>
229
        <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
230
            <summary>
231
            The Close method has been called.
232
            </summary>
233
        </member>
234
        <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
235
            <summary>
236
            Reader has just read a value.
237
            </summary>
238
        </member>
239
        <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
240
            <summary>
241
            Reader is at the start of a constructor.
242
            </summary>
243
        </member>
244
        <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
245
            <summary>
246
            Reader in a constructor.
247
            </summary>
248
        </member>
249
        <member name="F:Newtonsoft.Json.JsonReader.State.Error">
250
            <summary>
251
            An error occurred that prevents the read operation from continuing.
252
            </summary>
253
        </member>
254
        <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
255
            <summary>
256
            The end of the file has been reached successfully.
257
            </summary>
258
        </member>
259
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
260
            <summary>
261
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
262
            </summary>
263
            <param name="stream">The stream.</param>
264
        </member>
265
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
266
            <summary>
267
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
268
            </summary>
269
            <param name="reader">The reader.</param>
270
        </member>
271
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
272
            <summary>
273
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
274
            </summary>
275
            <param name="stream">The stream.</param>
276
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
277
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
278
        </member>
279
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
280
            <summary>
281
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
282
            </summary>
283
            <param name="reader">The reader.</param>
284
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
285
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
286
        </member>
287
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
288
            <summary>
289
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
290
            </summary>
291
            <returns>
292
            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.
293
            </returns>
294
        </member>
295
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal">
296
            <summary>
297
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
298
            </summary>
299
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
300
        </member>
301
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
302
            <summary>
303
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
304
            </summary>
305
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
306
        </member>
307
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsString">
308
            <summary>
309
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
310
            </summary>
311
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
312
        </member>
313
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime">
314
            <summary>
315
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
316
            </summary>
317
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
318
        </member>
319
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset">
320
            <summary>
321
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
322
            </summary>
323
            <returns>
324
            A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.
325
            </returns>
326
        </member>
327
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
328
            <summary>
329
            Reads the next JSON token from the stream.
330
            </summary>
331
            <returns>
332
            true if the next token was read successfully; false if there are no more tokens to read.
333
            </returns>
334
        </member>
335
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
336
            <summary>
337
            Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed.
338
            </summary>
339
        </member>
340
        <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
341
            <summary>
342
            Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.
343
            </summary>
344
            <value>
345
                    <c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
346
            </value>
347
        </member>
348
        <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
349
            <summary>
350
            Gets or sets a value indicating whether the root object will be read as a JSON array.
351
            </summary>
352
            <value>
353
                    <c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
354
            </value>
355
        </member>
356
        <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
357
            <summary>
358
            Gets or sets the <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.
359
            </summary>
360
            <value>The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
361
        </member>
362
        <member name="T:Newtonsoft.Json.Bson.BsonWriter">
363
            <summary>
364
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
365
            </summary>
366
        </member>
367
        <member name="T:Newtonsoft.Json.JsonWriter">
368
            <summary>
369
            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
370
            </summary>
371
        </member>
372
        <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
373
            <summary>
374
            Creates an instance of the <c>JsonWriter</c> class. 
375
            </summary>
376
        </member>
377
        <member name="M:Newtonsoft.Json.JsonWriter.Flush">
378
            <summary>
379
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
380
            </summary>
381
        </member>
382
        <member name="M:Newtonsoft.Json.JsonWriter.Close">
383
            <summary>
384
            Closes this stream and the underlying stream.
385
            </summary>
386
        </member>
387
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
388
            <summary>
389
            Writes the beginning of a Json object.
390
            </summary>
391
        </member>
392
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
393
            <summary>
394
            Writes the end of a Json object.
395
            </summary>
396
        </member>
397
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
398
            <summary>
399
            Writes the beginning of a Json array.
400
            </summary>
401
        </member>
402
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
403
            <summary>
404
            Writes the end of an array.
405
            </summary>
406
        </member>
407
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
408
            <summary>
409
            Writes the start of a constructor with the given name.
410
            </summary>
411
            <param name="name">The name of the constructor.</param>
412
        </member>
413
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
414
            <summary>
415
            Writes the end constructor.
416
            </summary>
417
        </member>
418
        <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
419
            <summary>
420
            Writes the property name of a name/value pair on a JSON object.
421
            </summary>
422
            <param name="name">The name of the property.</param>
423
        </member>
424
        <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">
425
            <summary>
426
            Writes the property name of a name/value pair on a JSON object.
427
            </summary>
428
            <param name="name">The name of the property.</param>
429
            <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
430
        </member>
431
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
432
            <summary>
433
            Writes the end of the current Json object or array.
434
            </summary>
435
        </member>
436
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
437
            <summary>
438
            Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.
439
            </summary>
440
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
441
        </member>
442
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">
443
            <summary>
444
            Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
445
            </summary>
446
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
447
            <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
448
        </member>
449
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
450
            <summary>
451
            Writes the specified end token.
452
            </summary>
453
            <param name="token">The end token to write.</param>
454
        </member>
455
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
456
            <summary>
457
            Writes indent characters.
458
            </summary>
459
        </member>
460
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
461
            <summary>
462
            Writes the JSON value delimiter.
463
            </summary>
464
        </member>
465
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
466
            <summary>
467
            Writes an indent space.
468
            </summary>
469
        </member>
470
        <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
471
            <summary>
472
            Writes a null value.
473
            </summary>
474
        </member>
475
        <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
476
            <summary>
477
            Writes an undefined value.
478
            </summary>
479
        </member>
480
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
481
            <summary>
482
            Writes raw JSON without changing the writer's state.
483
            </summary>
484
            <param name="json">The raw JSON to write.</param>
485
        </member>
486
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
487
            <summary>
488
            Writes raw JSON where a value is expected and updates the writer's state.
489
            </summary>
490
            <param name="json">The raw JSON to write.</param>
491
        </member>
492
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
493
            <summary>
494
            Writes a <see cref="T:System.String"/> value.
495
            </summary>
496
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
497
        </member>
498
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
499
            <summary>
500
            Writes a <see cref="T:System.Int32"/> value.
501
            </summary>
502
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
503
        </member>
504
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
505
            <summary>
506
            Writes a <see cref="T:System.UInt32"/> value.
507
            </summary>
508
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
509
        </member>
510
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
511
            <summary>
512
            Writes a <see cref="T:System.Int64"/> value.
513
            </summary>
514
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
515
        </member>
516
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
517
            <summary>
518
            Writes a <see cref="T:System.UInt64"/> value.
519
            </summary>
520
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
521
        </member>
522
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
523
            <summary>
524
            Writes a <see cref="T:System.Single"/> value.
525
            </summary>
526
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
527
        </member>
528
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
529
            <summary>
530
            Writes a <see cref="T:System.Double"/> value.
531
            </summary>
532
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
533
        </member>
534
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
535
            <summary>
536
            Writes a <see cref="T:System.Boolean"/> value.
537
            </summary>
538
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
539
        </member>
540
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
541
            <summary>
542
            Writes a <see cref="T:System.Int16"/> value.
543
            </summary>
544
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
545
        </member>
546
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
547
            <summary>
548
            Writes a <see cref="T:System.UInt16"/> value.
549
            </summary>
550
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
551
        </member>
552
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
553
            <summary>
554
            Writes a <see cref="T:System.Char"/> value.
555
            </summary>
556
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
557
        </member>
558
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
559
            <summary>
560
            Writes a <see cref="T:System.Byte"/> value.
561
            </summary>
562
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
563
        </member>
564
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
565
            <summary>
566
            Writes a <see cref="T:System.SByte"/> value.
567
            </summary>
568
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
569
        </member>
570
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
571
            <summary>
572
            Writes a <see cref="T:System.Decimal"/> value.
573
            </summary>
574
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
575
        </member>
576
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
577
            <summary>
578
            Writes a <see cref="T:System.DateTime"/> value.
579
            </summary>
580
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
581
        </member>
582
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
583
            <summary>
584
            Writes a <see cref="T:System.DateTimeOffset"/> value.
585
            </summary>
586
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
587
        </member>
588
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
589
            <summary>
590
            Writes a <see cref="T:System.Guid"/> value.
591
            </summary>
592
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
593
        </member>
594
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
595
            <summary>
596
            Writes a <see cref="T:System.TimeSpan"/> value.
597
            </summary>
598
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
599
        </member>
600
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
601
            <summary>
602
            Writes a <see cref="T:System.Nullable`1"/> value.
603
            </summary>
604
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
605
        </member>
606
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
607
            <summary>
608
            Writes a <see cref="T:System.Nullable`1"/> value.
609
            </summary>
610
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
611
        </member>
612
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
613
            <summary>
614
            Writes a <see cref="T:System.Nullable`1"/> value.
615
            </summary>
616
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
617
        </member>
618
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
619
            <summary>
620
            Writes a <see cref="T:System.Nullable`1"/> value.
621
            </summary>
622
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
623
        </member>
624
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
625
            <summary>
626
            Writes a <see cref="T:System.Nullable`1"/> value.
627
            </summary>
628
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
629
        </member>
630
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
631
            <summary>
632
            Writes a <see cref="T:System.Nullable`1"/> value.
633
            </summary>
634
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
635
        </member>
636
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
637
            <summary>
638
            Writes a <see cref="T:System.Nullable`1"/> value.
639
            </summary>
640
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
641
        </member>
642
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
643
            <summary>
644
            Writes a <see cref="T:System.Nullable`1"/> value.
645
            </summary>
646
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
647
        </member>
648
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
649
            <summary>
650
            Writes a <see cref="T:System.Nullable`1"/> value.
651
            </summary>
652
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
653
        </member>
654
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
655
            <summary>
656
            Writes a <see cref="T:System.Nullable`1"/> value.
657
            </summary>
658
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
659
        </member>
660
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
661
            <summary>
662
            Writes a <see cref="T:System.Nullable`1"/> value.
663
            </summary>
664
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
665
        </member>
666
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
667
            <summary>
668
            Writes a <see cref="T:System.Nullable`1"/> value.
669
            </summary>
670
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
671
        </member>
672
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
673
            <summary>
674
            Writes a <see cref="T:System.Nullable`1"/> value.
675
            </summary>
676
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
677
        </member>
678
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
679
            <summary>
680
            Writes a <see cref="T:System.Nullable`1"/> value.
681
            </summary>
682
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
683
        </member>
684
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">
685
            <summary>
686
            Writes a <see cref="T:System.Nullable`1"/> value.
687
            </summary>
688
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
689
        </member>
690
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
691
            <summary>
692
            Writes a <see cref="T:System.Nullable`1"/> value.
693
            </summary>
694
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
695
        </member>
696
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
697
            <summary>
698
            Writes a <see cref="T:System.Nullable`1"/> value.
699
            </summary>
700
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
701
        </member>
702
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
703
            <summary>
704
            Writes a <see cref="T:Byte[]"/> value.
705
            </summary>
706
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
707
        </member>
708
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
709
            <summary>
710
            Writes a <see cref="T:System.Uri"/> value.
711
            </summary>
712
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
713
        </member>
714
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
715
            <summary>
716
            Writes a <see cref="T:System.Object"/> value.
717
            An error will raised if the value cannot be written as a single JSON token.
718
            </summary>
719
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
720
        </member>
721
        <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
722
            <summary>
723
            Writes out a comment <code>/*...*/</code> containing the specified text. 
724
            </summary>
725
            <param name="text">Text to place inside the comment.</param>
726
        </member>
727
        <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
728
            <summary>
729
            Writes out the given white space.
730
            </summary>
731
            <param name="ws">The string of white space characters.</param>
732
        </member>
733
        <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">
734
            <summary>
735
            Sets the state of the JsonWriter,
736
            </summary>
737
            <param name="token">The JsonToken being written.</param>
738
            <param name="value">The value being written.</param>
739
        </member>
740
        <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
741
            <summary>
742
            Gets or sets a value indicating whether the underlying stream or
743
            <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed.
744
            </summary>
745
            <value>
746
            true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
747
            the writer is closed; otherwise false. The default is true.
748
            </value>
749
        </member>
750
        <member name="P:Newtonsoft.Json.JsonWriter.Top">
751
            <summary>
752
            Gets the top.
753
            </summary>
754
            <value>The top.</value>
755
        </member>
756
        <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
757
            <summary>
758
            Gets the state of the writer.
759
            </summary>
760
        </member>
761
        <member name="P:Newtonsoft.Json.JsonWriter.Path">
762
            <summary>
763
            Gets the path of the writer. 
764
            </summary>
765
        </member>
766
        <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
767
            <summary>
768
            Indicates how JSON text output is formatted.
769
            </summary>
770
        </member>
771
        <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
772
            <summary>
773
            Get or set how dates are written to JSON text.
774
            </summary>
775
        </member>
776
        <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
777
            <summary>
778
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when writing JSON text.
779
            </summary>
780
        </member>
781
        <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
782
            <summary>
783
            Get or set how strings are escaped when writing JSON text.
784
            </summary>
785
        </member>
786
        <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
787
            <summary>
788
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
789
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
790
            are written to JSON text.
791
            </summary>
792
        </member>
793
        <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
794
            <summary>
795
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
796
            </summary>
797
        </member>
798
        <member name="P:Newtonsoft.Json.JsonWriter.Culture">
799
            <summary>
800
            Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
801
            </summary>
802
        </member>
803
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
804
            <summary>
805
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
806
            </summary>
807
            <param name="stream">The stream.</param>
808
        </member>
809
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
810
            <summary>
811
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
812
            </summary>
813
            <param name="writer">The writer.</param>
814
        </member>
815
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
816
            <summary>
817
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
818
            </summary>
819
        </member>
820
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
821
            <summary>
822
            Writes the end.
823
            </summary>
824
            <param name="token">The token.</param>
825
        </member>
826
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
827
            <summary>
828
            Writes out a comment <code>/*...*/</code> containing the specified text.
829
            </summary>
830
            <param name="text">Text to place inside the comment.</param>
831
        </member>
832
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
833
            <summary>
834
            Writes the start of a constructor with the given name.
835
            </summary>
836
            <param name="name">The name of the constructor.</param>
837
        </member>
838
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
839
            <summary>
840
            Writes raw JSON.
841
            </summary>
842
            <param name="json">The raw JSON to write.</param>
843
        </member>
844
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
845
            <summary>
846
            Writes raw JSON where a value is expected and updates the writer's state.
847
            </summary>
848
            <param name="json">The raw JSON to write.</param>
849
        </member>
850
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
851
            <summary>
852
            Writes the beginning of a Json array.
853
            </summary>
854
        </member>
855
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
856
            <summary>
857
            Writes the beginning of a Json object.
858
            </summary>
859
        </member>
860
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
861
            <summary>
862
            Writes the property name of a name/value pair on a Json object.
863
            </summary>
864
            <param name="name">The name of the property.</param>
865
        </member>
866
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
867
            <summary>
868
            Closes this stream and the underlying stream.
869
            </summary>
870
        </member>
871
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">
872
            <summary>
873
            Writes a <see cref="T:System.Object"/> value.
874
            An error will raised if the value cannot be written as a single JSON token.
875
            </summary>
876
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
877
        </member>
878
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
879
            <summary>
880
            Writes a null value.
881
            </summary>
882
        </member>
883
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
884
            <summary>
885
            Writes an undefined value.
886
            </summary>
887
        </member>
888
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
889
            <summary>
890
            Writes a <see cref="T:System.String"/> value.
891
            </summary>
892
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
893
        </member>
894
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
895
            <summary>
896
            Writes a <see cref="T:System.Int32"/> value.
897
            </summary>
898
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
899
        </member>
900
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
901
            <summary>
902
            Writes a <see cref="T:System.UInt32"/> value.
903
            </summary>
904
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
905
        </member>
906
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
907
            <summary>
908
            Writes a <see cref="T:System.Int64"/> value.
909
            </summary>
910
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
911
        </member>
912
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
913
            <summary>
914
            Writes a <see cref="T:System.UInt64"/> value.
915
            </summary>
916
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
917
        </member>
918
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
919
            <summary>
920
            Writes a <see cref="T:System.Single"/> value.
921
            </summary>
922
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
923
        </member>
924
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
925
            <summary>
926
            Writes a <see cref="T:System.Double"/> value.
927
            </summary>
928
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
929
        </member>
930
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
931
            <summary>
932
            Writes a <see cref="T:System.Boolean"/> value.
933
            </summary>
934
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
935
        </member>
936
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
937
            <summary>
938
            Writes a <see cref="T:System.Int16"/> value.
939
            </summary>
940
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
941
        </member>
942
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
943
            <summary>
944
            Writes a <see cref="T:System.UInt16"/> value.
945
            </summary>
946
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
947
        </member>
948
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
949
            <summary>
950
            Writes a <see cref="T:System.Char"/> value.
951
            </summary>
952
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
953
        </member>
954
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
955
            <summary>
956
            Writes a <see cref="T:System.Byte"/> value.
957
            </summary>
958
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
959
        </member>
960
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
961
            <summary>
962
            Writes a <see cref="T:System.SByte"/> value.
963
            </summary>
964
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
965
        </member>
966
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
967
            <summary>
968
            Writes a <see cref="T:System.Decimal"/> value.
969
            </summary>
970
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
971
        </member>
972
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
973
            <summary>
974
            Writes a <see cref="T:System.DateTime"/> value.
975
            </summary>
976
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
977
        </member>
978
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)">
979
            <summary>
980
            Writes a <see cref="T:System.DateTimeOffset"/> value.
981
            </summary>
982
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
983
        </member>
984
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
985
            <summary>
986
            Writes a <see cref="T:Byte[]"/> value.
987
            </summary>
988
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
989
        </member>
990
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
991
            <summary>
992
            Writes a <see cref="T:System.Guid"/> value.
993
            </summary>
994
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
995
        </member>
996
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
997
            <summary>
998
            Writes a <see cref="T:System.TimeSpan"/> value.
999
            </summary>
1000
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
1001
        </member>
1002
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
1003
            <summary>
1004
            Writes a <see cref="T:System.Uri"/> value.
1005
            </summary>
1006
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
1007
        </member>
1008
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
1009
            <summary>
1010
            Writes a <see cref="T:Byte[]"/> value that represents a BSON object id.
1011
            </summary>
1012
            <param name="value">The Object ID value to write.</param>
1013
        </member>
1014
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
1015
            <summary>
1016
            Writes a BSON regex.
1017
            </summary>
1018
            <param name="pattern">The regex pattern.</param>
1019
            <param name="options">The regex options.</param>
1020
        </member>
1021
        <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
1022
            <summary>
1023
            Gets or sets the <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.
1024
            When set to <see cref="F:System.DateTimeKind.Unspecified"/> no conversion will occur.
1025
            </summary>
1026
            <value>The <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
1027
        </member>
1028
        <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
1029
            <summary>
1030
            Represents a BSON Oid (object id).
1031
            </summary>
1032
        </member>
1033
        <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">
1034
            <summary>
1035
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.
1036
            </summary>
1037
            <param name="value">The Oid value.</param>
1038
        </member>
1039
        <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
1040
            <summary>
1041
            Gets or sets the value of the Oid.
1042
            </summary>
1043
            <value>The value of the Oid.</value>
1044
        </member>
1045
        <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
1046
            <summary>
1047
            Converts a binary value to and from a base 64 string value.
1048
            </summary>
1049
        </member>
1050
        <member name="T:Newtonsoft.Json.JsonConverter">
1051
            <summary>
1052
            Converts an object to and from JSON.
1053
            </summary>
1054
        </member>
1055
        <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1056
            <summary>
1057
            Writes the JSON representation of the object.
1058
            </summary>
1059
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1060
            <param name="value">The value.</param>
1061
            <param name="serializer">The calling serializer.</param>
1062
        </member>
1063
        <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1064
            <summary>
1065
            Reads the JSON representation of the object.
1066
            </summary>
1067
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1068
            <param name="objectType">Type of the object.</param>
1069
            <param name="existingValue">The existing value of object being read.</param>
1070
            <param name="serializer">The calling serializer.</param>
1071
            <returns>The object value.</returns>
1072
        </member>
1073
        <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
1074
            <summary>
1075
            Determines whether this instance can convert the specified object type.
1076
            </summary>
1077
            <param name="objectType">Type of the object.</param>
1078
            <returns>
1079
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1080
            </returns>
1081
        </member>
1082
        <member name="M:Newtonsoft.Json.JsonConverter.GetSchema">
1083
            <summary>
1084
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.
1085
            </summary>
1086
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns>
1087
        </member>
1088
        <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
1089
            <summary>
1090
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
1091
            </summary>
1092
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
1093
        </member>
1094
        <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
1095
            <summary>
1096
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1097
            </summary>
1098
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
1099
        </member>
1100
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.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.BinaryConverter.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.BinaryConverter.CanConvert(System.Type)">
1119
            <summary>
1120
            Determines whether this instance can convert the specified object type.
1121
            </summary>
1122
            <param name="objectType">Type of the object.</param>
1123
            <returns>
1124
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1125
            </returns>
1126
        </member>
1127
        <member name="T:Newtonsoft.Json.Converters.DataSetConverter">
1128
            <summary>
1129
            Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.
1130
            </summary>
1131
        </member>
1132
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1133
            <summary>
1134
            Writes the JSON representation of the object.
1135
            </summary>
1136
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1137
            <param name="value">The value.</param>
1138
            <param name="serializer">The calling serializer.</param>
1139
        </member>
1140
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1141
            <summary>
1142
            Reads the JSON representation of the object.
1143
            </summary>
1144
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1145
            <param name="objectType">Type of the object.</param>
1146
            <param name="existingValue">The existing value of object being read.</param>
1147
            <param name="serializer">The calling serializer.</param>
1148
            <returns>The object value.</returns>
1149
        </member>
1150
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
1151
            <summary>
1152
            Determines whether this instance can convert the specified value type.
1153
            </summary>
1154
            <param name="valueType">Type of the value.</param>
1155
            <returns>
1156
                    <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1157
            </returns>
1158
        </member>
1159
        <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
1160
            <summary>
1161
            Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
1162
            </summary>
1163
        </member>
1164
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1165
            <summary>
1166
            Writes the JSON representation of the object.
1167
            </summary>
1168
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1169
            <param name="value">The value.</param>
1170
            <param name="serializer">The calling serializer.</param>
1171
        </member>
1172
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1173
            <summary>
1174
            Reads the JSON representation of the object.
1175
            </summary>
1176
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1177
            <param name="objectType">Type of the object.</param>
1178
            <param name="existingValue">The existing value of object being read.</param>
1179
            <param name="serializer">The calling serializer.</param>
1180
            <returns>The object value.</returns>
1181
        </member>
1182
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
1183
            <summary>
1184
            Determines whether this instance can convert the specified value type.
1185
            </summary>
1186
            <param name="valueType">Type of the value.</param>
1187
            <returns>
1188
                    <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1189
            </returns>
1190
        </member>
1191
        <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
1192
            <summary>
1193
            Create a custom object
1194
            </summary>
1195
            <typeparam name="T">The object type to convert.</typeparam>
1196
        </member>
1197
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1198
            <summary>
1199
            Writes the JSON representation of the object.
1200
            </summary>
1201
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1202
            <param name="value">The value.</param>
1203
            <param name="serializer">The calling serializer.</param>
1204
        </member>
1205
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1206
            <summary>
1207
            Reads the JSON representation of the object.
1208
            </summary>
1209
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1210
            <param name="objectType">Type of the object.</param>
1211
            <param name="existingValue">The existing value of object being read.</param>
1212
            <param name="serializer">The calling serializer.</param>
1213
            <returns>The object value.</returns>
1214
        </member>
1215
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
1216
            <summary>
1217
            Creates an object which will then be populated by the serializer.
1218
            </summary>
1219
            <param name="objectType">Type of the object.</param>
1220
            <returns>The created object.</returns>
1221
        </member>
1222
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
1223
            <summary>
1224
            Determines whether this instance can convert the specified object type.
1225
            </summary>
1226
            <param name="objectType">Type of the object.</param>
1227
            <returns>
1228
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1229
            </returns>
1230
        </member>
1231
        <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
1232
            <summary>
1233
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1234
            </summary>
1235
            <value>
1236
                    <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
1237
            </value>
1238
        </member>
1239
        <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
1240
            <summary>
1241
            Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
1242
            </summary>
1243
        </member>
1244
        <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.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="T:Newtonsoft.Json.Converters.DiscriminatedUnionConverter">
1254
            <summary>
1255
            Converts a F# discriminated union type to and from JSON.
1256
            </summary>
1257
        </member>
1258
        <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1259
            <summary>
1260
            Writes the JSON representation of the object.
1261
            </summary>
1262
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1263
            <param name="value">The value.</param>
1264
            <param name="serializer">The calling serializer.</param>
1265
        </member>
1266
        <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1267
            <summary>
1268
            Reads the JSON representation of the object.
1269
            </summary>
1270
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1271
            <param name="objectType">Type of the object.</param>
1272
            <param name="existingValue">The existing value of object being read.</param>
1273
            <param name="serializer">The calling serializer.</param>
1274
            <returns>The object value.</returns>
1275
        </member>
1276
        <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.CanConvert(System.Type)">
1277
            <summary>
1278
            Determines whether this instance can convert the specified object type.
1279
            </summary>
1280
            <param name="objectType">Type of the object.</param>
1281
            <returns>
1282
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1283
            </returns>
1284
        </member>
1285
        <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter">
1286
            <summary>
1287
            Converts an Entity Framework EntityKey to and from JSON.
1288
            </summary>
1289
        </member>
1290
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1291
            <summary>
1292
            Writes the JSON representation of the object.
1293
            </summary>
1294
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1295
            <param name="value">The value.</param>
1296
            <param name="serializer">The calling serializer.</param>
1297
        </member>
1298
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1299
            <summary>
1300
            Reads the JSON representation of the object.
1301
            </summary>
1302
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1303
            <param name="objectType">Type of the object.</param>
1304
            <param name="existingValue">The existing value of object being read.</param>
1305
            <param name="serializer">The calling serializer.</param>
1306
            <returns>The object value.</returns>
1307
        </member>
1308
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)">
1309
            <summary>
1310
            Determines whether this instance can convert the specified object type.
1311
            </summary>
1312
            <param name="objectType">Type of the object.</param>
1313
            <returns>
1314
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1315
            </returns>
1316
        </member>
1317
        <member name="T:Newtonsoft.Json.Converters.ExpandoObjectConverter">
1318
            <summary>
1319
            Converts an ExpandoObject to and from JSON.
1320
            </summary>
1321
        </member>
1322
        <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1323
            <summary>
1324
            Writes the JSON representation of the object.
1325
            </summary>
1326
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1327
            <param name="value">The value.</param>
1328
            <param name="serializer">The calling serializer.</param>
1329
        </member>
1330
        <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1331
            <summary>
1332
            Reads the JSON representation of the object.
1333
            </summary>
1334
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1335
            <param name="objectType">Type of the object.</param>
1336
            <param name="existingValue">The existing value of object being read.</param>
1337
            <param name="serializer">The calling serializer.</param>
1338
            <returns>The object value.</returns>
1339
        </member>
1340
        <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)">
1341
            <summary>
1342
            Determines whether this instance can convert the specified object type.
1343
            </summary>
1344
            <param name="objectType">Type of the object.</param>
1345
            <returns>
1346
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1347
            </returns>
1348
        </member>
1349
        <member name="P:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanWrite">
1350
            <summary>
1351
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1352
            </summary>
1353
            <value>
1354
                    <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
1355
            </value>
1356
        </member>
1357
        <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
1358
            <summary>
1359
            Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
1360
            </summary>
1361
        </member>
1362
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.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.KeyValuePairConverter.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.KeyValuePairConverter.CanConvert(System.Type)">
1381
            <summary>
1382
            Determines whether this instance can convert the specified object type.
1383
            </summary>
1384
            <param name="objectType">Type of the object.</param>
1385
            <returns>
1386
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1387
            </returns>
1388
        </member>
1389
        <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
1390
            <summary>
1391
            Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
1392
            </summary>
1393
        </member>
1394
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1395
            <summary>
1396
            Writes the JSON representation of the object.
1397
            </summary>
1398
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1399
            <param name="value">The value.</param>
1400
            <param name="serializer">The calling serializer.</param>
1401
        </member>
1402
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1403
            <summary>
1404
            Reads the JSON representation of the object.
1405
            </summary>
1406
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1407
            <param name="objectType">Type of the object.</param>
1408
            <param name="existingValue">The existing value of object being read.</param>
1409
            <param name="serializer">The calling serializer.</param>
1410
            <returns>The object value.</returns>
1411
        </member>
1412
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
1413
            <summary>
1414
            Determines whether this instance can convert the specified object type.
1415
            </summary>
1416
            <param name="objectType">Type of the object.</param>
1417
            <returns>
1418
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1419
            </returns>
1420
        </member>
1421
        <member name="T:Newtonsoft.Json.Converters.RegexConverter">
1422
            <summary>
1423
            Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
1424
            </summary>
1425
        </member>
1426
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1427
            <summary>
1428
            Writes the JSON representation of the object.
1429
            </summary>
1430
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1431
            <param name="value">The value.</param>
1432
            <param name="serializer">The calling serializer.</param>
1433
        </member>
1434
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1435
            <summary>
1436
            Reads the JSON representation of the object.
1437
            </summary>
1438
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1439
            <param name="objectType">Type of the object.</param>
1440
            <param name="existingValue">The existing value of object being read.</param>
1441
            <param name="serializer">The calling serializer.</param>
1442
            <returns>The object value.</returns>
1443
        </member>
1444
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
1445
            <summary>
1446
            Determines whether this instance can convert the specified object type.
1447
            </summary>
1448
            <param name="objectType">Type of the object.</param>
1449
            <returns>
1450
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1451
            </returns>
1452
        </member>
1453
        <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
1454
            <summary>
1455
            Converts an <see cref="T:System.Enum"/> to and from its name string value.
1456
            </summary>
1457
        </member>
1458
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
1459
            <summary>
1460
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
1461
            </summary>
1462
        </member>
1463
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1464
            <summary>
1465
            Writes the JSON representation of the object.
1466
            </summary>
1467
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1468
            <param name="value">The value.</param>
1469
            <param name="serializer">The calling serializer.</param>
1470
        </member>
1471
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1472
            <summary>
1473
            Reads the JSON representation of the object.
1474
            </summary>
1475
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1476
            <param name="objectType">Type of the object.</param>
1477
            <param name="existingValue">The existing value of object being read.</param>
1478
            <param name="serializer">The calling serializer.</param>
1479
            <returns>The object value.</returns>
1480
        </member>
1481
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
1482
            <summary>
1483
            Determines whether this instance can convert the specified object type.
1484
            </summary>
1485
            <param name="objectType">Type of the object.</param>
1486
            <returns>
1487
            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1488
            </returns>
1489
        </member>
1490
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
1491
            <summary>
1492
            Gets or sets a value indicating whether the written enum text should be camel case.
1493
            </summary>
1494
            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
1495
        </member>
1496
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
1497
            <summary>
1498
            Gets or sets a value indicating whether integer values are allowed.
1499
            </summary>
1500
            <value><c>true</c> if integers are allowed; otherwise, <c>false</c>.</value>
1501
        </member>
1502
        <member name="T:Newtonsoft.Json.ConstructorHandling">
1503
            <summary>
1504
            Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1505
            </summary>
1506
        </member>
1507
        <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
1508
            <summary>
1509
            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.
1510
            </summary>
1511
        </member>
1512
        <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
1513
            <summary>
1514
            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.
1515
            </summary>
1516
        </member>
1517
        <member name="T:Newtonsoft.Json.Converters.VersionConverter">
1518
            <summary>
1519
            Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4").
1520
            </summary>
1521
        </member>
1522
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1523
            <summary>
1524
            Writes the JSON representation of the object.
1525
            </summary>
1526
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1527
            <param name="value">The value.</param>
1528
            <param name="serializer">The calling serializer.</param>
1529
        </member>
1530
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1531
            <summary>
1532
            Reads the JSON representation of the object.
1533
            </summary>
1534
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1535
            <param name="objectType">Type of the object.</param>
1536
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
1537
            <param name="serializer">The calling serializer.</param>
1538
            <returns>The object value.</returns>
1539
        </member>
1540
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
1541
            <summary>
1542
            Determines whether this instance can convert the specified object type.
1543
            </summary>
1544
            <param name="objectType">Type of the object.</param>
1545
            <returns>
1546
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1547
            </returns>
1548
        </member>
1549
        <member name="T:Newtonsoft.Json.FloatFormatHandling">
1550
            <summary>
1551
            Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
1552
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1553
            </summary>
1554
        </member>
1555
        <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
1556
            <summary>
1557
            Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".
1558
            </summary>
1559
        </member>
1560
        <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
1561
            <summary>
1562
            Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity.
1563
            Note that this will produce non-valid JSON.
1564
            </summary>
1565
        </member>
1566
        <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
1567
            <summary>
1568
            Write special floating point values as the property's default value in JSON, e.g. 0.0 for a <see cref="T:System.Double"/> property, null for a <see cref="T:System.Nullable`1"/> property.
1569
            </summary>
1570
        </member>
1571
        <member name="T:Newtonsoft.Json.FloatParseHandling">
1572
            <summary>
1573
            Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
1574
            </summary>
1575
        </member>
1576
        <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
1577
            <summary>
1578
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
1579
            </summary>
1580
        </member>
1581
        <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
1582
            <summary>
1583
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
1584
            </summary>
1585
        </member>
1586
        <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
1587
            <summary>
1588
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
1589
            </summary>
1590
        </member>
1591
        <member name="T:Newtonsoft.Json.JsonContainerAttribute">
1592
            <summary>
1593
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
1594
            </summary>
1595
        </member>
1596
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
1597
            <summary>
1598
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
1599
            </summary>
1600
        </member>
1601
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
1602
            <summary>
1603
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
1604
            </summary>
1605
            <param name="id">The container Id.</param>
1606
        </member>
1607
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
1608
            <summary>
1609
            Gets or sets the id.
1610
            </summary>
1611
            <value>The id.</value>
1612
        </member>
1613
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
1614
            <summary>
1615
            Gets or sets the title.
1616
            </summary>
1617
            <value>The title.</value>
1618
        </member>
1619
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
1620
            <summary>
1621
            Gets or sets the description.
1622
            </summary>
1623
            <value>The description.</value>
1624
        </member>
1625
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
1626
            <summary>
1627
            Gets the collection's items converter.
1628
            </summary>
1629
            <value>The collection's items converter.</value>
1630
        </member>
1631
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
1632
            <summary>
1633
            Gets or sets a value that indicates whether to preserve object references.
1634
            </summary>
1635
            <value>
1636
                    <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
1637
            </value>
1638
        </member>
1639
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
1640
            <summary>
1641
            Gets or sets a value that indicates whether to preserve collection's items references.
1642
            </summary>
1643
            <value>
1644
                    <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
1645
            </value>
1646
        </member>
1647
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
1648
            <summary>
1649
            Gets or sets the reference loop handling used when serializing the collection's items.
1650
            </summary>
1651
            <value>The reference loop handling.</value>
1652
        </member>
1653
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
1654
            <summary>
1655
            Gets or sets the type name handling used when serializing the collection's items.
1656
            </summary>
1657
            <value>The type name handling.</value>
1658
        </member>
1659
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
1660
            <summary>
1661
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
1662
            </summary>
1663
        </member>
1664
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
1665
            <summary>
1666
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
1667
            </summary>
1668
            <param name="id">The container Id.</param>
1669
        </member>
1670
        <member name="T:Newtonsoft.Json.JsonException">
1671
            <summary>
1672
            The exception thrown when an error occurs during Json serialization or deserialization.
1673
            </summary>
1674
        </member>
1675
        <member name="M:Newtonsoft.Json.JsonException.#ctor">
1676
            <summary>
1677
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1678
            </summary>
1679
        </member>
1680
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
1681
            <summary>
1682
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1683
            with a specified error message.
1684
            </summary>
1685
            <param name="message">The error message that explains the reason for the exception.</param>
1686
        </member>
1687
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
1688
            <summary>
1689
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1690
            with a specified error message and a reference to the inner exception that is the cause of this exception.
1691
            </summary>
1692
            <param name="message">The error message that explains the reason for the exception.</param>
1693
            <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>
1694
        </member>
1695
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1696
            <summary>
1697
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1698
            </summary>
1699
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
1700
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
1701
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
1702
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
1703
        </member>
1704
        <member name="T:Newtonsoft.Json.DateFormatHandling">
1705
            <summary>
1706
            Specifies how dates are formatted when writing JSON text.
1707
            </summary>
1708
        </member>
1709
        <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
1710
            <summary>
1711
            Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
1712
            </summary>
1713
        </member>
1714
        <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
1715
            <summary>
1716
            Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
1717
            </summary>
1718
        </member>
1719
        <member name="T:Newtonsoft.Json.DateParseHandling">
1720
            <summary>
1721
            Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
1722
            </summary>
1723
        </member>
1724
        <member name="F:Newtonsoft.Json.DateParseHandling.None">
1725
            <summary>
1726
            Date formatted strings are not parsed to a date type and are read as strings.
1727
            </summary>
1728
        </member>
1729
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
1730
            <summary>
1731
            Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.
1732
            </summary>
1733
        </member>
1734
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
1735
            <summary>
1736
            Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"/>.
1737
            </summary>
1738
        </member>
1739
        <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
1740
            <summary>
1741
            Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
1742
            </summary>
1743
        </member>
1744
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
1745
            <summary>
1746
            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.
1747
            </summary>
1748
        </member>
1749
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
1750
            <summary>
1751
            Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
1752
            </summary>
1753
        </member>
1754
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
1755
            <summary>
1756
            Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
1757
            If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
1758
            </summary>
1759
        </member>
1760
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
1761
            <summary>
1762
            Time zone information should be preserved when converting.
1763
            </summary>
1764
        </member>
1765
        <member name="T:Newtonsoft.Json.Formatting">
1766
            <summary>
1767
            Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
1768
            </summary>
1769
        </member>
1770
        <member name="F:Newtonsoft.Json.Formatting.None">
1771
            <summary>
1772
            No special formatting is applied. This is the default.
1773
            </summary>
1774
        </member>
1775
        <member name="F:Newtonsoft.Json.Formatting.Indented">
1776
            <summary>
1777
            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.
1778
            </summary>
1779
        </member>
1780
        <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1781
            <summary>
1782
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1783
            </summary>
1784
        </member>
1785
        <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
1786
            <summary>
1787
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection
1788
            and write values during serialization.
1789
            </summary>
1790
        </member>
1791
        <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
1792
            <summary>
1793
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.
1794
            </summary>
1795
        </member>
1796
        <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
1797
            <summary>
1798
            Gets or sets a value that indicates whether to write extension data when serializing the object.
1799
            </summary>
1800
            <value>
1801
                    <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1802
            </value>
1803
        </member>
1804
        <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
1805
            <summary>
1806
            Gets or sets a value that indicates whether to read extension data when deserializing the object.
1807
            </summary>
1808
            <value>
1809
                    <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1810
            </value>
1811
        </member>
1812
        <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">
1813
            <summary>
1814
            Specifies the settings used when merging JSON.
1815
            </summary>
1816
        </member>
1817
        <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">
1818
            <summary>
1819
            Gets or sets the method used when merging JSON arrays.
1820
            </summary>
1821
            <value>The method used when merging JSON arrays.</value>
1822
        </member>
1823
        <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
1824
            <summary>
1825
            Specifies how JSON arrays are merged together.
1826
            </summary>
1827
        </member>
1828
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">
1829
            <summary>Concatenate arrays.</summary>
1830
        </member>
1831
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">
1832
            <summary>Union arrays, skipping items that already exist.</summary>
1833
        </member>
1834
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">
1835
            <summary>Replace all array items.</summary>
1836
        </member>
1837
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">
1838
            <summary>Merge array items together, matched by index.</summary>
1839
        </member>
1840
        <member name="T:Newtonsoft.Json.MetadataPropertyHandling">
1841
            <summary>
1842
            Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1843
            </summary>
1844
        </member>
1845
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">
1846
            <summary>
1847
            Read metadata properties located at the start of a JSON object.
1848
            </summary>
1849
        </member>
1850
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">
1851
            <summary>
1852
            Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
1853
            </summary>
1854
        </member>
1855
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">
1856
            <summary>
1857
            Do not try to read metadata properties.
1858
            </summary>
1859
        </member>
1860
        <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">
1861
            <summary>
1862
            Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.
1863
            </summary>
1864
        </member>
1865
        <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
1866
            <summary>
1867
            Represents a trace writer.
1868
            </summary>
1869
        </member>
1870
        <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1871
            <summary>
1872
            Writes the specified trace level, message and optional exception.
1873
            </summary>
1874
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1875
            <param name="message">The trace message.</param>
1876
            <param name="ex">The trace exception. This parameter is optional.</param>
1877
        </member>
1878
        <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
1879
            <summary>
1880
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1881
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1882
            <code>Warning</code> and <code>Error</code> messages.
1883
            </summary>
1884
            <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>
1885
        </member>
1886
        <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1887
            <summary>
1888
            Writes the specified trace level, message and optional exception.
1889
            </summary>
1890
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1891
            <param name="message">The trace message.</param>
1892
            <param name="ex">The trace exception. This parameter is optional.</param>
1893
        </member>
1894
        <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">
1895
            <summary>
1896
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1897
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1898
            <code>Warning</code> and <code>Error</code> messages.
1899
            </summary>
1900
            <value>
1901
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1902
            </value>
1903
        </member>
1904
        <member name="T:Newtonsoft.Json.Serialization.ExpressionValueProvider">
1905
            <summary>
1906
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
1907
            </summary>
1908
        </member>
1909
        <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
1910
            <summary>
1911
            Provides methods to get and set values.
1912
            </summary>
1913
        </member>
1914
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
1915
            <summary>
1916
            Sets the value.
1917
            </summary>
1918
            <param name="target">The target to set the value on.</param>
1919
            <param name="value">The value to set on the target.</param>
1920
        </member>
1921
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
1922
            <summary>
1923
            Gets the value.
1924
            </summary>
1925
            <param name="target">The target to get the value from.</param>
1926
            <returns>The value.</returns>
1927
        </member>
1928
        <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.#ctor(System.Reflection.MemberInfo)">
1929
            <summary>
1930
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ExpressionValueProvider"/> class.
1931
            </summary>
1932
            <param name="memberInfo">The member info.</param>
1933
        </member>
1934
        <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.SetValue(System.Object,System.Object)">
1935
            <summary>
1936
            Sets the value.
1937
            </summary>
1938
            <param name="target">The target to set the value on.</param>
1939
            <param name="value">The value to set on the target.</param>
1940
        </member>
1941
        <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.GetValue(System.Object)">
1942
            <summary>
1943
            Gets the value.
1944
            </summary>
1945
            <param name="target">The target to get the value from.</param>
1946
            <returns>The value.</returns>
1947
        </member>
1948
        <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
1949
            <summary>
1950
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1951
            </summary>
1952
        </member>
1953
        <member name="T:Newtonsoft.Json.Serialization.JsonContract">
1954
            <summary>
1955
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1956
            </summary>
1957
        </member>
1958
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
1959
            <summary>
1960
            Gets the underlying type for the contract.
1961
            </summary>
1962
            <value>The underlying type for the contract.</value>
1963
        </member>
1964
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
1965
            <summary>
1966
            Gets or sets the type created during deserialization.
1967
            </summary>
1968
            <value>The type created during deserialization.</value>
1969
        </member>
1970
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
1971
            <summary>
1972
            Gets or sets whether this type contract is serialized as a reference.
1973
            </summary>
1974
            <value>Whether this type contract is serialized as a reference.</value>
1975
        </member>
1976
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
1977
            <summary>
1978
            Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for this contract.
1979
            </summary>
1980
            <value>The converter.</value>
1981
        </member>
1982
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">
1983
            <summary>
1984
            Gets or sets all methods called immediately after deserialization of the object.
1985
            </summary>
1986
            <value>The methods called immediately after deserialization of the object.</value>
1987
        </member>
1988
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">
1989
            <summary>
1990
            Gets or sets all methods called during deserialization of the object.
1991
            </summary>
1992
            <value>The methods called during deserialization of the object.</value>
1993
        </member>
1994
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">
1995
            <summary>
1996
            Gets or sets all methods called after serialization of the object graph.
1997
            </summary>
1998
            <value>The methods called after serialization of the object graph.</value>
1999
        </member>
2000
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">
2001
            <summary>
2002
            Gets or sets all methods called before serialization of the object.
2003
            </summary>
2004
            <value>The methods called before serialization of the object.</value>
2005
        </member>
2006
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">
2007
            <summary>
2008
            Gets or sets all method called when an error is thrown during the serialization of the object.
2009
            </summary>
2010
            <value>The methods called when an error is thrown during the serialization of the object.</value>
2011
        </member>
2012
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized">
2013
            <summary>
2014
            Gets or sets the method called immediately after deserialization of the object.
2015
            </summary>
2016
            <value>The method called immediately after deserialization of the object.</value>
2017
        </member>
2018
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing">
2019
            <summary>
2020
            Gets or sets the method called during deserialization of the object.
2021
            </summary>
2022
            <value>The method called during deserialization of the object.</value>
2023
        </member>
2024
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized">
2025
            <summary>
2026
            Gets or sets the method called after serialization of the object graph.
2027
            </summary>
2028
            <value>The method called after serialization of the object graph.</value>
2029
        </member>
2030
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing">
2031
            <summary>
2032
            Gets or sets the method called before serialization of the object.
2033
            </summary>
2034
            <value>The method called before serialization of the object.</value>
2035
        </member>
2036
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError">
2037
            <summary>
2038
            Gets or sets the method called when an error is thrown during the serialization of the object.
2039
            </summary>
2040
            <value>The method called when an error is thrown during the serialization of the object.</value>
2041
        </member>
2042
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
2043
            <summary>
2044
            Gets or sets the default creator method used to create the object.
2045
            </summary>
2046
            <value>The default creator method used to create the object.</value>
2047
        </member>
2048
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
2049
            <summary>
2050
            Gets or sets a value indicating whether the default creator is non public.
2051
            </summary>
2052
            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
2053
        </member>
2054
        <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
2055
            <summary>
2056
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
2057
            </summary>
2058
            <param name="underlyingType">The underlying type for the contract.</param>
2059
        </member>
2060
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
2061
            <summary>
2062
            Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2063
            </summary>
2064
            <value>The converter.</value>
2065
        </member>
2066
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
2067
            <summary>
2068
            Gets or sets a value indicating whether the collection items preserve object references.
2069
            </summary>
2070
            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
2071
        </member>
2072
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
2073
            <summary>
2074
            Gets or sets the collection item reference loop handling.
2075
            </summary>
2076
            <value>The reference loop handling.</value>
2077
        </member>
2078
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
2079
            <summary>
2080
            Gets or sets the collection item type name handling.
2081
            </summary>
2082
            <value>The type name handling.</value>
2083
        </member>
2084
        <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
2085
            <summary>
2086
            Represents a trace writer that writes to memory. When the trace message limit is
2087
            reached then old trace messages will be removed as new messages are added.
2088
            </summary>
2089
        </member>
2090
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
2091
            <summary>
2092
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.
2093
            </summary>
2094
        </member>
2095
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
2096
            <summary>
2097
            Writes the specified trace level, message and optional exception.
2098
            </summary>
2099
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
2100
            <param name="message">The trace message.</param>
2101
            <param name="ex">The trace exception. This parameter is optional.</param>
2102
        </member>
2103
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
2104
            <summary>
2105
            Returns an enumeration of the most recent trace messages.
2106
            </summary>
2107
            <returns>An enumeration of the most recent trace messages.</returns>
2108
        </member>
2109
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
2110
            <summary>
2111
            Returns a <see cref="T:System.String"/> of the most recent trace messages.
2112
            </summary>
2113
            <returns>
2114
            A <see cref="T:System.String"/> of the most recent trace messages.
2115
            </returns>
2116
        </member>
2117
        <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
2118
            <summary>
2119
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
2120
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
2121
            <code>Warning</code> and <code>Error</code> messages.
2122
            </summary>
2123
            <value>
2124
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
2125
            </value>
2126
        </member>
2127
        <member name="T:Newtonsoft.Json.IJsonLineInfo">
2128
            <summary>
2129
            Provides an interface to enable a class to return line and position information.
2130
            </summary>
2131
        </member>
2132
        <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
2133
            <summary>
2134
            Gets a value indicating whether the class can return line information.
2135
            </summary>
2136
            <returns>
2137
                    <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
2138
            </returns>
2139
        </member>
2140
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
2141
            <summary>
2142
            Gets the current line number.
2143
            </summary>
2144
            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>
2145
        </member>
2146
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
2147
            <summary>
2148
            Gets the current line position.
2149
            </summary>
2150
            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>
2151
        </member>
2152
        <member name="T:Newtonsoft.Json.StringEscapeHandling">
2153
            <summary>
2154
            Specifies how strings are escaped when writing JSON text.
2155
            </summary>
2156
        </member>
2157
        <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
2158
            <summary>
2159
            Only control characters (e.g. newline) are escaped.
2160
            </summary>
2161
        </member>
2162
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
2163
            <summary>
2164
            All non-ASCII and control characters (e.g. newline) are escaped.
2165
            </summary>
2166
        </member>
2167
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
2168
            <summary>
2169
            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.
2170
            </summary>
2171
        </member>
2172
        <member name="T:Newtonsoft.Json.Linq.JRaw">
2173
            <summary>
2174
            Represents a raw JSON string.
2175
            </summary>
2176
        </member>
2177
        <member name="T:Newtonsoft.Json.Linq.JValue">
2178
            <summary>
2179
            Represents a value in JSON (string, integer, date, etc).
2180
            </summary>
2181
        </member>
2182
        <member name="T:Newtonsoft.Json.Linq.JToken">
2183
            <summary>
2184
            Represents an abstract JSON token.
2185
            </summary>
2186
        </member>
2187
        <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
2188
            <summary>
2189
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
2190
            </summary>
2191
            <typeparam name="T">The type of token</typeparam>
2192
        </member>
2193
        <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
2194
            <summary>
2195
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
2196
            </summary>
2197
            <value></value>
2198
        </member>
2199
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
2200
            <summary>
2201
            Compares the values of two tokens, including the values of all descendant tokens.
2202
            </summary>
2203
            <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2204
            <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2205
            <returns>true if the tokens are equal; otherwise false.</returns>
2206
        </member>
2207
        <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
2208
            <summary>
2209
            Adds the specified content immediately after this token.
2210
            </summary>
2211
            <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
2212
        </member>
2213
        <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
2214
            <summary>
2215
            Adds the specified content immediately before this token.
2216
            </summary>
2217
            <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
2218
        </member>
2219
        <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
2220
            <summary>
2221
            Returns a collection of the ancestor tokens of this token.
2222
            </summary>
2223
            <returns>A collection of the ancestor tokens of this token.</returns>
2224
        </member>
2225
        <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
2226
            <summary>
2227
            Returns a collection of the sibling tokens after this token, in document order.
2228
            </summary>
2229
            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
2230
        </member>
2231
        <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
2232
            <summary>
2233
            Returns a collection of the sibling tokens before this token, in document order.
2234
            </summary>
2235
            <returns>A collection of the sibling tokens before this token, in document order.</returns>
2236
        </member>
2237
        <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
2238
            <summary>
2239
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
2240
            </summary>
2241
            <typeparam name="T">The type to convert the token to.</typeparam>
2242
            <param name="key">The token key.</param>
2243
            <returns>The converted token value.</returns>
2244
        </member>
2245
        <member name="M:Newtonsoft.Json.Linq.JToken.Children">
2246
            <summary>
2247
            Returns a collection of the child tokens of this token, in document order.
2248
            </summary>
2249
            <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>
2250
        </member>
2251
        <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
2252
            <summary>
2253
            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
2254
            </summary>
2255
            <typeparam name="T">The type to filter the child tokens on.</typeparam>
2256
            <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>
2257
        </member>
2258
        <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
2259
            <summary>
2260
            Returns a collection of the child values of this token, in document order.
2261
            </summary>
2262
            <typeparam name="T">The type to convert the values to.</typeparam>
2263
            <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>
2264
        </member>
2265
        <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
2266
            <summary>
2267
            Removes this token from its parent.
2268
            </summary>
2269
        </member>
2270
        <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
2271
            <summary>
2272
            Replaces this token with the specified token.
2273
            </summary>
2274
            <param name="value">The value.</param>
2275
        </member>
2276
        <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
2277
            <summary>
2278
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2279
            </summary>
2280
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
2281
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2282
        </member>
2283
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
2284
            <summary>
2285
            Returns the indented JSON for this token.
2286
            </summary>
2287
            <returns>
2288
            The indented JSON for this token.
2289
            </returns>
2290
        </member>
2291
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
2292
            <summary>
2293
            Returns the JSON for this token using the given formatting and converters.
2294
            </summary>
2295
            <param name="formatting">Indicates how the output is formatted.</param>
2296
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2297
            <returns>The JSON for this token using the given formatting and converters.</returns>
2298
        </member>
2299
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
2300
            <summary>
2301
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
2302
            </summary>
2303
            <param name="value">The value.</param>
2304
            <returns>The result of the conversion.</returns>
2305
        </member>
2306
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
2307
            <summary>
2308
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>.
2309
            </summary>
2310
            <param name="value">The value.</param>
2311
            <returns>The result of the conversion.</returns>
2312
        </member>
2313
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
2314
            <summary>
2315
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2316
            </summary>
2317
            <param name="value">The value.</param>
2318
            <returns>The result of the conversion.</returns>
2319
        </member>
2320
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
2321
            <summary>
2322
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>.
2323
            </summary>
2324
            <param name="value">The value.</param>
2325
            <returns>The result of the conversion.</returns>
2326
        </member>
2327
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
2328
            <summary>
2329
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2330
            </summary>
2331
            <param name="value">The value.</param>
2332
            <returns>The result of the conversion.</returns>
2333
        </member>
2334
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">
2335
            <summary>
2336
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2337
            </summary>
2338
            <param name="value">The value.</param>
2339
            <returns>The result of the conversion.</returns>
2340
        </member>
2341
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
2342
            <summary>
2343
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2344
            </summary>
2345
            <param name="value">The value.</param>
2346
            <returns>The result of the conversion.</returns>
2347
        </member>
2348
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
2349
            <summary>
2350
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2351
            </summary>
2352
            <param name="value">The value.</param>
2353
            <returns>The result of the conversion.</returns>
2354
        </member>
2355
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
2356
            <summary>
2357
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2358
            </summary>
2359
            <param name="value">The value.</param>
2360
            <returns>The result of the conversion.</returns>
2361
        </member>
2362
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
2363
            <summary>
2364
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
2365
            </summary>
2366
            <param name="value">The value.</param>
2367
            <returns>The result of the conversion.</returns>
2368
        </member>
2369
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
2370
            <summary>
2371
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
2372
            </summary>
2373
            <param name="value">The value.</param>
2374
            <returns>The result of the conversion.</returns>
2375
        </member>
2376
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
2377
            <summary>
2378
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
2379
            </summary>
2380
            <param name="value">The value.</param>
2381
            <returns>The result of the conversion.</returns>
2382
        </member>
2383
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
2384
            <summary>
2385
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.
2386
            </summary>
2387
            <param name="value">The value.</param>
2388
            <returns>The result of the conversion.</returns>
2389
        </member>
2390
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
2391
            <summary>
2392
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.
2393
            </summary>
2394
            <param name="value">The value.</param>
2395
            <returns>The result of the conversion.</returns>
2396
        </member>
2397
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">
2398
            <summary>
2399
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.
2400
            </summary>
2401
            <param name="value">The value.</param>
2402
            <returns>The result of the conversion.</returns>
2403
        </member>
2404
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
2405
            <summary>
2406
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2407
            </summary>
2408
            <param name="value">The value.</param>
2409
            <returns>The result of the conversion.</returns>
2410
        </member>
2411
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
2412
            <summary>
2413
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2414
            </summary>
2415
            <param name="value">The value.</param>
2416
            <returns>The result of the conversion.</returns>
2417
        </member>
2418
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
2419
            <summary>
2420
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2421
            </summary>
2422
            <param name="value">The value.</param>
2423
            <returns>The result of the conversion.</returns>
2424
        </member>
2425
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
2426
            <summary>
2427
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2428
            </summary>
2429
            <param name="value">The value.</param>
2430
            <returns>The result of the conversion.</returns>
2431
        </member>
2432
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">
2433
            <summary>
2434
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2435
            </summary>
2436
            <param name="value">The value.</param>
2437
            <returns>The result of the conversion.</returns>
2438
        </member>
2439
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
2440
            <summary>
2441
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>.
2442
            </summary>
2443
            <param name="value">The value.</param>
2444
            <returns>The result of the conversion.</returns>
2445
        </member>
2446
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
2447
            <summary>
2448
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2449
            </summary>
2450
            <param name="value">The value.</param>
2451
            <returns>The result of the conversion.</returns>
2452
        </member>
2453
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
2454
            <summary>
2455
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2456
            </summary>
2457
            <param name="value">The value.</param>
2458
            <returns>The result of the conversion.</returns>
2459
        </member>
2460
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
2461
            <summary>
2462
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
2463
            </summary>
2464
            <param name="value">The value.</param>
2465
            <returns>The result of the conversion.</returns>
2466
        </member>
2467
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
2468
            <summary>
2469
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2470
            </summary>
2471
            <param name="value">The value.</param>
2472
            <returns>The result of the conversion.</returns>
2473
        </member>
2474
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
2475
            <summary>
2476
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2477
            </summary>
2478
            <param name="value">The value.</param>
2479
            <returns>The result of the conversion.</returns>
2480
        </member>
2481
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
2482
            <summary>
2483
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
2484
            </summary>
2485
            <param name="value">The value.</param>
2486
            <returns>The result of the conversion.</returns>
2487
        </member>
2488
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
2489
            <summary>
2490
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
2491
            </summary>
2492
            <param name="value">The value.</param>
2493
            <returns>The result of the conversion.</returns>
2494
        </member>
2495
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
2496
            <summary>
2497
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
2498
            </summary>
2499
            <param name="value">The value.</param>
2500
            <returns>The result of the conversion.</returns>
2501
        </member>
2502
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
2503
            <summary>
2504
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
2505
            </summary>
2506
            <param name="value">The value.</param>
2507
            <returns>The result of the conversion.</returns>
2508
        </member>
2509
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
2510
            <summary>
2511
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
2512
            </summary>
2513
            <param name="value">The value.</param>
2514
            <returns>The result of the conversion.</returns>
2515
        </member>
2516
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
2517
            <summary>
2518
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte[]"/>.
2519
            </summary>
2520
            <param name="value">The value.</param>
2521
            <returns>The result of the conversion.</returns>
2522
        </member>
2523
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
2524
            <summary>
2525
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2526
            </summary>
2527
            <param name="value">The value.</param>
2528
            <returns>The result of the conversion.</returns>
2529
        </member>
2530
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
2531
            <summary>
2532
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2533
            </summary>
2534
            <param name="value">The value.</param>
2535
            <returns>The result of the conversion.</returns>
2536
        </member>
2537
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
2538
            <summary>
2539
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2540
            </summary>
2541
            <param name="value">The value.</param>
2542
            <returns>The result of the conversion.</returns>
2543
        </member>
2544
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
2545
            <summary>
2546
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2547
            </summary>
2548
            <param name="value">The value.</param>
2549
            <returns>The result of the conversion.</returns>
2550
        </member>
2551
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
2552
            <summary>
2553
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.
2554
            </summary>
2555
            <param name="value">The value.</param>
2556
            <returns>The result of the conversion.</returns>
2557
        </member>
2558
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
2559
            <summary>
2560
            Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2561
            </summary>
2562
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2563
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2564
        </member>
2565
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">
2566
            <summary>
2567
            Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2568
            </summary>
2569
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2570
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2571
        </member>
2572
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">
2573
            <summary>
2574
            Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2575
            </summary>
2576
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2577
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2578
        </member>
2579
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">
2580
            <summary>
2581
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2582
            </summary>
2583
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2584
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2585
        </member>
2586
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">
2587
            <summary>
2588
            Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2589
            </summary>
2590
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2591
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2592
        </member>
2593
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">
2594
            <summary>
2595
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2596
            </summary>
2597
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2598
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2599
        </member>
2600
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
2601
            <summary>
2602
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2603
            </summary>
2604
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2605
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2606
        </member>
2607
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
2608
            <summary>
2609
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2610
            </summary>
2611
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2612
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2613
        </member>
2614
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
2615
            <summary>
2616
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2617
            </summary>
2618
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2619
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2620
        </member>
2621
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">
2622
            <summary>
2623
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2624
            </summary>
2625
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2626
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2627
        </member>
2628
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
2629
            <summary>
2630
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2631
            </summary>
2632
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2633
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2634
        </member>
2635
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
2636
            <summary>
2637
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2638
            </summary>
2639
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2640
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2641
        </member>
2642
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
2643
            <summary>
2644
            Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2645
            </summary>
2646
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2647
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2648
        </member>
2649
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
2650
            <summary>
2651
            Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2652
            </summary>
2653
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2654
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2655
        </member>
2656
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
2657
            <summary>
2658
            Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2659
            </summary>
2660
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2661
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2662
        </member>
2663
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
2664
            <summary>
2665
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2666
            </summary>
2667
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2668
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2669
        </member>
2670
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
2671
            <summary>
2672
            Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2673
            </summary>
2674
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2675
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2676
        </member>
2677
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
2678
            <summary>
2679
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2680
            </summary>
2681
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2682
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2683
        </member>
2684
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
2685
            <summary>
2686
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2687
            </summary>
2688
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2689
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2690
        </member>
2691
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
2692
            <summary>
2693
            Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2694
            </summary>
2695
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2696
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2697
        </member>
2698
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
2699
            <summary>
2700
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2701
            </summary>
2702
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2703
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2704
        </member>
2705
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
2706
            <summary>
2707
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2708
            </summary>
2709
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2710
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2711
        </member>
2712
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
2713
            <summary>
2714
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2715
            </summary>
2716
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2717
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2718
        </member>
2719
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
2720
            <summary>
2721
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2722
            </summary>
2723
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2724
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2725
        </member>
2726
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
2727
            <summary>
2728
            Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2729
            </summary>
2730
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2731
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2732
        </member>
2733
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
2734
            <summary>
2735
            Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2736
            </summary>
2737
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2738
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2739
        </member>
2740
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
2741
            <summary>
2742
            Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2743
            </summary>
2744
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2745
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2746
        </member>
2747
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
2748
            <summary>
2749
            Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2750
            </summary>
2751
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2752
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2753
        </member>
2754
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
2755
            <summary>
2756
            Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2757
            </summary>
2758
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2759
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2760
        </member>
2761
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
2762
            <summary>
2763
            Performs an implicit conversion from <see cref="T:System.Byte[]"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2764
            </summary>
2765
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2766
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2767
        </member>
2768
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
2769
            <summary>
2770
            Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2771
            </summary>
2772
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2773
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2774
        </member>
2775
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
2776
            <summary>
2777
            Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2778
            </summary>
2779
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2780
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2781
        </member>
2782
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
2783
            <summary>
2784
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2785
            </summary>
2786
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2787
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2788
        </member>
2789
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
2790
            <summary>
2791
            Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2792
            </summary>
2793
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2794
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2795
        </member>
2796
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
2797
            <summary>
2798
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2799
            </summary>
2800
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2801
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2802
        </member>
2803
        <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
2804
            <summary>
2805
            Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
2806
            </summary>
2807
            <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
2808
        </member>
2809
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
2810
            <summary>
2811
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
2812
            </summary>
2813
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
2814
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
2815
        </member>
2816
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
2817
            <summary>
2818
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2819
            </summary>
2820
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
2821
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
2822
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
2823
        </member>
2824
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
2825
            <summary>
2826
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2827
            </summary>
2828
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
2829
            <returns>The new object created from the JSON value.</returns>
2830
        </member>
2831
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
2832
            <summary>
2833
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2834
            </summary>
2835
            <param name="objectType">The object type that the token will be deserialized to.</param>
2836
            <returns>The new object created from the JSON value.</returns>
2837
        </member>
2838
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
2839
            <summary>
2840
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2841
            </summary>
2842
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
2843
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
2844
            <returns>The new object created from the JSON value.</returns>
2845
        </member>
2846
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
2847
            <summary>
2848
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2849
            </summary>
2850
            <param name="objectType">The object type that the token will be deserialized to.</param>
2851
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
2852
            <returns>The new object created from the JSON value.</returns>
2853
        </member>
2854
        <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
2855
            <summary>
2856
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
2857
            </summary>
2858
            <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>
2859
            <returns>
2860
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
2861
            that were read from the reader. The runtime type of the token is determined
2862
            by the token type of the first token encountered in the reader.
2863
            </returns>
2864
        </member>
2865
        <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
2866
            <summary>
2867
            Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
2868
            </summary>
2869
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
2870
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
2871
        </member>
2872
        <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
2873
            <summary>
2874
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
2875
            </summary>
2876
            <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>
2877
            <returns>
2878
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
2879
            that were read from the reader. The runtime type of the token is determined
2880
            by the token type of the first token encountered in the reader.
2881
            </returns>
2882
        </member>
2883
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
2884
            <summary>
2885
            Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
2886
            </summary>
2887
            <param name="path">
2888
            A <see cref="T:System.String"/> that contains a JPath expression.
2889
            </param>
2890
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or null.</returns>
2891
        </member>
2892
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
2893
            <summary>
2894
            Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
2895
            </summary>
2896
            <param name="path">
2897
            A <see cref="T:System.String"/> that contains a JPath expression.
2898
            </param>
2899
            <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.</param>
2900
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
2901
        </member>
2902
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
2903
            <summary>
2904
            Selects a collection of elements using a JPath expression.
2905
            </summary>
2906
            <param name="path">
2907
            A <see cref="T:System.String"/> that contains a JPath expression.
2908
            </param>
2909
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
2910
        </member>
2911
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">
2912
            <summary>
2913
            Selects a collection of elements using a JPath expression.
2914
            </summary>
2915
            <param name="path">
2916
            A <see cref="T:System.String"/> that contains a JPath expression.
2917
            </param>
2918
            <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.</param>
2919
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
2920
        </member>
2921
        <member name="M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)">
2922
            <summary>
2923
            Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
2924
            </summary>
2925
            <param name="parameter">The expression tree representation of the runtime value.</param>
2926
            <returns>
2927
            The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
2928
            </returns>
2929
        </member>
2930
        <member name="M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)">
2931
            <summary>
2932
            Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
2933
            </summary>
2934
            <param name="parameter">The expression tree representation of the runtime value.</param>
2935
            <returns>
2936
            The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
2937
            </returns>
2938
        </member>
2939
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
2940
            <summary>
2941
            Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
2942
            </summary>
2943
            <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
2944
        </member>
2945
        <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
2946
            <summary>
2947
            Gets a comparer that can compare two tokens for value equality.
2948
            </summary>
2949
            <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
2950
        </member>
2951
        <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
2952
            <summary>
2953
            Gets or sets the parent.
2954
            </summary>
2955
            <value>The parent.</value>
2956
        </member>
2957
        <member name="P:Newtonsoft.Json.Linq.JToken.Root">
2958
            <summary>
2959
            Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2960
            </summary>
2961
            <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2962
        </member>
2963
        <member name="P:Newtonsoft.Json.Linq.JToken.Type">
2964
            <summary>
2965
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2966
            </summary>
2967
            <value>The type.</value>
2968
        </member>
2969
        <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
2970
            <summary>
2971
            Gets a value indicating whether this token has child tokens.
2972
            </summary>
2973
            <value>
2974
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
2975
            </value>
2976
        </member>
2977
        <member name="P:Newtonsoft.Json.Linq.JToken.Next">
2978
            <summary>
2979
            Gets the next sibling token of this node.
2980
            </summary>
2981
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
2982
        </member>
2983
        <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
2984
            <summary>
2985
            Gets the previous sibling token of this node.
2986
            </summary>
2987
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
2988
        </member>
2989
        <member name="P:Newtonsoft.Json.Linq.JToken.Path">
2990
            <summary>
2991
            Gets the path of the JSON token. 
2992
            </summary>
2993
        </member>
2994
        <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
2995
            <summary>
2996
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
2997
            </summary>
2998
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
2999
        </member>
3000
        <member name="P:Newtonsoft.Json.Linq.JToken.First">
3001
            <summary>
3002
            Get the first child token of this token.
3003
            </summary>
3004
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
3005
        </member>
3006
        <member name="P:Newtonsoft.Json.Linq.JToken.Last">
3007
            <summary>
3008
            Get the last child token of this token.
3009
            </summary>
3010
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
3011
        </member>
3012
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
3013
            <summary>
3014
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
3015
            </summary>
3016
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
3017
        </member>
3018
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
3019
            <summary>
3020
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3021
            </summary>
3022
            <param name="value">The value.</param>
3023
        </member>
3024
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
3025
            <summary>
3026
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3027
            </summary>
3028
            <param name="value">The value.</param>
3029
        </member>
3030
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
3031
            <summary>
3032
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3033
            </summary>
3034
            <param name="value">The value.</param>
3035
        </member>
3036
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
3037
            <summary>
3038
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3039
            </summary>
3040
            <param name="value">The value.</param>
3041
        </member>
3042
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
3043
            <summary>
3044
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3045
            </summary>
3046
            <param name="value">The value.</param>
3047
        </member>
3048
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
3049
            <summary>
3050
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3051
            </summary>
3052
            <param name="value">The value.</param>
3053
        </member>
3054
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
3055
            <summary>
3056
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3057
            </summary>
3058
            <param name="value">The value.</param>
3059
        </member>
3060
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTimeOffset)">
3061
            <summary>
3062
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3063
            </summary>
3064
            <param name="value">The value.</param>
3065
        </member>
3066
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
3067
            <summary>
3068
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3069
            </summary>
3070
            <param name="value">The value.</param>
3071
        </member>
3072
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
3073
            <summary>
3074
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3075
            </summary>
3076
            <param name="value">The value.</param>
3077
        </member>
3078
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
3079
            <summary>
3080
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3081
            </summary>
3082
            <param name="value">The value.</param>
3083
        </member>
3084
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
3085
            <summary>
3086
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3087
            </summary>
3088
            <param name="value">The value.</param>
3089
        </member>
3090
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
3091
            <summary>
3092
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3093
            </summary>
3094
            <param name="value">The value.</param>
3095
        </member>
3096
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
3097
            <summary>
3098
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3099
            </summary>
3100
            <param name="value">The value.</param>
3101
        </member>
3102
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
3103
            <summary>
3104
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
3105
            </summary>
3106
            <param name="value">The value.</param>
3107
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
3108
        </member>
3109
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
3110
            <summary>
3111
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
3112
            </summary>
3113
            <param name="value">The value.</param>
3114
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
3115
        </member>
3116
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">
3117
            <summary>
3118
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
3119
            </summary>
3120
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
3121
        </member>
3122
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">
3123
            <summary>
3124
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
3125
            </summary>
3126
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
3127
        </member>
3128
        <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
3129
            <summary>
3130
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3131
            </summary>
3132
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
3133
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
3134
        </member>
3135
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
3136
            <summary>
3137
            Indicates whether the current object is equal to another object of the same type.
3138
            </summary>
3139
            <returns>
3140
            true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.
3141
            </returns>
3142
            <param name="other">An object to compare with this object.</param>
3143
        </member>
3144
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
3145
            <summary>
3146
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
3147
            </summary>
3148
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
3149
            <returns>
3150
            true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
3151
            </returns>
3152
            <exception cref="T:System.NullReferenceException">
3153
            The <paramref name="obj"/> parameter is null.
3154
            </exception>
3155
        </member>
3156
        <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
3157
            <summary>
3158
            Serves as a hash function for a particular type.
3159
            </summary>
3160
            <returns>
3161
            A hash code for the current <see cref="T:System.Object"/>.
3162
            </returns>
3163
        </member>
3164
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
3165
            <summary>
3166
            Returns a <see cref="T:System.String"/> that represents this instance.
3167
            </summary>
3168
            <returns>
3169
            A <see cref="T:System.String"/> that represents this instance.
3170
            </returns>
3171
        </member>
3172
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
3173
            <summary>
3174
            Returns a <see cref="T:System.String"/> that represents this instance.
3175
            </summary>
3176
            <param name="format">The format.</param>
3177
            <returns>
3178
            A <see cref="T:System.String"/> that represents this instance.
3179
            </returns>
3180
        </member>
3181
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
3182
            <summary>
3183
            Returns a <see cref="T:System.String"/> that represents this instance.
3184
            </summary>
3185
            <param name="formatProvider">The format provider.</param>
3186
            <returns>
3187
            A <see cref="T:System.String"/> that represents this instance.
3188
            </returns>
3189
        </member>
3190
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
3191
            <summary>
3192
            Returns a <see cref="T:System.String"/> that represents this instance.
3193
            </summary>
3194
            <param name="format">The format.</param>
3195
            <param name="formatProvider">The format provider.</param>
3196
            <returns>
3197
            A <see cref="T:System.String"/> that represents this instance.
3198
            </returns>
3199
        </member>
3200
        <member name="M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)">
3201
            <summary>
3202
            Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
3203
            </summary>
3204
            <param name="parameter">The expression tree representation of the runtime value.</param>
3205
            <returns>
3206
            The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
3207
            </returns>
3208
        </member>
3209
        <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
3210
            <summary>
3211
            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.
3212
            </summary>
3213
            <param name="obj">An object to compare with this instance.</param>
3214
            <returns>
3215
            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
3216
            Value
3217
            Meaning
3218
            Less than zero
3219
            This instance is less than <paramref name="obj"/>.
3220
            Zero
3221
            This instance is equal to <paramref name="obj"/>.
3222
            Greater than zero
3223
            This instance is greater than <paramref name="obj"/>.
3224
            </returns>
3225
            <exception cref="T:System.ArgumentException">
3226
                    <paramref name="obj"/> is not the same type as this instance.
3227
            </exception>
3228
        </member>
3229
        <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
3230
            <summary>
3231
            Gets a value indicating whether this token has child tokens.
3232
            </summary>
3233
            <value>
3234
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
3235
            </value>
3236
        </member>
3237
        <member name="P:Newtonsoft.Json.Linq.JValue.Type">
3238
            <summary>
3239
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3240
            </summary>
3241
            <value>The type.</value>
3242
        </member>
3243
        <member name="P:Newtonsoft.Json.Linq.JValue.Value">
3244
            <summary>
3245
            Gets or sets the underlying token value.
3246
            </summary>
3247
            <value>The underlying token value.</value>
3248
        </member>
3249
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
3250
            <summary>
3251
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
3252
            </summary>
3253
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
3254
        </member>
3255
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
3256
            <summary>
3257
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
3258
            </summary>
3259
            <param name="rawJson">The raw json.</param>
3260
        </member>
3261
        <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
3262
            <summary>
3263
            Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
3264
            </summary>
3265
            <param name="reader">The reader.</param>
3266
            <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
3267
        </member>
3268
        <member name="T:Newtonsoft.Json.Required">
3269
            <summary>
3270
            Indicating whether a property is required.
3271
            </summary>
3272
        </member>
3273
        <member name="F:Newtonsoft.Json.Required.Default">
3274
            <summary>
3275
            The property is not required. The default state.
3276
            </summary>
3277
        </member>
3278
        <member name="F:Newtonsoft.Json.Required.AllowNull">
3279
            <summary>
3280
            The property must be defined in JSON but can be a null value.
3281
            </summary>
3282
        </member>
3283
        <member name="F:Newtonsoft.Json.Required.Always">
3284
            <summary>
3285
            The property must be defined in JSON and cannot be a null value.
3286
            </summary>
3287
        </member>
3288
        <member name="T:Newtonsoft.Json.Serialization.JsonDynamicContract">
3289
            <summary>
3290
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3291
            </summary>
3292
        </member>
3293
        <member name="M:Newtonsoft.Json.Serialization.JsonDynamicContract.#ctor(System.Type)">
3294
            <summary>
3295
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> class.
3296
            </summary>
3297
            <param name="underlyingType">The underlying type for the contract.</param>
3298
        </member>
3299
        <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.Properties">
3300
            <summary>
3301
            Gets the object's properties.
3302
            </summary>
3303
            <value>The object's properties.</value>
3304
        </member>
3305
        <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.PropertyNameResolver">
3306
            <summary>
3307
            Gets or sets the property name resolver.
3308
            </summary>
3309
            <value>The property name resolver.</value>
3310
        </member>
3311
        <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
3312
            <summary>
3313
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3314
            </summary>
3315
        </member>
3316
        <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
3317
            <summary>
3318
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
3319
            </summary>
3320
            <param name="underlyingType">The underlying type for the contract.</param>
3321
        </member>
3322
        <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
3323
            <summary>
3324
            Gets or sets the ISerializable object constructor.
3325
            </summary>
3326
            <value>The ISerializable object constructor.</value>
3327
        </member>
3328
        <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
3329
            <summary>
3330
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3331
            </summary>
3332
        </member>
3333
        <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
3334
            <summary>
3335
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
3336
            </summary>
3337
            <param name="underlyingType">The underlying type for the contract.</param>
3338
        </member>
3339
        <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
3340
            <summary>
3341
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3342
            </summary>
3343
        </member>
3344
        <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
3345
            <summary>
3346
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
3347
            </summary>
3348
            <param name="underlyingType">The underlying type for the contract.</param>
3349
        </member>
3350
        <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
3351
            <summary>
3352
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
3353
            </summary>
3354
        </member>
3355
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
3356
            <summary>
3357
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
3358
            </summary>
3359
            <param name="memberInfo">The member info.</param>
3360
        </member>
3361
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
3362
            <summary>
3363
            Sets the value.
3364
            </summary>
3365
            <param name="target">The target to set the value on.</param>
3366
            <param name="value">The value to set on the target.</param>
3367
        </member>
3368
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
3369
            <summary>
3370
            Gets the value.
3371
            </summary>
3372
            <param name="target">The target to get the value from.</param>
3373
            <returns>The value.</returns>
3374
        </member>
3375
        <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
3376
            <summary>
3377
            Provides data for the Error event.
3378
            </summary>
3379
        </member>
3380
        <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
3381
            <summary>
3382
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
3383
            </summary>
3384
            <param name="currentObject">The current object.</param>
3385
            <param name="errorContext">The error context.</param>
3386
        </member>
3387
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
3388
            <summary>
3389
            Gets the current object the error event is being raised against.
3390
            </summary>
3391
            <value>The current object the error event is being raised against.</value>
3392
        </member>
3393
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
3394
            <summary>
3395
            Gets the error context.
3396
            </summary>
3397
            <value>The error context.</value>
3398
        </member>
3399
        <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
3400
            <summary>
3401
            Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
3402
            </summary>
3403
        </member>
3404
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">
3405
            <summary>
3406
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
3407
            </summary>
3408
            <param name="name">The name.</param>
3409
        </member>
3410
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
3411
            <summary>
3412
            When overridden in a derived class, returns whether resetting an object changes its value.
3413
            </summary>
3414
            <returns>
3415
            true if resetting the component changes its value; otherwise, false.
3416
            </returns>
3417
            <param name="component">The component to test for reset capability. 
3418
                            </param>
3419
        </member>
3420
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
3421
            <summary>
3422
            When overridden in a derived class, gets the current value of the property on a component.
3423
            </summary>
3424
            <returns>
3425
            The value of a property for a given component.
3426
            </returns>
3427
            <param name="component">The component with the property for which to retrieve the value. 
3428
                            </param>
3429
        </member>
3430
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
3431
            <summary>
3432
            When overridden in a derived class, resets the value for this property of the component to the default value.
3433
            </summary>
3434
            <param name="component">The component with the property value that is to be reset to the default value. 
3435
                            </param>
3436
        </member>
3437
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
3438
            <summary>
3439
            When overridden in a derived class, sets the value of the component to a different value.
3440
            </summary>
3441
            <param name="component">The component with the property value that is to be set. 
3442
                            </param><param name="value">The new value. 
3443
                            </param>
3444
        </member>
3445
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
3446
            <summary>
3447
            When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
3448
            </summary>
3449
            <returns>
3450
            true if the property should be persisted; otherwise, false.
3451
            </returns>
3452
            <param name="component">The component with the property to be examined for persistence. 
3453
                            </param>
3454
        </member>
3455
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
3456
            <summary>
3457
            When overridden in a derived class, gets the type of the component this property is bound to.
3458
            </summary>
3459
            <returns>
3460
            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.
3461
            </returns>
3462
        </member>
3463
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
3464
            <summary>
3465
            When overridden in a derived class, gets a value indicating whether this property is read-only.
3466
            </summary>
3467
            <returns>
3468
            true if the property is read-only; otherwise, false.
3469
            </returns>
3470
        </member>
3471
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
3472
            <summary>
3473
            When overridden in a derived class, gets the type of the property.
3474
            </summary>
3475
            <returns>
3476
            A <see cref="T:System.Type"/> that represents the type of the property.
3477
            </returns>
3478
        </member>
3479
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
3480
            <summary>
3481
            Gets the hash code for the name of the member.
3482
            </summary>
3483
            <value></value>
3484
            <returns>
3485
            The hash code for the name of the member.
3486
            </returns>
3487
        </member>
3488
        <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
3489
            <summary>
3490
            Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3491
            </summary>
3492
        </member>
3493
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
3494
            <summary>
3495
            Resolves a reference to its object.
3496
            </summary>
3497
            <param name="context">The serialization context.</param>
3498
            <param name="reference">The reference to resolve.</param>
3499
            <returns>The object that</returns>
3500
        </member>
3501
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
3502
            <summary>
3503
            Gets the reference for the sepecified object.
3504
            </summary>
3505
            <param name="context">The serialization context.</param>
3506
            <param name="value">The object to get a reference for.</param>
3507
            <returns>The reference to the object.</returns>
3508
        </member>
3509
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
3510
            <summary>
3511
            Determines whether the specified object is referenced.
3512
            </summary>
3513
            <param name="context">The serialization context.</param>
3514
            <param name="value">The object to test for a reference.</param>
3515
            <returns>
3516
                    <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
3517
            </returns>
3518
        </member>
3519
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
3520
            <summary>
3521
            Adds a reference to the specified object.
3522
            </summary>
3523
            <param name="context">The serialization context.</param>
3524
            <param name="reference">The reference.</param>
3525
            <param name="value">The object to reference.</param>
3526
        </member>
3527
        <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
3528
            <summary>
3529
            Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3530
            Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable.
3531
            </summary>
3532
            <example>
3533
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References"/>       
3534
            </example>
3535
        </member>
3536
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
3537
            <summary>
3538
            Do not preserve references when serializing types.
3539
            </summary>
3540
        </member>
3541
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
3542
            <summary>
3543
            Preserve references when serializing into a JSON object structure.
3544
            </summary>
3545
        </member>
3546
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
3547
            <summary>
3548
            Preserve references when serializing into a JSON array structure.
3549
            </summary>
3550
        </member>
3551
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
3552
            <summary>
3553
            Preserve references when serializing.
3554
            </summary>
3555
        </member>
3556
        <member name="T:Newtonsoft.Json.JsonArrayAttribute">
3557
            <summary>
3558
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
3559
            </summary>
3560
        </member>
3561
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
3562
            <summary>
3563
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
3564
            </summary>
3565
        </member>
3566
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
3567
            <summary>
3568
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items
3569
            </summary>
3570
            <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
3571
        </member>
3572
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
3573
            <summary>
3574
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
3575
            </summary>
3576
            <param name="id">The container Id.</param>
3577
        </member>
3578
        <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
3579
            <summary>
3580
            Gets or sets a value indicating whether null items are allowed in the collection.
3581
            </summary>
3582
            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
3583
        </member>
3584
        <member name="T:Newtonsoft.Json.DefaultValueHandling">
3585
            <summary>
3586
            Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3587
            </summary>
3588
            <example>
3589
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class"/>
3590
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example"/>
3591
            </example>
3592
        </member>
3593
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
3594
            <summary>
3595
            Include members where the member value is the same as the member's default value when serializing objects.
3596
            Included members are written to JSON. Has no effect when deserializing.
3597
            </summary>
3598
        </member>
3599
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
3600
            <summary>
3601
            Ignore members where the member value is the same as the member's default value when serializing objects
3602
            so that is is not written to JSON.
3603
            This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,
3604
            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
3605
            placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
3606
            </summary>
3607
        </member>
3608
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
3609
            <summary>
3610
            Members with a default value but no JSON will be set to their default value when deserializing.
3611
            </summary>
3612
        </member>
3613
        <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
3614
            <summary>
3615
            Ignore members where the member value is the same as the member's default value when serializing objects
3616
            and sets members to their default value when deserializing.
3617
            </summary>
3618
        </member>
3619
        <member name="T:Newtonsoft.Json.JsonConverterAttribute">
3620
            <summary>
3621
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
3622
            </summary>
3623
        </member>
3624
        <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
3625
            <summary>
3626
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
3627
            </summary>
3628
            <param name="converterType">Type of the converter.</param>
3629
        </member>
3630
        <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
3631
            <summary>
3632
            Gets the type of the converter.
3633
            </summary>
3634
            <value>The type of the converter.</value>
3635
        </member>
3636
        <member name="T:Newtonsoft.Json.JsonObjectAttribute">
3637
            <summary>
3638
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
3639
            </summary>
3640
        </member>
3641
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
3642
            <summary>
3643
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
3644
            </summary>
3645
        </member>
3646
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
3647
            <summary>
3648
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
3649
            </summary>
3650
            <param name="memberSerialization">The member serialization.</param>
3651
        </member>
3652
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
3653
            <summary>
3654
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
3655
            </summary>
3656
            <param name="id">The container Id.</param>
3657
        </member>
3658
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
3659
            <summary>
3660
            Gets or sets the member serialization.
3661
            </summary>
3662
            <value>The member serialization.</value>
3663
        </member>
3664
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
3665
            <summary>
3666
            Gets or sets a value that indicates whether the object's properties are required.
3667
            </summary>
3668
            <value>
3669
                    A value indicating whether the object's properties are required.
3670
            </value>
3671
        </member>
3672
        <member name="T:Newtonsoft.Json.JsonSerializerSettings">
3673
            <summary>
3674
            Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
3675
            </summary>
3676
        </member>
3677
        <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
3678
            <summary>
3679
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
3680
            </summary>
3681
        </member>
3682
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
3683
            <summary>
3684
            Gets or sets how reference loops (e.g. a class referencing itself) is handled.
3685
            </summary>
3686
            <value>Reference loop handling.</value>
3687
        </member>
3688
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
3689
            <summary>
3690
            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
3691
            </summary>
3692
            <value>Missing member handling.</value>
3693
        </member>
3694
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
3695
            <summary>
3696
            Gets or sets how objects are created during deserialization.
3697
            </summary>
3698
            <value>The object creation handling.</value>
3699
        </member>
3700
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
3701
            <summary>
3702
            Gets or sets how null values are handled during serialization and deserialization.
3703
            </summary>
3704
            <value>Null value handling.</value>
3705
        </member>
3706
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
3707
            <summary>
3708
            Gets or sets how null default are handled during serialization and deserialization.
3709
            </summary>
3710
            <value>The default value handling.</value>
3711
        </member>
3712
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
3713
            <summary>
3714
            Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
3715
            </summary>
3716
            <value>The converters.</value>
3717
        </member>
3718
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
3719
            <summary>
3720
            Gets or sets how object references are preserved by the serializer.
3721
            </summary>
3722
            <value>The preserve references handling.</value>
3723
        </member>
3724
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
3725
            <summary>
3726
            Gets or sets how type name writing and reading is handled by the serializer.
3727
            </summary>
3728
            <value>The type name handling.</value>
3729
        </member>
3730
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">
3731
            <summary>
3732
            Gets or sets how metadata properties are used during deserialization.
3733
            </summary>
3734
            <value>The metadata properties handling.</value>
3735
        </member>
3736
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
3737
            <summary>
3738
            Gets or sets how a type name assembly is written and resolved by the serializer.
3739
            </summary>
3740
            <value>The type name assembly format.</value>
3741
        </member>
3742
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
3743
            <summary>
3744
            Gets or sets how constructors are used during deserialization.
3745
            </summary>
3746
            <value>The constructor handling.</value>
3747
        </member>
3748
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
3749
            <summary>
3750
            Gets or sets the contract resolver used by the serializer when
3751
            serializing .NET objects to JSON and vice versa.
3752
            </summary>
3753
            <value>The contract resolver.</value>
3754
        </member>
3755
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
3756
            <summary>
3757
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
3758
            </summary>
3759
            <value>The reference resolver.</value>
3760
        </member>
3761
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
3762
            <summary>
3763
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
3764
            </summary>
3765
            <value>The trace writer.</value>
3766
        </member>
3767
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
3768
            <summary>
3769
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
3770
            </summary>
3771
            <value>The binder.</value>
3772
        </member>
3773
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
3774
            <summary>
3775
            Gets or sets the error handler called during serialization and deserialization.
3776
            </summary>
3777
            <value>The error handler called during serialization and deserialization.</value>
3778
        </member>
3779
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
3780
            <summary>
3781
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
3782
            </summary>
3783
            <value>The context.</value>
3784
        </member>
3785
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
3786
            <summary>
3787
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
3788
            </summary>
3789
        </member>
3790
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
3791
            <summary>
3792
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
3793
            </summary>
3794
        </member>
3795
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
3796
            <summary>
3797
            Indicates how JSON text output is formatted.
3798
            </summary>
3799
        </member>
3800
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
3801
            <summary>
3802
            Get or set how dates are written to JSON text.
3803
            </summary>
3804
        </member>
3805
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
3806
            <summary>
3807
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
3808
            </summary>
3809
        </member>
3810
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
3811
            <summary>
3812
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
3813
            </summary>
3814
        </member>
3815
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
3816
            <summary>
3817
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
3818
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
3819
            are written as JSON.
3820
            </summary>
3821
        </member>
3822
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
3823
            <summary>
3824
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
3825
            </summary>
3826
        </member>
3827
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
3828
            <summary>
3829
            Get or set how strings are escaped when writing JSON text.
3830
            </summary>
3831
        </member>
3832
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
3833
            <summary>
3834
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
3835
            </summary>
3836
        </member>
3837
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
3838
            <summary>
3839
            Gets a value indicating whether there will be a check for additional content after deserializing an object.
3840
            </summary>
3841
            <value>
3842
                    <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
3843
            </value>
3844
        </member>
3845
        <member name="T:Newtonsoft.Json.JsonValidatingReader">
3846
            <summary>
3847
            Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
3848
            </summary>
3849
        </member>
3850
        <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
3851
            <summary>
3852
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
3853
            validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
3854
            </summary>
3855
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
3856
        </member>
3857
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
3858
            <summary>
3859
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3860
            </summary>
3861
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3862
        </member>
3863
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
3864
            <summary>
3865
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
3866
            </summary>
3867
            <returns>
3868
            A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null.
3869
            </returns>
3870
        </member>
3871
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
3872
            <summary>
3873
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3874
            </summary>
3875
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3876
        </member>
3877
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
3878
            <summary>
3879
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
3880
            </summary>
3881
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3882
        </member>
3883
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
3884
            <summary>
3885
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3886
            </summary>
3887
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3888
        </member>
3889
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
3890
            <summary>
3891
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3892
            </summary>
3893
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3894
        </member>
3895
        <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
3896
            <summary>
3897
            Reads the next JSON token from the stream.
3898
            </summary>
3899
            <returns>
3900
            true if the next token was read successfully; false if there are no more tokens to read.
3901
            </returns>
3902
        </member>
3903
        <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
3904
            <summary>
3905
            Sets an event handler for receiving schema validation errors.
3906
            </summary>
3907
        </member>
3908
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
3909
            <summary>
3910
            Gets the text value of the current JSON token.
3911
            </summary>
3912
            <value></value>
3913
        </member>
3914
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
3915
            <summary>
3916
            Gets the depth of the current token in the JSON document.
3917
            </summary>
3918
            <value>The depth of the current token in the JSON document.</value>
3919
        </member>
3920
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
3921
            <summary>
3922
            Gets the path of the current JSON token. 
3923
            </summary>
3924
        </member>
3925
        <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
3926
            <summary>
3927
            Gets the quotation mark character used to enclose the value of a string.
3928
            </summary>
3929
            <value></value>
3930
        </member>
3931
        <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
3932
            <summary>
3933
            Gets the type of the current JSON token.
3934
            </summary>
3935
            <value></value>
3936
        </member>
3937
        <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
3938
            <summary>
3939
            Gets the Common Language Runtime (CLR) type for the current JSON token.
3940
            </summary>
3941
            <value></value>
3942
        </member>
3943
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
3944
            <summary>
3945
            Gets or sets the schema.
3946
            </summary>
3947
            <value>The schema.</value>
3948
        </member>
3949
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
3950
            <summary>
3951
            Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
3952
            </summary>
3953
            <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
3954
        </member>
3955
        <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
3956
            <summary>
3957
            Compares tokens to determine whether they are equal.
3958
            </summary>
3959
        </member>
3960
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
3961
            <summary>
3962
            Determines whether the specified objects are equal.
3963
            </summary>
3964
            <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
3965
            <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
3966
            <returns>
3967
            true if the specified objects are equal; otherwise, false.
3968
            </returns>
3969
        </member>
3970
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
3971
            <summary>
3972
            Returns a hash code for the specified object.
3973
            </summary>
3974
            <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
3975
            <returns>A hash code for the specified object.</returns>
3976
            <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception>
3977
        </member>
3978
        <member name="T:Newtonsoft.Json.MemberSerialization">
3979
            <summary>
3980
            Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3981
            </summary>
3982
        </member>
3983
        <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
3984
            <summary>
3985
            All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
3986
            This is the default member serialization mode.
3987
            </summary>
3988
        </member>
3989
        <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
3990
            <summary>
3991
            Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/> are serialized.
3992
            This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute"/>.
3993
            </summary>
3994
        </member>
3995
        <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
3996
            <summary>
3997
            All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
3998
            This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
3999
            and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to false.
4000
            </summary>
4001
        </member>
4002
        <member name="T:Newtonsoft.Json.ObjectCreationHandling">
4003
            <summary>
4004
            Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4005
            </summary>
4006
        </member>
4007
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
4008
            <summary>
4009
            Reuse existing objects, create new objects when needed.
4010
            </summary>
4011
        </member>
4012
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
4013
            <summary>
4014
            Only reuse existing objects.
4015
            </summary>
4016
        </member>
4017
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
4018
            <summary>
4019
            Always create new objects.
4020
            </summary>
4021
        </member>
4022
        <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
4023
            <summary>
4024
            Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).
4025
            </summary>
4026
        </member>
4027
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
4028
            <summary>
4029
            Writes the JSON representation of the object.
4030
            </summary>
4031
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
4032
            <param name="value">The value.</param>
4033
            <param name="serializer">The calling serializer.</param>
4034
        </member>
4035
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
4036
            <summary>
4037
            Reads the JSON representation of the object.
4038
            </summary>
4039
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
4040
            <param name="objectType">Type of the object.</param>
4041
            <param name="existingValue">The existing value of object being read.</param>
4042
            <param name="serializer">The calling serializer.</param>
4043
            <returns>The object value.</returns>
4044
        </member>
4045
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
4046
            <summary>
4047
            Gets or sets the date time styles used when converting a date to and from JSON.
4048
            </summary>
4049
            <value>The date time styles used when converting a date to and from JSON.</value>
4050
        </member>
4051
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
4052
            <summary>
4053
            Gets or sets the date time format used when converting a date to and from JSON.
4054
            </summary>
4055
            <value>The date time format used when converting a date to and from JSON.</value>
4056
        </member>
4057
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
4058
            <summary>
4059
            Gets or sets the culture used when converting a date to and from JSON.
4060
            </summary>
4061
            <value>The culture used when converting a date to and from JSON.</value>
4062
        </member>
4063
        <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
4064
            <summary>
4065
            Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).
4066
            </summary>
4067
        </member>
4068
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
4069
            <summary>
4070
            Writes the JSON representation of the object.
4071
            </summary>
4072
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
4073
            <param name="value">The value.</param>
4074
            <param name="serializer">The calling serializer.</param>
4075
        </member>
4076
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
4077
            <summary>
4078
            Reads the JSON representation of the object.
4079
            </summary>
4080
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
4081
            <param name="objectType">Type of the object.</param>
4082
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
4083
            <param name="serializer">The calling serializer.</param>
4084
            <returns>The object value.</returns>
4085
        </member>
4086
        <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
4087
            <summary>
4088
            Converts XML to and from JSON.
4089
            </summary>
4090
        </member>
4091
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
4092
            <summary>
4093
            Writes the JSON representation of the object.
4094
            </summary>
4095
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
4096
            <param name="serializer">The calling serializer.</param>
4097
            <param name="value">The value.</param>
4098
        </member>
4099
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
4100
            <summary>
4101
            Reads the JSON representation of the object.
4102
            </summary>
4103
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
4104
            <param name="objectType">Type of the object.</param>
4105
            <param name="existingValue">The existing value of object being read.</param>
4106
            <param name="serializer">The calling serializer.</param>
4107
            <returns>The object value.</returns>
4108
        </member>
4109
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
4110
            <summary>
4111
            Checks if the attributeName is a namespace attribute.
4112
            </summary>
4113
            <param name="attributeName">Attribute name to test.</param>
4114
            <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
4115
            <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>
4116
        </member>
4117
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
4118
            <summary>
4119
            Determines whether this instance can convert the specified value type.
4120
            </summary>
4121
            <param name="valueType">Type of the value.</param>
4122
            <returns>
4123
                    <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
4124
            </returns>
4125
        </member>
4126
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
4127
            <summary>
4128
            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.
4129
            </summary>
4130
            <value>The name of the deserialize root element.</value>
4131
        </member>
4132
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
4133
            <summary>
4134
            Gets or sets a flag to indicate whether to write the Json.NET array attribute.
4135
            This attribute helps preserve arrays when converting the written XML back to JSON.
4136
            </summary>
4137
            <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>
4138
        </member>
4139
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
4140
            <summary>
4141
            Gets or sets a value indicating whether to write the root JSON object.
4142
            </summary>
4143
            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
4144
        </member>
4145
        <member name="T:Newtonsoft.Json.JsonTextReader">
4146
            <summary>
4147
            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
4148
            </summary>
4149
        </member>
4150
        <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
4151
            <summary>
4152
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
4153
            </summary>
4154
            <param name="reader">The <c>TextReader</c> containing the XML data to read.</param>
4155
        </member>
4156
        <member name="M:Newtonsoft.Json.JsonTextReader.Read">
4157
            <summary>
4158
            Reads the next JSON token from the stream.
4159
            </summary>
4160
            <returns>
4161
            true if the next token was read successfully; false if there are no more tokens to read.
4162
            </returns>
4163
        </member>
4164
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
4165
            <summary>
4166
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
4167
            </summary>
4168
            <returns>
4169
            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.
4170
            </returns>
4171
        </member>
4172
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
4173
            <summary>
4174
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4175
            </summary>
4176
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
4177
        </member>
4178
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
4179
            <summary>
4180
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4181
            </summary>
4182
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
4183
        </member>
4184
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
4185
            <summary>
4186
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
4187
            </summary>
4188
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4189
        </member>
4190
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
4191
            <summary>
4192
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4193
            </summary>
4194
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4195
        </member>
4196
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
4197
            <summary>
4198
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4199
            </summary>
4200
            <returns>A <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>
4201
        </member>
4202
        <member name="M:Newtonsoft.Json.JsonTextReader.Close">
4203
            <summary>
4204
            Changes the state to closed. 
4205
            </summary>
4206
        </member>
4207
        <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
4208
            <summary>
4209
            Gets a value indicating whether the class can return line information.
4210
            </summary>
4211
            <returns>
4212
                    <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
4213
            </returns>
4214
        </member>
4215
        <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
4216
            <summary>
4217
            Gets the current line number.
4218
            </summary>
4219
            <value>
4220
            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
4221
            </value>
4222
        </member>
4223
        <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
4224
            <summary>
4225
            Gets the current line position.
4226
            </summary>
4227
            <value>
4228
            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
4229
            </value>
4230
        </member>
4231
        <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
4232
            <summary>
4233
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
4234
            </summary>
4235
        </member>
4236
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
4237
            <summary>
4238
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
4239
            </summary>
4240
        </member>
4241
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
4242
            <summary>
4243
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
4244
            </summary>
4245
            <param name="propertyName">Name of the property.</param>
4246
        </member>
4247
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
4248
            <summary>
4249
            Gets or sets the converter used when serializing the property's collection items.
4250
            </summary>
4251
            <value>The collection's items converter.</value>
4252
        </member>
4253
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
4254
            <summary>
4255
            Gets or sets the null value handling used when serializing this property.
4256
            </summary>
4257
            <value>The null value handling.</value>
4258
        </member>
4259
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
4260
            <summary>
4261
            Gets or sets the default value handling used when serializing this property.
4262
            </summary>
4263
            <value>The default value handling.</value>
4264
        </member>
4265
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
4266
            <summary>
4267
            Gets or sets the reference loop handling used when serializing this property.
4268
            </summary>
4269
            <value>The reference loop handling.</value>
4270
        </member>
4271
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
4272
            <summary>
4273
            Gets or sets the object creation handling used when deserializing this property.
4274
            </summary>
4275
            <value>The object creation handling.</value>
4276
        </member>
4277
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
4278
            <summary>
4279
            Gets or sets the type name handling used when serializing this property.
4280
            </summary>
4281
            <value>The type name handling.</value>
4282
        </member>
4283
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
4284
            <summary>
4285
            Gets or sets whether this property's value is serialized as a reference.
4286
            </summary>
4287
            <value>Whether this property's value is serialized as a reference.</value>
4288
        </member>
4289
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
4290
            <summary>
4291
            Gets or sets the order of serialization and deserialization of a member.
4292
            </summary>
4293
            <value>The numeric order of serialization or deserialization.</value>
4294
        </member>
4295
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
4296
            <summary>
4297
            Gets or sets a value indicating whether this property is required.
4298
            </summary>
4299
            <value>
4300
                    A value indicating whether this property is required.
4301
            </value>
4302
        </member>
4303
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
4304
            <summary>
4305
            Gets or sets the name of the property.
4306
            </summary>
4307
            <value>The name of the property.</value>
4308
        </member>
4309
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
4310
            <summary>
4311
            Gets or sets the the reference loop handling used when serializing the property's collection items.
4312
            </summary>
4313
            <value>The collection's items reference loop handling.</value>
4314
        </member>
4315
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
4316
            <summary>
4317
            Gets or sets the the type name handling used when serializing the property's collection items.
4318
            </summary>
4319
            <value>The collection's items type name handling.</value>
4320
        </member>
4321
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
4322
            <summary>
4323
            Gets or sets whether this property's collection items are serialized as a reference.
4324
            </summary>
4325
            <value>Whether this property's collection items are serialized as a reference.</value>
4326
        </member>
4327
        <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
4328
            <summary>
4329
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
4330
            </summary>
4331
        </member>
4332
        <member name="T:Newtonsoft.Json.JsonTextWriter">
4333
            <summary>
4334
            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
4335
            </summary>
4336
        </member>
4337
        <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
4338
            <summary>
4339
            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>. 
4340
            </summary>
4341
            <param name="textWriter">The <c>TextWriter</c> to write to.</param>
4342
        </member>
4343
        <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
4344
            <summary>
4345
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
4346
            </summary>
4347
        </member>
4348
        <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
4349
            <summary>
4350
            Closes this stream and the underlying stream.
4351
            </summary>
4352
        </member>
4353
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
4354
            <summary>
4355
            Writes the beginning of a Json object.
4356
            </summary>
4357
        </member>
4358
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
4359
            <summary>
4360
            Writes the beginning of a Json array.
4361
            </summary>
4362
        </member>
4363
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
4364
            <summary>
4365
            Writes the start of a constructor with the given name.
4366
            </summary>
4367
            <param name="name">The name of the constructor.</param>
4368
        </member>
4369
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
4370
            <summary>
4371
            Writes the specified end token.
4372
            </summary>
4373
            <param name="token">The end token to write.</param>
4374
        </member>
4375
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
4376
            <summary>
4377
            Writes the property name of a name/value pair on a Json object.
4378
            </summary>
4379
            <param name="name">The name of the property.</param>
4380
        </member>
4381
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">
4382
            <summary>
4383
            Writes the property name of a name/value pair on a JSON object.
4384
            </summary>
4385
            <param name="name">The name of the property.</param>
4386
            <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
4387
        </member>
4388
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
4389
            <summary>
4390
            Writes indent characters.
4391
            </summary>
4392
        </member>
4393
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
4394
            <summary>
4395
            Writes the JSON value delimiter.
4396
            </summary>
4397
        </member>
4398
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
4399
            <summary>
4400
            Writes an indent space.
4401
            </summary>
4402
        </member>
4403
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">
4404
            <summary>
4405
            Writes a <see cref="T:System.Object"/> value.
4406
            An error will raised if the value cannot be written as a single JSON token.
4407
            </summary>
4408
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
4409
        </member>
4410
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
4411
            <summary>
4412
            Writes a null value.
4413
            </summary>
4414
        </member>
4415
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
4416
            <summary>
4417
            Writes an undefined value.
4418
            </summary>
4419
        </member>
4420
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
4421
            <summary>
4422
            Writes raw JSON.
4423
            </summary>
4424
            <param name="json">The raw JSON to write.</param>
4425
        </member>
4426
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
4427
            <summary>
4428
            Writes a <see cref="T:System.String"/> value.
4429
            </summary>
4430
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
4431
        </member>
4432
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
4433
            <summary>
4434
            Writes a <see cref="T:System.Int32"/> value.
4435
            </summary>
4436
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
4437
        </member>
4438
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
4439
            <summary>
4440
            Writes a <see cref="T:System.UInt32"/> value.
4441
            </summary>
4442
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
4443
        </member>
4444
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
4445
            <summary>
4446
            Writes a <see cref="T:System.Int64"/> value.
4447
            </summary>
4448
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
4449
        </member>
4450
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
4451
            <summary>
4452
            Writes a <see cref="T:System.UInt64"/> value.
4453
            </summary>
4454
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
4455
        </member>
4456
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
4457
            <summary>
4458
            Writes a <see cref="T:System.Single"/> value.
4459
            </summary>
4460
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
4461
        </member>
4462
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
4463
            <summary>
4464
            Writes a <see cref="T:System.Nullable`1"/> value.
4465
            </summary>
4466
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
4467
        </member>
4468
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
4469
            <summary>
4470
            Writes a <see cref="T:System.Double"/> value.
4471
            </summary>
4472
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
4473
        </member>
4474
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
4475
            <summary>
4476
            Writes a <see cref="T:System.Nullable`1"/> value.
4477
            </summary>
4478
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
4479
        </member>
4480
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
4481
            <summary>
4482
            Writes a <see cref="T:System.Boolean"/> value.
4483
            </summary>
4484
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
4485
        </member>
4486
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
4487
            <summary>
4488
            Writes a <see cref="T:System.Int16"/> value.
4489
            </summary>
4490
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
4491
        </member>
4492
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
4493
            <summary>
4494
            Writes a <see cref="T:System.UInt16"/> value.
4495
            </summary>
4496
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
4497
        </member>
4498
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
4499
            <summary>
4500
            Writes a <see cref="T:System.Char"/> value.
4501
            </summary>
4502
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
4503
        </member>
4504
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
4505
            <summary>
4506
            Writes a <see cref="T:System.Byte"/> value.
4507
            </summary>
4508
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
4509
        </member>
4510
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
4511
            <summary>
4512
            Writes a <see cref="T:System.SByte"/> value.
4513
            </summary>
4514
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
4515
        </member>
4516
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
4517
            <summary>
4518
            Writes a <see cref="T:System.Decimal"/> value.
4519
            </summary>
4520
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
4521
        </member>
4522
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
4523
            <summary>
4524
            Writes a <see cref="T:System.DateTime"/> value.
4525
            </summary>
4526
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
4527
        </member>
4528
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
4529
            <summary>
4530
            Writes a <see cref="T:Byte[]"/> value.
4531
            </summary>
4532
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
4533
        </member>
4534
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
4535
            <summary>
4536
            Writes a <see cref="T:System.DateTimeOffset"/> value.
4537
            </summary>
4538
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
4539
        </member>
4540
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
4541
            <summary>
4542
            Writes a <see cref="T:System.Guid"/> value.
4543
            </summary>
4544
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
4545
        </member>
4546
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
4547
            <summary>
4548
            Writes a <see cref="T:System.TimeSpan"/> value.
4549
            </summary>
4550
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
4551
        </member>
4552
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
4553
            <summary>
4554
            Writes a <see cref="T:System.Uri"/> value.
4555
            </summary>
4556
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
4557
        </member>
4558
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
4559
            <summary>
4560
            Writes out a comment <code>/*...*/</code> containing the specified text. 
4561
            </summary>
4562
            <param name="text">Text to place inside the comment.</param>
4563
        </member>
4564
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
4565
            <summary>
4566
            Writes out the given white space.
4567
            </summary>
4568
            <param name="ws">The string of white space characters.</param>
4569
        </member>
4570
        <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
4571
            <summary>
4572
            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>.
4573
            </summary>
4574
        </member>
4575
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
4576
            <summary>
4577
            Gets or sets which character to use to quote attribute values.
4578
            </summary>
4579
        </member>
4580
        <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
4581
            <summary>
4582
            Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
4583
            </summary>
4584
        </member>
4585
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
4586
            <summary>
4587
            Gets or sets a value indicating whether object names will be surrounded with quotes.
4588
            </summary>
4589
        </member>
4590
        <member name="T:Newtonsoft.Json.JsonWriterException">
4591
            <summary>
4592
            The exception thrown when an error occurs while reading Json text.
4593
            </summary>
4594
        </member>
4595
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
4596
            <summary>
4597
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
4598
            </summary>
4599
        </member>
4600
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
4601
            <summary>
4602
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
4603
            with a specified error message.
4604
            </summary>
4605
            <param name="message">The error message that explains the reason for the exception.</param>
4606
        </member>
4607
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
4608
            <summary>
4609
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
4610
            with a specified error message and a reference to the inner exception that is the cause of this exception.
4611
            </summary>
4612
            <param name="message">The error message that explains the reason for the exception.</param>
4613
            <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>
4614
        </member>
4615
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
4616
            <summary>
4617
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
4618
            </summary>
4619
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4620
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4621
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
4622
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
4623
        </member>
4624
        <member name="P:Newtonsoft.Json.JsonWriterException.Path">
4625
            <summary>
4626
            Gets the path to the JSON where the error occurred.
4627
            </summary>
4628
            <value>The path to the JSON where the error occurred.</value>
4629
        </member>
4630
        <member name="T:Newtonsoft.Json.JsonReaderException">
4631
            <summary>
4632
            The exception thrown when an error occurs while reading Json text.
4633
            </summary>
4634
        </member>
4635
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
4636
            <summary>
4637
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
4638
            </summary>
4639
        </member>
4640
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
4641
            <summary>
4642
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
4643
            with a specified error message.
4644
            </summary>
4645
            <param name="message">The error message that explains the reason for the exception.</param>
4646
        </member>
4647
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
4648
            <summary>
4649
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
4650
            with a specified error message and a reference to the inner exception that is the cause of this exception.
4651
            </summary>
4652
            <param name="message">The error message that explains the reason for the exception.</param>
4653
            <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>
4654
        </member>
4655
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
4656
            <summary>
4657
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
4658
            </summary>
4659
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4660
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4661
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
4662
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
4663
        </member>
4664
        <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
4665
            <summary>
4666
            Gets the line number indicating where the error occurred.
4667
            </summary>
4668
            <value>The line number indicating where the error occurred.</value>
4669
        </member>
4670
        <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
4671
            <summary>
4672
            Gets the line position indicating where the error occurred.
4673
            </summary>
4674
            <value>The line position indicating where the error occurred.</value>
4675
        </member>
4676
        <member name="P:Newtonsoft.Json.JsonReaderException.Path">
4677
            <summary>
4678
            Gets the path to the JSON where the error occurred.
4679
            </summary>
4680
            <value>The path to the JSON where the error occurred.</value>
4681
        </member>
4682
        <member name="T:Newtonsoft.Json.JsonConverterCollection">
4683
            <summary>
4684
            Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4685
            </summary>
4686
        </member>
4687
        <member name="T:Newtonsoft.Json.JsonConvert">
4688
            <summary>
4689
            Provides methods for converting between common language runtime types and JSON types.
4690
            </summary>
4691
            <example>
4692
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
4693
            </example>
4694
        </member>
4695
        <member name="F:Newtonsoft.Json.JsonConvert.True">
4696
            <summary>
4697
            Represents JavaScript's boolean value true as a string. This field is read-only.
4698
            </summary>
4699
        </member>
4700
        <member name="F:Newtonsoft.Json.JsonConvert.False">
4701
            <summary>
4702
            Represents JavaScript's boolean value false as a string. This field is read-only.
4703
            </summary>
4704
        </member>
4705
        <member name="F:Newtonsoft.Json.JsonConvert.Null">
4706
            <summary>
4707
            Represents JavaScript's null as a string. This field is read-only.
4708
            </summary>
4709
        </member>
4710
        <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
4711
            <summary>
4712
            Represents JavaScript's undefined as a string. This field is read-only.
4713
            </summary>
4714
        </member>
4715
        <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
4716
            <summary>
4717
            Represents JavaScript's positive infinity as a string. This field is read-only.
4718
            </summary>
4719
        </member>
4720
        <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
4721
            <summary>
4722
            Represents JavaScript's negative infinity as a string. This field is read-only.
4723
            </summary>
4724
        </member>
4725
        <member name="F:Newtonsoft.Json.JsonConvert.NaN">
4726
            <summary>
4727
            Represents JavaScript's NaN as a string. This field is read-only.
4728
            </summary>
4729
        </member>
4730
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
4731
            <summary>
4732
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
4733
            </summary>
4734
            <param name="value">The value to convert.</param>
4735
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
4736
        </member>
4737
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
4738
            <summary>
4739
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
4740
            </summary>
4741
            <param name="value">The value to convert.</param>
4742
            <param name="format">The format the date will be converted to.</param>
4743
            <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
4744
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
4745
        </member>
4746
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
4747
            <summary>
4748
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
4749
            </summary>
4750
            <param name="value">The value to convert.</param>
4751
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
4752
        </member>
4753
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
4754
            <summary>
4755
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
4756
            </summary>
4757
            <param name="value">The value to convert.</param>
4758
            <param name="format">The format the date will be converted to.</param>
4759
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
4760
        </member>
4761
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
4762
            <summary>
4763
            Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
4764
            </summary>
4765
            <param name="value">The value to convert.</param>
4766
            <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
4767
        </member>
4768
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
4769
            <summary>
4770
            Converts the <see cref="T:System.Char"/> to its JSON string representation.
4771
            </summary>
4772
            <param name="value">The value to convert.</param>
4773
            <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
4774
        </member>
4775
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
4776
            <summary>
4777
            Converts the <see cref="T:System.Enum"/> to its JSON string representation.
4778
            </summary>
4779
            <param name="value">The value to convert.</param>
4780
            <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
4781
        </member>
4782
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
4783
            <summary>
4784
            Converts the <see cref="T:System.Int32"/> to its JSON string representation.
4785
            </summary>
4786
            <param name="value">The value to convert.</param>
4787
            <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
4788
        </member>
4789
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
4790
            <summary>
4791
            Converts the <see cref="T:System.Int16"/> to its JSON string representation.
4792
            </summary>
4793
            <param name="value">The value to convert.</param>
4794
            <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
4795
        </member>
4796
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
4797
            <summary>
4798
            Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
4799
            </summary>
4800
            <param name="value">The value to convert.</param>
4801
            <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
4802
        </member>
4803
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
4804
            <summary>
4805
            Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
4806
            </summary>
4807
            <param name="value">The value to convert.</param>
4808
            <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
4809
        </member>
4810
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
4811
            <summary>
4812
            Converts the <see cref="T:System.Int64"/>  to its JSON string representation.
4813
            </summary>
4814
            <param name="value">The value to convert.</param>
4815
            <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
4816
        </member>
4817
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
4818
            <summary>
4819
            Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
4820
            </summary>
4821
            <param name="value">The value to convert.</param>
4822
            <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
4823
        </member>
4824
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
4825
            <summary>
4826
            Converts the <see cref="T:System.Single"/> to its JSON string representation.
4827
            </summary>
4828
            <param name="value">The value to convert.</param>
4829
            <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
4830
        </member>
4831
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
4832
            <summary>
4833
            Converts the <see cref="T:System.Double"/> to its JSON string representation.
4834
            </summary>
4835
            <param name="value">The value to convert.</param>
4836
            <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
4837
        </member>
4838
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
4839
            <summary>
4840
            Converts the <see cref="T:System.Byte"/> to its JSON string representation.
4841
            </summary>
4842
            <param name="value">The value to convert.</param>
4843
            <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
4844
        </member>
4845
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
4846
            <summary>
4847
            Converts the <see cref="T:System.SByte"/> to its JSON string representation.
4848
            </summary>
4849
            <param name="value">The value to convert.</param>
4850
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
4851
        </member>
4852
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
4853
            <summary>
4854
            Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
4855
            </summary>
4856
            <param name="value">The value to convert.</param>
4857
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
4858
        </member>
4859
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
4860
            <summary>
4861
            Converts the <see cref="T:System.Guid"/> to its JSON string representation.
4862
            </summary>
4863
            <param name="value">The value to convert.</param>
4864
            <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
4865
        </member>
4866
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
4867
            <summary>
4868
            Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
4869
            </summary>
4870
            <param name="value">The value to convert.</param>
4871
            <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
4872
        </member>
4873
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
4874
            <summary>
4875
            Converts the <see cref="T:System.Uri"/> to its JSON string representation.
4876
            </summary>
4877
            <param name="value">The value to convert.</param>
4878
            <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
4879
        </member>
4880
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
4881
            <summary>
4882
            Converts the <see cref="T:System.String"/> to its JSON string representation.
4883
            </summary>
4884
            <param name="value">The value to convert.</param>
4885
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
4886
        </member>
4887
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
4888
            <summary>
4889
            Converts the <see cref="T:System.String"/> to its JSON string representation.
4890
            </summary>
4891
            <param name="value">The value to convert.</param>
4892
            <param name="delimiter">The string delimiter character.</param>
4893
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
4894
        </member>
4895
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
4896
            <summary>
4897
            Converts the <see cref="T:System.Object"/> to its JSON string representation.
4898
            </summary>
4899
            <param name="value">The value to convert.</param>
4900
            <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
4901
        </member>
4902
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
4903
            <summary>
4904
            Serializes the specified object to a JSON string.
4905
            </summary>
4906
            <param name="value">The object to serialize.</param>
4907
            <returns>A JSON string representation of the object.</returns>
4908
        </member>
4909
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
4910
            <summary>
4911
            Serializes the specified object to a JSON string using formatting.
4912
            </summary>
4913
            <param name="value">The object to serialize.</param>
4914
            <param name="formatting">Indicates how the output is formatted.</param>
4915
            <returns>
4916
            A JSON string representation of the object.
4917
            </returns>
4918
        </member>
4919
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
4920
            <summary>
4921
            Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4922
            </summary>
4923
            <param name="value">The object to serialize.</param>
4924
            <param name="converters">A collection converters used while serializing.</param>
4925
            <returns>A JSON string representation of the object.</returns>
4926
        </member>
4927
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
4928
            <summary>
4929
            Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4930
            </summary>
4931
            <param name="value">The object to serialize.</param>
4932
            <param name="formatting">Indicates how the output is formatted.</param>
4933
            <param name="converters">A collection converters used while serializing.</param>
4934
            <returns>A JSON string representation of the object.</returns>
4935
        </member>
4936
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
4937
            <summary>
4938
            Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4939
            </summary>
4940
            <param name="value">The object to serialize.</param>
4941
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4942
            If this is null, default serialization settings will be used.</param>
4943
            <returns>
4944
            A JSON string representation of the object.
4945
            </returns>
4946
        </member>
4947
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
4948
            <summary>
4949
            Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4950
            </summary>
4951
            <param name="value">The object to serialize.</param>
4952
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4953
            If this is null, default serialization settings will be used.</param>
4954
            <param name="type">
4955
            The type of the value being serialized.
4956
            This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
4957
            Specifing the type is optional.
4958
            </param>
4959
            <returns>
4960
            A JSON string representation of the object.
4961
            </returns>
4962
        </member>
4963
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
4964
            <summary>
4965
            Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4966
            </summary>
4967
            <param name="value">The object to serialize.</param>
4968
            <param name="formatting">Indicates how the output is formatted.</param>
4969
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4970
            If this is null, default serialization settings will be used.</param>
4971
            <returns>
4972
            A JSON string representation of the object.
4973
            </returns>
4974
        </member>
4975
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
4976
            <summary>
4977
            Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4978
            </summary>
4979
            <param name="value">The object to serialize.</param>
4980
            <param name="formatting">Indicates how the output is formatted.</param>
4981
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4982
            If this is null, default serialization settings will be used.</param>
4983
            <param name="type">
4984
            The type of the value being serialized.
4985
            This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
4986
            Specifing the type is optional.
4987
            </param>
4988
            <returns>
4989
            A JSON string representation of the object.
4990
            </returns>
4991
        </member>
4992
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object)">
4993
            <summary>
4994
            Asynchronously serializes the specified object to a JSON string.
4995
            Serialization will happen on a new thread.
4996
            </summary>
4997
            <param name="value">The object to serialize.</param>
4998
            <returns>
4999
            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
5000
            </returns>
5001
        </member>
5002
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting)">
5003
            <summary>
5004
            Asynchronously serializes the specified object to a JSON string using formatting.
5005
            Serialization will happen on a new thread.
5006
            </summary>
5007
            <param name="value">The object to serialize.</param>
5008
            <param name="formatting">Indicates how the output is formatted.</param>
5009
            <returns>
5010
            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
5011
            </returns>
5012
        </member>
5013
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
5014
            <summary>
5015
            Asynchronously serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5016
            Serialization will happen on a new thread.
5017
            </summary>
5018
            <param name="value">The object to serialize.</param>
5019
            <param name="formatting">Indicates how the output is formatted.</param>
5020
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
5021
            If this is null, default serialization settings will be used.</param>
5022
            <returns>
5023
            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
5024
            </returns>
5025
        </member>
5026
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
5027
            <summary>
5028
            Deserializes the JSON to a .NET object.
5029
            </summary>
5030
            <param name="value">The JSON to deserialize.</param>
5031
            <returns>The deserialized object from the JSON string.</returns>
5032
        </member>
5033
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
5034
            <summary>
5035
            Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5036
            </summary>
5037
            <param name="value">The JSON to deserialize.</param>
5038
            <param name="settings">
5039
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5040
            If this is null, default serialization settings will be used.
5041
            </param>
5042
            <returns>The deserialized object from the JSON string.</returns>
5043
        </member>
5044
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
5045
            <summary>
5046
            Deserializes the JSON to the specified .NET type.
5047
            </summary>
5048
            <param name="value">The JSON to deserialize.</param>
5049
            <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
5050
            <returns>The deserialized object from the JSON string.</returns>
5051
        </member>
5052
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
5053
            <summary>
5054
            Deserializes the JSON to the specified .NET type.
5055
            </summary>
5056
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5057
            <param name="value">The JSON to deserialize.</param>
5058
            <returns>The deserialized object from the JSON string.</returns>
5059
        </member>
5060
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
5061
            <summary>
5062
            Deserializes the JSON to the given anonymous type.
5063
            </summary>
5064
            <typeparam name="T">
5065
            The anonymous type to deserialize to. This can't be specified
5066
            traditionally and must be infered from the anonymous type passed
5067
            as a parameter.
5068
            </typeparam>
5069
            <param name="value">The JSON to deserialize.</param>
5070
            <param name="anonymousTypeObject">The anonymous type object.</param>
5071
            <returns>The deserialized anonymous type from the JSON string.</returns>
5072
        </member>
5073
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
5074
            <summary>
5075
            Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5076
            </summary>
5077
            <typeparam name="T">
5078
            The anonymous type to deserialize to. This can't be specified
5079
            traditionally and must be infered from the anonymous type passed
5080
            as a parameter.
5081
            </typeparam>
5082
            <param name="value">The JSON to deserialize.</param>
5083
            <param name="anonymousTypeObject">The anonymous type object.</param>
5084
            <param name="settings">
5085
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5086
            If this is null, default serialization settings will be used.
5087
            </param>
5088
            <returns>The deserialized anonymous type from the JSON string.</returns>
5089
        </member>
5090
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
5091
            <summary>
5092
            Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5093
            </summary>
5094
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5095
            <param name="value">The JSON to deserialize.</param>
5096
            <param name="converters">Converters to use while deserializing.</param>
5097
            <returns>The deserialized object from the JSON string.</returns>
5098
        </member>
5099
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
5100
            <summary>
5101
            Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5102
            </summary>
5103
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5104
            <param name="value">The object to deserialize.</param>
5105
            <param name="settings">
5106
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5107
            If this is null, default serialization settings will be used.
5108
            </param>
5109
            <returns>The deserialized object from the JSON string.</returns>
5110
        </member>
5111
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
5112
            <summary>
5113
            Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5114
            </summary>
5115
            <param name="value">The JSON to deserialize.</param>
5116
            <param name="type">The type of the object to deserialize.</param>
5117
            <param name="converters">Converters to use while deserializing.</param>
5118
            <returns>The deserialized object from the JSON string.</returns>
5119
        </member>
5120
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
5121
            <summary>
5122
            Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5123
            </summary>
5124
            <param name="value">The JSON to deserialize.</param>
5125
            <param name="type">The type of the object to deserialize to.</param>
5126
            <param name="settings">
5127
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5128
            If this is null, default serialization settings will be used.
5129
            </param>
5130
            <returns>The deserialized object from the JSON string.</returns>
5131
        </member>
5132
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String)">
5133
            <summary>
5134
            Asynchronously deserializes the JSON to the specified .NET type.
5135
            Deserialization will happen on a new thread.
5136
            </summary>
5137
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5138
            <param name="value">The JSON to deserialize.</param>
5139
            <returns>
5140
            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
5141
            </returns>
5142
        </member>
5143
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
5144
            <summary>
5145
            Asynchronously deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5146
            Deserialization will happen on a new thread.
5147
            </summary>
5148
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5149
            <param name="value">The JSON to deserialize.</param>
5150
            <param name="settings">
5151
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5152
            If this is null, default serialization settings will be used.
5153
            </param>
5154
            <returns>
5155
            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
5156
            </returns>
5157
        </member>
5158
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String)">
5159
            <summary>
5160
            Asynchronously deserializes the JSON to the specified .NET type.
5161
            Deserialization will happen on a new thread.
5162
            </summary>
5163
            <param name="value">The JSON to deserialize.</param>
5164
            <returns>
5165
            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
5166
            </returns>
5167
        </member>
5168
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
5169
            <summary>
5170
            Asynchronously deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5171
            Deserialization will happen on a new thread.
5172
            </summary>
5173
            <param name="value">The JSON to deserialize.</param>
5174
            <param name="type">The type of the object to deserialize to.</param>
5175
            <param name="settings">
5176
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5177
            If this is null, default serialization settings will be used.
5178
            </param>
5179
            <returns>
5180
            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
5181
            </returns>
5182
        </member>
5183
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
5184
            <summary>
5185
            Populates the object with values from the JSON string.
5186
            </summary>
5187
            <param name="value">The JSON to populate values from.</param>
5188
            <param name="target">The target object to populate values onto.</param>
5189
        </member>
5190
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
5191
            <summary>
5192
            Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5193
            </summary>
5194
            <param name="value">The JSON to populate values from.</param>
5195
            <param name="target">The target object to populate values onto.</param>
5196
            <param name="settings">
5197
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5198
            If this is null, default serialization settings will be used.
5199
            </param>
5200
        </member>
5201
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObjectAsync(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
5202
            <summary>
5203
            Asynchronously populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5204
            </summary>
5205
            <param name="value">The JSON to populate values from.</param>
5206
            <param name="target">The target object to populate values onto.</param>
5207
            <param name="settings">
5208
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5209
            If this is null, default serialization settings will be used.
5210
            </param>
5211
            <returns>
5212
            A task that represents the asynchronous populate operation.
5213
            </returns>
5214
        </member>
5215
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
5216
            <summary>
5217
            Serializes the XML node to a JSON string.
5218
            </summary>
5219
            <param name="node">The node to serialize.</param>
5220
            <returns>A JSON string of the XmlNode.</returns>
5221
        </member>
5222
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
5223
            <summary>
5224
            Serializes the XML node to a JSON string using formatting.
5225
            </summary>
5226
            <param name="node">The node to serialize.</param>
5227
            <param name="formatting">Indicates how the output is formatted.</param>
5228
            <returns>A JSON string of the XmlNode.</returns>
5229
        </member>
5230
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
5231
            <summary>
5232
            Serializes the XML node to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
5233
            </summary>
5234
            <param name="node">The node to serialize.</param>
5235
            <param name="formatting">Indicates how the output is formatted.</param>
5236
            <param name="omitRootObject">Omits writing the root object.</param>
5237
            <returns>A JSON string of the XmlNode.</returns>
5238
        </member>
5239
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
5240
            <summary>
5241
            Deserializes the XmlNode from a JSON string.
5242
            </summary>
5243
            <param name="value">The JSON string.</param>
5244
            <returns>The deserialized XmlNode</returns>
5245
        </member>
5246
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
5247
            <summary>
5248
            Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
5249
            </summary>
5250
            <param name="value">The JSON string.</param>
5251
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5252
            <returns>The deserialized XmlNode</returns>
5253
        </member>
5254
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
5255
            <summary>
5256
            Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
5257
            and writes a .NET array attribute for collections.
5258
            </summary>
5259
            <param name="value">The JSON string.</param>
5260
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5261
            <param name="writeArrayAttribute">
5262
            A flag to indicate whether to write the Json.NET array attribute.
5263
            This attribute helps preserve arrays when converting the written XML back to JSON.
5264
            </param>
5265
            <returns>The deserialized XmlNode</returns>
5266
        </member>
5267
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
5268
            <summary>
5269
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
5270
            </summary>
5271
            <param name="node">The node to convert to JSON.</param>
5272
            <returns>A JSON string of the XNode.</returns>
5273
        </member>
5274
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
5275
            <summary>
5276
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting.
5277
            </summary>
5278
            <param name="node">The node to convert to JSON.</param>
5279
            <param name="formatting">Indicates how the output is formatted.</param>
5280
            <returns>A JSON string of the XNode.</returns>
5281
        </member>
5282
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
5283
            <summary>
5284
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
5285
            </summary>
5286
            <param name="node">The node to serialize.</param>
5287
            <param name="formatting">Indicates how the output is formatted.</param>
5288
            <param name="omitRootObject">Omits writing the root object.</param>
5289
            <returns>A JSON string of the XNode.</returns>
5290
        </member>
5291
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
5292
            <summary>
5293
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.
5294
            </summary>
5295
            <param name="value">The JSON string.</param>
5296
            <returns>The deserialized XNode</returns>
5297
        </member>
5298
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
5299
            <summary>
5300
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
5301
            </summary>
5302
            <param name="value">The JSON string.</param>
5303
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5304
            <returns>The deserialized XNode</returns>
5305
        </member>
5306
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
5307
            <summary>
5308
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
5309
            and writes a .NET array attribute for collections.
5310
            </summary>
5311
            <param name="value">The JSON string.</param>
5312
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5313
            <param name="writeArrayAttribute">
5314
            A flag to indicate whether to write the Json.NET array attribute.
5315
            This attribute helps preserve arrays when converting the written XML back to JSON.
5316
            </param>
5317
            <returns>The deserialized XNode</returns>
5318
        </member>
5319
        <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
5320
            <summary>
5321
            Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5322
            Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
5323
            and <see cref="M:Newtonsoft.Json.Linq.JToken.ToObject``1"/> and <see cref="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)"/> on <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5324
            To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
5325
            <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
5326
            </summary>
5327
        </member>
5328
        <member name="T:Newtonsoft.Json.JsonSerializationException">
5329
            <summary>
5330
            The exception thrown when an error occurs during Json serialization or deserialization.
5331
            </summary>
5332
        </member>
5333
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
5334
            <summary>
5335
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
5336
            </summary>
5337
        </member>
5338
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
5339
            <summary>
5340
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
5341
            with a specified error message.
5342
            </summary>
5343
            <param name="message">The error message that explains the reason for the exception.</param>
5344
        </member>
5345
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
5346
            <summary>
5347
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
5348
            with a specified error message and a reference to the inner exception that is the cause of this exception.
5349
            </summary>
5350
            <param name="message">The error message that explains the reason for the exception.</param>
5351
            <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>
5352
        </member>
5353
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5354
            <summary>
5355
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
5356
            </summary>
5357
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
5358
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
5359
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
5360
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
5361
        </member>
5362
        <member name="T:Newtonsoft.Json.JsonSerializer">
5363
            <summary>
5364
            Serializes and deserializes objects into and from the JSON format.
5365
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
5366
            </summary>
5367
        </member>
5368
        <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
5369
            <summary>
5370
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
5371
            </summary>
5372
        </member>
5373
        <member name="M:Newtonsoft.Json.JsonSerializer.Create">
5374
            <summary>
5375
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5376
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5377
            </summary>
5378
            <returns>
5379
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5380
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5381
            </returns>
5382
        </member>
5383
        <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
5384
            <summary>
5385
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5386
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5387
            </summary>
5388
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
5389
            <returns>
5390
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5391
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5392
            </returns>
5393
        </member>
5394
        <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
5395
            <summary>
5396
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5397
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5398
            </summary>
5399
            <returns>
5400
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5401
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5402
            </returns>
5403
        </member>
5404
        <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
5405
            <summary>
5406
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5407
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5408
            </summary>
5409
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
5410
            <returns>
5411
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5412
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5413
            </returns>
5414
        </member>
5415
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
5416
            <summary>
5417
            Populates the JSON values onto the target object.
5418
            </summary>
5419
            <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
5420
            <param name="target">The target object to populate values onto.</param>
5421
        </member>
5422
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
5423
            <summary>
5424
            Populates the JSON values onto the target object.
5425
            </summary>
5426
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
5427
            <param name="target">The target object to populate values onto.</param>
5428
        </member>
5429
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
5430
            <summary>
5431
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
5432
            </summary>
5433
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
5434
            <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
5435
        </member>
5436
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
5437
            <summary>
5438
            Deserializes the Json structure contained by the specified <see cref="T:System.IO.StringReader"/>
5439
            into an instance of the specified type.
5440
            </summary>
5441
            <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
5442
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
5443
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
5444
        </member>
5445
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
5446
            <summary>
5447
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
5448
            into an instance of the specified type.
5449
            </summary>
5450
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
5451
            <typeparam name="T">The type of the object to deserialize.</typeparam>
5452
            <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
5453
        </member>
5454
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
5455
            <summary>
5456
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
5457
            into an instance of the specified type.
5458
            </summary>
5459
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
5460
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
5461
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
5462
        </member>
5463
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
5464
            <summary>
5465
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5466
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
5467
            </summary>
5468
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
5469
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5470
        </member>
5471
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
5472
            <summary>
5473
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5474
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
5475
            </summary>
5476
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
5477
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5478
            <param name="objectType">
5479
            The type of the value being serialized.
5480
            This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
5481
            Specifing the type is optional.
5482
            </param>
5483
        </member>
5484
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
5485
            <summary>
5486
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5487
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
5488
            </summary>
5489
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
5490
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5491
            <param name="objectType">
5492
            The type of the value being serialized.
5493
            This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
5494
            Specifing the type is optional.
5495
            </param>
5496
        </member>
5497
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
5498
            <summary>
5499
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5500
            to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>. 
5501
            </summary>
5502
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
5503
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5504
        </member>
5505
        <member name="E:Newtonsoft.Json.JsonSerializer.Error">
5506
            <summary>
5507
            Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
5508
            </summary>
5509
        </member>
5510
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
5511
            <summary>
5512
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
5513
            </summary>
5514
        </member>
5515
        <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
5516
            <summary>
5517
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
5518
            </summary>
5519
        </member>
5520
        <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
5521
            <summary>
5522
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
5523
            </summary>
5524
            <value>The trace writer.</value>
5525
        </member>
5526
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
5527
            <summary>
5528
            Gets or sets how type name writing and reading is handled by the serializer.
5529
            </summary>
5530
        </member>
5531
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
5532
            <summary>
5533
            Gets or sets how a type name assembly is written and resolved by the serializer.
5534
            </summary>
5535
            <value>The type name assembly format.</value>
5536
        </member>
5537
        <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
5538
            <summary>
5539
            Gets or sets how object references are preserved by the serializer.
5540
            </summary>
5541
        </member>
5542
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
5543
            <summary>
5544
            Get or set how reference loops (e.g. a class referencing itself) is handled.
5545
            </summary>
5546
        </member>
5547
        <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
5548
            <summary>
5549
            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
5550
            </summary>
5551
        </member>
5552
        <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
5553
            <summary>
5554
            Get or set how null values are handled during serialization and deserialization.
5555
            </summary>
5556
        </member>
5557
        <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
5558
            <summary>
5559
            Get or set how null default are handled during serialization and deserialization.
5560
            </summary>
5561
        </member>
5562
        <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
5563
            <summary>
5564
            Gets or sets how objects are created during deserialization.
5565
            </summary>
5566
            <value>The object creation handling.</value>
5567
        </member>
5568
        <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
5569
            <summary>
5570
            Gets or sets how constructors are used during deserialization.
5571
            </summary>
5572
            <value>The constructor handling.</value>
5573
        </member>
5574
        <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">
5575
            <summary>
5576
            Gets or sets how metadata properties are used during deserialization.
5577
            </summary>
5578
            <value>The metadata properties handling.</value>
5579
        </member>
5580
        <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
5581
            <summary>
5582
            Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
5583
            </summary>
5584
            <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
5585
        </member>
5586
        <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
5587
            <summary>
5588
            Gets or sets the contract resolver used by the serializer when
5589
            serializing .NET objects to JSON and vice versa.
5590
            </summary>
5591
        </member>
5592
        <member name="P:Newtonsoft.Json.JsonSerializer.Context">
5593
            <summary>
5594
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
5595
            </summary>
5596
            <value>The context.</value>
5597
        </member>
5598
        <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
5599
            <summary>
5600
            Indicates how JSON text output is formatted.
5601
            </summary>
5602
        </member>
5603
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
5604
            <summary>
5605
            Get or set how dates are written to JSON text.
5606
            </summary>
5607
        </member>
5608
        <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
5609
            <summary>
5610
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
5611
            </summary>
5612
        </member>
5613
        <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
5614
            <summary>
5615
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
5616
            </summary>
5617
        </member>
5618
        <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
5619
            <summary>
5620
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
5621
            </summary>
5622
        </member>
5623
        <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
5624
            <summary>
5625
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
5626
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
5627
            are written as JSON text.
5628
            </summary>
5629
        </member>
5630
        <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
5631
            <summary>
5632
            Get or set how strings are escaped when writing JSON text.
5633
            </summary>
5634
        </member>
5635
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
5636
            <summary>
5637
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
5638
            </summary>
5639
        </member>
5640
        <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
5641
            <summary>
5642
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
5643
            </summary>
5644
        </member>
5645
        <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
5646
            <summary>
5647
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
5648
            </summary>
5649
        </member>
5650
        <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
5651
            <summary>
5652
            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
5653
            </summary>
5654
            <value>
5655
                    <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
5656
            </value>
5657
        </member>
5658
        <member name="T:Newtonsoft.Json.Linq.Extensions">
5659
            <summary>
5660
            Contains the LINQ to JSON extension methods.
5661
            </summary>
5662
        </member>
5663
        <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
5664
            <summary>
5665
            Returns a collection of tokens that contains the ancestors of every token in the source collection.
5666
            </summary>
5667
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
5668
            <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>
5669
            <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>
5670
        </member>
5671
        <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
5672
            <summary>
5673
            Returns a collection of tokens that contains the descendants of every token in the source collection.
5674
            </summary>
5675
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
5676
            <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>
5677
            <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>
5678
        </member>
5679
        <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
5680
            <summary>
5681
            Returns a collection of child properties of every object in the source collection.
5682
            </summary>
5683
            <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>
5684
            <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>
5685
        </member>
5686
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
5687
            <summary>
5688
            Returns a collection of child values of every object in the source collection with the given key.
5689
            </summary>
5690
            <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>
5691
            <param name="key">The token key.</param>
5692
            <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>
5693
        </member>
5694
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5695
            <summary>
5696
            Returns a collection of child values of every object in the source collection.
5697
            </summary>
5698
            <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>
5699
            <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>
5700
        </member>
5701
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
5702
            <summary>
5703
            Returns a collection of converted child values of every object in the source collection with the given key.
5704
            </summary>
5705
            <typeparam name="U">The type to convert the values to.</typeparam>
5706
            <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>
5707
            <param name="key">The token key.</param>
5708
            <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>
5709
        </member>
5710
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5711
            <summary>
5712
            Returns a collection of converted child values of every object in the source collection.
5713
            </summary>
5714
            <typeparam name="U">The type to convert the values to.</typeparam>
5715
            <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>
5716
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection.</returns>
5717
        </member>
5718
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5719
            <summary>
5720
            Converts the value.
5721
            </summary>
5722
            <typeparam name="U">The type to convert the value to.</typeparam>
5723
            <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>
5724
            <returns>A converted value.</returns>
5725
        </member>
5726
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
5727
            <summary>
5728
            Converts the value.
5729
            </summary>
5730
            <typeparam name="T">The source collection type.</typeparam>
5731
            <typeparam name="U">The type to convert the value to.</typeparam>
5732
            <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>
5733
            <returns>A converted value.</returns>
5734
        </member>
5735
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
5736
            <summary>
5737
            Returns a collection of child tokens of every array in the source collection.
5738
            </summary>
5739
            <typeparam name="T">The source collection type.</typeparam>
5740
            <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>
5741
            <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>
5742
        </member>
5743
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
5744
            <summary>
5745
            Returns a collection of converted child tokens of every array in the source collection.
5746
            </summary>
5747
            <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>
5748
            <typeparam name="U">The type to convert the values to.</typeparam>
5749
            <typeparam name="T">The source collection type.</typeparam>
5750
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection.</returns>
5751
        </member>
5752
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5753
            <summary>
5754
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
5755
            </summary>
5756
            <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>
5757
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
5758
        </member>
5759
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
5760
            <summary>
5761
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
5762
            </summary>
5763
            <typeparam name="T">The source collection type.</typeparam>
5764
            <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>
5765
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
5766
        </member>
5767
        <member name="T:Newtonsoft.Json.Linq.JConstructor">
5768
            <summary>
5769
            Represents a JSON constructor.
5770
            </summary>
5771
        </member>
5772
        <member name="T:Newtonsoft.Json.Linq.JContainer">
5773
            <summary>
5774
            Represents a token that can contain other tokens.
5775
            </summary>
5776
        </member>
5777
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
5778
            <summary>
5779
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
5780
            </summary>
5781
            <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
5782
        </member>
5783
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
5784
            <summary>
5785
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
5786
            </summary>
5787
            <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
5788
        </member>
5789
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
5790
            <summary>
5791
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged"/> event.
5792
            </summary>
5793
            <param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> instance containing the event data.</param>
5794
        </member>
5795
        <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
5796
            <summary>
5797
            Returns a collection of the child tokens of this token, in document order.
5798
            </summary>
5799
            <returns>
5800
            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.
5801
            </returns>
5802
        </member>
5803
        <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
5804
            <summary>
5805
            Returns a collection of the child values of this token, in document order.
5806
            </summary>
5807
            <typeparam name="T">The type to convert the values to.</typeparam>
5808
            <returns>
5809
            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.
5810
            </returns>
5811
        </member>
5812
        <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
5813
            <summary>
5814
            Returns a collection of the descendant tokens for this token in document order.
5815
            </summary>
5816
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
5817
        </member>
5818
        <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
5819
            <summary>
5820
            Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5821
            </summary>
5822
            <param name="content">The content to be added.</param>
5823
        </member>
5824
        <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
5825
            <summary>
5826
            Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5827
            </summary>
5828
            <param name="content">The content to be added.</param>
5829
        </member>
5830
        <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
5831
            <summary>
5832
            Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5833
            </summary>
5834
            <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
5835
        </member>
5836
        <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
5837
            <summary>
5838
            Replaces the children nodes of this token with the specified content.
5839
            </summary>
5840
            <param name="content">The content.</param>
5841
        </member>
5842
        <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
5843
            <summary>
5844
            Removes the child nodes from this token.
5845
            </summary>
5846
        </member>
5847
        <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">
5848
            <summary>
5849
            Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5850
            </summary>
5851
            <param name="content">The content to be merged.</param>
5852
        </member>
5853
        <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">
5854
            <summary>
5855
            Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.
5856
            </summary>
5857
            <param name="content">The content to be merged.</param>
5858
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>
5859
        </member>
5860
        <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
5861
            <summary>
5862
            Occurs when the list changes or an item in the list changes.
5863
            </summary>
5864
        </member>
5865
        <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
5866
            <summary>
5867
            Occurs before an item is added to the collection.
5868
            </summary>
5869
        </member>
5870
        <member name="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged">
5871
            <summary>
5872
            Occurs when the items list of the collection has changed, or the collection is reset.
5873
            </summary>
5874
        </member>
5875
        <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
5876
            <summary>
5877
            Gets the container's children tokens.
5878
            </summary>
5879
            <value>The container's children tokens.</value>
5880
        </member>
5881
        <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
5882
            <summary>
5883
            Gets a value indicating whether this token has child tokens.
5884
            </summary>
5885
            <value>
5886
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
5887
            </value>
5888
        </member>
5889
        <member name="P:Newtonsoft.Json.Linq.JContainer.First">
5890
            <summary>
5891
            Get the first child token of this token.
5892
            </summary>
5893
            <value>
5894
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5895
            </value>
5896
        </member>
5897
        <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
5898
            <summary>
5899
            Get the last child token of this token.
5900
            </summary>
5901
            <value>
5902
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5903
            </value>
5904
        </member>
5905
        <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
5906
            <summary>
5907
            Gets the count of child JSON tokens.
5908
            </summary>
5909
            <value>The count of child JSON tokens</value>
5910
        </member>
5911
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
5912
            <summary>
5913
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
5914
            </summary>
5915
        </member>
5916
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
5917
            <summary>
5918
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
5919
            </summary>
5920
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
5921
        </member>
5922
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
5923
            <summary>
5924
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
5925
            </summary>
5926
            <param name="name">The constructor name.</param>
5927
            <param name="content">The contents of the constructor.</param>
5928
        </member>
5929
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
5930
            <summary>
5931
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
5932
            </summary>
5933
            <param name="name">The constructor name.</param>
5934
            <param name="content">The contents of the constructor.</param>
5935
        </member>
5936
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
5937
            <summary>
5938
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
5939
            </summary>
5940
            <param name="name">The constructor name.</param>
5941
        </member>
5942
        <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5943
            <summary>
5944
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5945
            </summary>
5946
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5947
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5948
        </member>
5949
        <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
5950
            <summary>
5951
            Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5952
            </summary>
5953
            <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>
5954
            <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>
5955
        </member>
5956
        <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
5957
            <summary>
5958
            Gets the container's children tokens.
5959
            </summary>
5960
            <value>The container's children tokens.</value>
5961
        </member>
5962
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
5963
            <summary>
5964
            Gets or sets the name of this constructor.
5965
            </summary>
5966
            <value>The constructor name.</value>
5967
        </member>
5968
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
5969
            <summary>
5970
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5971
            </summary>
5972
            <value>The type.</value>
5973
        </member>
5974
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
5975
            <summary>
5976
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5977
            </summary>
5978
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
5979
        </member>
5980
        <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
5981
            <summary>
5982
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
5983
            </summary>
5984
            <typeparam name="T">The type of token</typeparam>
5985
        </member>
5986
        <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
5987
            <summary>
5988
            An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
5989
            </summary>
5990
        </member>
5991
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
5992
            <summary>
5993
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
5994
            </summary>
5995
            <param name="enumerable">The enumerable.</param>
5996
        </member>
5997
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
5998
            <summary>
5999
            Returns an enumerator that iterates through the collection.
6000
            </summary>
6001
            <returns>
6002
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
6003
            </returns>
6004
        </member>
6005
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator">
6006
            <summary>
6007
            Returns an enumerator that iterates through a collection.
6008
            </summary>
6009
            <returns>
6010
            An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
6011
            </returns>
6012
        </member>
6013
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
6014
            <summary>
6015
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
6016
            </summary>
6017
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
6018
            <returns>
6019
                    <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
6020
            </returns>
6021
        </member>
6022
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
6023
            <summary>
6024
            Returns a hash code for this instance.
6025
            </summary>
6026
            <returns>
6027
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
6028
            </returns>
6029
        </member>
6030
        <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
6031
            <summary>
6032
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
6033
            </summary>
6034
            <value></value>
6035
        </member>
6036
        <member name="T:Newtonsoft.Json.Linq.JObject">
6037
            <summary>
6038
            Represents a JSON object.
6039
            </summary>
6040
            <example>
6041
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
6042
            </example>
6043
        </member>
6044
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
6045
            <summary>
6046
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
6047
            </summary>
6048
        </member>
6049
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
6050
            <summary>
6051
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
6052
            </summary>
6053
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
6054
        </member>
6055
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
6056
            <summary>
6057
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
6058
            </summary>
6059
            <param name="content">The contents of the object.</param>
6060
        </member>
6061
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
6062
            <summary>
6063
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
6064
            </summary>
6065
            <param name="content">The contents of the object.</param>
6066
        </member>
6067
        <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
6068
            <summary>
6069
            Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.
6070
            </summary>
6071
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns>
6072
        </member>
6073
        <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
6074
            <summary>
6075
            Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
6076
            </summary>
6077
            <param name="name">The property name.</param>
6078
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns>
6079
        </member>
6080
        <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
6081
            <summary>
6082
            Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.
6083
            </summary>
6084
            <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns>
6085
        </member>
6086
        <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
6087
            <summary>
6088
            Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6089
            </summary>
6090
            <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>
6091
            <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>
6092
        </member>
6093
        <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
6094
            <summary>
6095
            Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
6096
            </summary>
6097
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6098
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
6099
            <example>
6100
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text"/>
6101
            </example>
6102
        </member>
6103
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
6104
            <summary>
6105
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
6106
            </summary>
6107
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6108
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
6109
        </member>
6110
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
6111
            <summary>
6112
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
6113
            </summary>
6114
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6115
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
6116
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
6117
        </member>
6118
        <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6119
            <summary>
6120
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6121
            </summary>
6122
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6123
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6124
        </member>
6125
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
6126
            <summary>
6127
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6128
            </summary>
6129
            <param name="propertyName">Name of the property.</param>
6130
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
6131
        </member>
6132
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
6133
            <summary>
6134
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6135
            The exact property name will be searched for first and if no matching property is found then
6136
            the <see cref="T:System.StringComparison"/> will be used to match a property.
6137
            </summary>
6138
            <param name="propertyName">Name of the property.</param>
6139
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
6140
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
6141
        </member>
6142
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
6143
            <summary>
6144
            Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6145
            The exact property name will be searched for first and if no matching property is found then
6146
            the <see cref="T:System.StringComparison"/> will be used to match a property.
6147
            </summary>
6148
            <param name="propertyName">Name of the property.</param>
6149
            <param name="value">The value.</param>
6150
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
6151
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
6152
        </member>
6153
        <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
6154
            <summary>
6155
            Adds the specified property name.
6156
            </summary>
6157
            <param name="propertyName">Name of the property.</param>
6158
            <param name="value">The value.</param>
6159
        </member>
6160
        <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
6161
            <summary>
6162
            Removes the property with the specified name.
6163
            </summary>
6164
            <param name="propertyName">Name of the property.</param>
6165
            <returns>true if item was successfully removed; otherwise, false.</returns>
6166
        </member>
6167
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
6168
            <summary>
6169
            Tries the get value.
6170
            </summary>
6171
            <param name="propertyName">Name of the property.</param>
6172
            <param name="value">The value.</param>
6173
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
6174
        </member>
6175
        <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
6176
            <summary>
6177
            Returns an enumerator that iterates through the collection.
6178
            </summary>
6179
            <returns>
6180
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
6181
            </returns>
6182
        </member>
6183
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
6184
            <summary>
6185
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
6186
            </summary>
6187
            <param name="propertyName">Name of the property.</param>
6188
        </member>
6189
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">
6190
            <summary>
6191
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments.
6192
            </summary>
6193
            <param name="propertyName">Name of the property.</param>
6194
        </member>
6195
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
6196
            <summary>
6197
            Returns the properties for this instance of a component.
6198
            </summary>
6199
            <returns>
6200
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance.
6201
            </returns>
6202
        </member>
6203
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
6204
            <summary>
6205
            Returns the properties for this instance of a component using the attribute array as a filter.
6206
            </summary>
6207
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
6208
            <returns>
6209
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.
6210
            </returns>
6211
        </member>
6212
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
6213
            <summary>
6214
            Returns a collection of custom attributes for this instance of a component.
6215
            </summary>
6216
            <returns>
6217
            An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object.
6218
            </returns>
6219
        </member>
6220
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
6221
            <summary>
6222
            Returns the class name of this instance of a component.
6223
            </summary>
6224
            <returns>
6225
            The class name of the object, or null if the class does not have a name.
6226
            </returns>
6227
        </member>
6228
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
6229
            <summary>
6230
            Returns the name of this instance of a component.
6231
            </summary>
6232
            <returns>
6233
            The name of the object, or null if the object does not have a name.
6234
            </returns>
6235
        </member>
6236
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
6237
            <summary>
6238
            Returns a type converter for this instance of a component.
6239
            </summary>
6240
            <returns>
6241
            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.
6242
            </returns>
6243
        </member>
6244
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
6245
            <summary>
6246
            Returns the default event for this instance of a component.
6247
            </summary>
6248
            <returns>
6249
            An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events.
6250
            </returns>
6251
        </member>
6252
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
6253
            <summary>
6254
            Returns the default property for this instance of a component.
6255
            </summary>
6256
            <returns>
6257
            A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties.
6258
            </returns>
6259
        </member>
6260
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
6261
            <summary>
6262
            Returns an editor of the specified type for this instance of a component.
6263
            </summary>
6264
            <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param>
6265
            <returns>
6266
            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.
6267
            </returns>
6268
        </member>
6269
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
6270
            <summary>
6271
            Returns the events for this instance of a component using the specified attribute array as a filter.
6272
            </summary>
6273
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
6274
            <returns>
6275
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance.
6276
            </returns>
6277
        </member>
6278
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
6279
            <summary>
6280
            Returns the events for this instance of a component.
6281
            </summary>
6282
            <returns>
6283
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance.
6284
            </returns>
6285
        </member>
6286
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
6287
            <summary>
6288
            Returns an object that contains the property described by the specified property descriptor.
6289
            </summary>
6290
            <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param>
6291
            <returns>
6292
            An <see cref="T:System.Object"/> that represents the owner of the specified property.
6293
            </returns>
6294
        </member>
6295
        <member name="M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)">
6296
            <summary>
6297
            Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
6298
            </summary>
6299
            <param name="parameter">The expression tree representation of the runtime value.</param>
6300
            <returns>
6301
            The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
6302
            </returns>
6303
        </member>
6304
        <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
6305
            <summary>
6306
            Gets the container's children tokens.
6307
            </summary>
6308
            <value>The container's children tokens.</value>
6309
        </member>
6310
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
6311
            <summary>
6312
            Occurs when a property value changes.
6313
            </summary>
6314
        </member>
6315
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">
6316
            <summary>
6317
            Occurs when a property value is changing.
6318
            </summary>
6319
        </member>
6320
        <member name="P:Newtonsoft.Json.Linq.JObject.Type">
6321
            <summary>
6322
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6323
            </summary>
6324
            <value>The type.</value>
6325
        </member>
6326
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
6327
            <summary>
6328
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6329
            </summary>
6330
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6331
        </member>
6332
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
6333
            <summary>
6334
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6335
            </summary>
6336
            <value></value>
6337
        </member>
6338
        <member name="T:Newtonsoft.Json.Linq.JArray">
6339
            <summary>
6340
            Represents a JSON array.
6341
            </summary>
6342
            <example>
6343
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
6344
            </example>
6345
        </member>
6346
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
6347
            <summary>
6348
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
6349
            </summary>
6350
        </member>
6351
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
6352
            <summary>
6353
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
6354
            </summary>
6355
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
6356
        </member>
6357
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
6358
            <summary>
6359
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
6360
            </summary>
6361
            <param name="content">The contents of the array.</param>
6362
        </member>
6363
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
6364
            <summary>
6365
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
6366
            </summary>
6367
            <param name="content">The contents of the array.</param>
6368
        </member>
6369
        <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
6370
            <summary>
6371
            Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6372
            </summary>
6373
            <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>
6374
            <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>
6375
        </member>
6376
        <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
6377
            <summary>
6378
            Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
6379
            </summary>
6380
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6381
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
6382
            <example>
6383
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text"/>
6384
            </example>
6385
        </member>
6386
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
6387
            <summary>
6388
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
6389
            </summary>
6390
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6391
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
6392
        </member>
6393
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
6394
            <summary>
6395
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
6396
            </summary>
6397
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6398
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
6399
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
6400
        </member>
6401
        <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6402
            <summary>
6403
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6404
            </summary>
6405
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6406
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6407
        </member>
6408
        <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
6409
            <summary>
6410
            Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
6411
            </summary>
6412
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
6413
            <returns>
6414
            The index of <paramref name="item"/> if found in the list; otherwise, -1.
6415
            </returns>
6416
        </member>
6417
        <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
6418
            <summary>
6419
            Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.
6420
            </summary>
6421
            <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
6422
            <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
6423
            <exception cref="T:System.ArgumentOutOfRangeException">
6424
                    <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
6425
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
6426
        </member>
6427
        <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
6428
            <summary>
6429
            Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
6430
            </summary>
6431
            <param name="index">The zero-based index of the item to remove.</param>
6432
            <exception cref="T:System.ArgumentOutOfRangeException">
6433
                    <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
6434
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
6435
        </member>
6436
        <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">
6437
            <summary>
6438
            Returns an enumerator that iterates through the collection.
6439
            </summary>
6440
            <returns>
6441
            A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.
6442
            </returns>
6443
        </member>
6444
        <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
6445
            <summary>
6446
            Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
6447
            </summary>
6448
            <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
6449
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
6450
        </member>
6451
        <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
6452
            <summary>
6453
            Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
6454
            </summary>
6455
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
6456
        </member>
6457
        <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
6458
            <summary>
6459
            Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
6460
            </summary>
6461
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
6462
            <returns>
6463
            true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
6464
            </returns>
6465
        </member>
6466
        <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
6467
            <summary>
6468
            Copies to.
6469
            </summary>
6470
            <param name="array">The array.</param>
6471
            <param name="arrayIndex">Index of the array.</param>
6472
        </member>
6473
        <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
6474
            <summary>
6475
            Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
6476
            </summary>
6477
            <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
6478
            <returns>
6479
            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"/>.
6480
            </returns>
6481
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
6482
        </member>
6483
        <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
6484
            <summary>
6485
            Gets the container's children tokens.
6486
            </summary>
6487
            <value>The container's children tokens.</value>
6488
        </member>
6489
        <member name="P:Newtonsoft.Json.Linq.JArray.Type">
6490
            <summary>
6491
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6492
            </summary>
6493
            <value>The type.</value>
6494
        </member>
6495
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
6496
            <summary>
6497
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6498
            </summary>
6499
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6500
        </member>
6501
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
6502
            <summary>
6503
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
6504
            </summary>
6505
            <value></value>
6506
        </member>
6507
        <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
6508
            <summary>
6509
            Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.
6510
            </summary>
6511
            <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</returns>
6512
        </member>
6513
        <member name="T:Newtonsoft.Json.Linq.JTokenReader">
6514
            <summary>
6515
            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
6516
            </summary>
6517
        </member>
6518
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
6519
            <summary>
6520
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
6521
            </summary>
6522
            <param name="token">The token to read from.</param>
6523
        </member>
6524
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">
6525
            <summary>
6526
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
6527
            </summary>
6528
            <returns>
6529
            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.
6530
            </returns>
6531
        </member>
6532
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">
6533
            <summary>
6534
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6535
            </summary>
6536
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6537
        </member>
6538
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
6539
            <summary>
6540
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6541
            </summary>
6542
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6543
        </member>
6544
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString">
6545
            <summary>
6546
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
6547
            </summary>
6548
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6549
        </member>
6550
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime">
6551
            <summary>
6552
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6553
            </summary>
6554
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6555
        </member>
6556
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">
6557
            <summary>
6558
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6559
            </summary>
6560
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6561
        </member>
6562
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
6563
            <summary>
6564
            Reads the next JSON token from the stream.
6565
            </summary>
6566
            <returns>
6567
            true if the next token was read successfully; false if there are no more tokens to read.
6568
            </returns>
6569
        </member>
6570
        <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">
6571
            <summary>
6572
            Gets the path of the current JSON token. 
6573
            </summary>
6574
        </member>
6575
        <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
6576
            <summary>
6577
            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
6578
            </summary>
6579
        </member>
6580
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
6581
            <summary>
6582
            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"/>.
6583
            </summary>
6584
            <param name="container">The container being written to.</param>
6585
        </member>
6586
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
6587
            <summary>
6588
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
6589
            </summary>
6590
        </member>
6591
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
6592
            <summary>
6593
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
6594
            </summary>
6595
        </member>
6596
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
6597
            <summary>
6598
            Closes this stream and the underlying stream.
6599
            </summary>
6600
        </member>
6601
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
6602
            <summary>
6603
            Writes the beginning of a Json object.
6604
            </summary>
6605
        </member>
6606
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
6607
            <summary>
6608
            Writes the beginning of a Json array.
6609
            </summary>
6610
        </member>
6611
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
6612
            <summary>
6613
            Writes the start of a constructor with the given name.
6614
            </summary>
6615
            <param name="name">The name of the constructor.</param>
6616
        </member>
6617
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
6618
            <summary>
6619
            Writes the end.
6620
            </summary>
6621
            <param name="token">The token.</param>
6622
        </member>
6623
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
6624
            <summary>
6625
            Writes the property name of a name/value pair on a Json object.
6626
            </summary>
6627
            <param name="name">The name of the property.</param>
6628
        </member>
6629
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
6630
            <summary>
6631
            Writes a <see cref="T:System.Object"/> value.
6632
            An error will raised if the value cannot be written as a single JSON token.
6633
            </summary>
6634
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
6635
        </member>
6636
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
6637
            <summary>
6638
            Writes a null value.
6639
            </summary>
6640
        </member>
6641
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
6642
            <summary>
6643
            Writes an undefined value.
6644
            </summary>
6645
        </member>
6646
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
6647
            <summary>
6648
            Writes raw JSON.
6649
            </summary>
6650
            <param name="json">The raw JSON to write.</param>
6651
        </member>
6652
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
6653
            <summary>
6654
            Writes out a comment <code>/*...*/</code> containing the specified text.
6655
            </summary>
6656
            <param name="text">Text to place inside the comment.</param>
6657
        </member>
6658
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
6659
            <summary>
6660
            Writes a <see cref="T:System.String"/> value.
6661
            </summary>
6662
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
6663
        </member>
6664
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
6665
            <summary>
6666
            Writes a <see cref="T:System.Int32"/> value.
6667
            </summary>
6668
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
6669
        </member>
6670
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
6671
            <summary>
6672
            Writes a <see cref="T:System.UInt32"/> value.
6673
            </summary>
6674
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
6675
        </member>
6676
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
6677
            <summary>
6678
            Writes a <see cref="T:System.Int64"/> value.
6679
            </summary>
6680
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
6681
        </member>
6682
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
6683
            <summary>
6684
            Writes a <see cref="T:System.UInt64"/> value.
6685
            </summary>
6686
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
6687
        </member>
6688
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
6689
            <summary>
6690
            Writes a <see cref="T:System.Single"/> value.
6691
            </summary>
6692
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
6693
        </member>
6694
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
6695
            <summary>
6696
            Writes a <see cref="T:System.Double"/> value.
6697
            </summary>
6698
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
6699
        </member>
6700
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
6701
            <summary>
6702
            Writes a <see cref="T:System.Boolean"/> value.
6703
            </summary>
6704
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
6705
        </member>
6706
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
6707
            <summary>
6708
            Writes a <see cref="T:System.Int16"/> value.
6709
            </summary>
6710
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
6711
        </member>
6712
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
6713
            <summary>
6714
            Writes a <see cref="T:System.UInt16"/> value.
6715
            </summary>
6716
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
6717
        </member>
6718
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
6719
            <summary>
6720
            Writes a <see cref="T:System.Char"/> value.
6721
            </summary>
6722
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
6723
        </member>
6724
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
6725
            <summary>
6726
            Writes a <see cref="T:System.Byte"/> value.
6727
            </summary>
6728
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
6729
        </member>
6730
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
6731
            <summary>
6732
            Writes a <see cref="T:System.SByte"/> value.
6733
            </summary>
6734
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
6735
        </member>
6736
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
6737
            <summary>
6738
            Writes a <see cref="T:System.Decimal"/> value.
6739
            </summary>
6740
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
6741
        </member>
6742
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
6743
            <summary>
6744
            Writes a <see cref="T:System.DateTime"/> value.
6745
            </summary>
6746
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
6747
        </member>
6748
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">
6749
            <summary>
6750
            Writes a <see cref="T:System.DateTimeOffset"/> value.
6751
            </summary>
6752
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
6753
        </member>
6754
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
6755
            <summary>
6756
            Writes a <see cref="T:Byte[]"/> value.
6757
            </summary>
6758
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
6759
        </member>
6760
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
6761
            <summary>
6762
            Writes a <see cref="T:System.TimeSpan"/> value.
6763
            </summary>
6764
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
6765
        </member>
6766
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
6767
            <summary>
6768
            Writes a <see cref="T:System.Guid"/> value.
6769
            </summary>
6770
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
6771
        </member>
6772
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
6773
            <summary>
6774
            Writes a <see cref="T:System.Uri"/> value.
6775
            </summary>
6776
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
6777
        </member>
6778
        <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
6779
            <summary>
6780
            Gets the token being writen.
6781
            </summary>
6782
            <value>The token being writen.</value>
6783
        </member>
6784
        <member name="T:Newtonsoft.Json.Linq.JProperty">
6785
            <summary>
6786
            Represents a JSON property.
6787
            </summary>
6788
        </member>
6789
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
6790
            <summary>
6791
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
6792
            </summary>
6793
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
6794
        </member>
6795
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
6796
            <summary>
6797
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
6798
            </summary>
6799
            <param name="name">The property name.</param>
6800
            <param name="content">The property content.</param>
6801
        </member>
6802
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
6803
            <summary>
6804
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
6805
            </summary>
6806
            <param name="name">The property name.</param>
6807
            <param name="content">The property content.</param>
6808
        </member>
6809
        <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6810
            <summary>
6811
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6812
            </summary>
6813
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6814
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6815
        </member>
6816
        <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
6817
            <summary>
6818
            Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6819
            </summary>
6820
            <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>
6821
            <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>
6822
        </member>
6823
        <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
6824
            <summary>
6825
            Gets the container's children tokens.
6826
            </summary>
6827
            <value>The container's children tokens.</value>
6828
        </member>
6829
        <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
6830
            <summary>
6831
            Gets the property name.
6832
            </summary>
6833
            <value>The property name.</value>
6834
        </member>
6835
        <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
6836
            <summary>
6837
            Gets or sets the property value.
6838
            </summary>
6839
            <value>The property value.</value>
6840
        </member>
6841
        <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
6842
            <summary>
6843
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6844
            </summary>
6845
            <value>The type.</value>
6846
        </member>
6847
        <member name="T:Newtonsoft.Json.Linq.JTokenType">
6848
            <summary>
6849
            Specifies the type of token.
6850
            </summary>
6851
        </member>
6852
        <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
6853
            <summary>
6854
            No token type has been set.
6855
            </summary>
6856
        </member>
6857
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
6858
            <summary>
6859
            A JSON object.
6860
            </summary>
6861
        </member>
6862
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
6863
            <summary>
6864
            A JSON array.
6865
            </summary>
6866
        </member>
6867
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
6868
            <summary>
6869
            A JSON constructor.
6870
            </summary>
6871
        </member>
6872
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
6873
            <summary>
6874
            A JSON object property.
6875
            </summary>
6876
        </member>
6877
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
6878
            <summary>
6879
            A comment.
6880
            </summary>
6881
        </member>
6882
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
6883
            <summary>
6884
            An integer value.
6885
            </summary>
6886
        </member>
6887
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
6888
            <summary>
6889
            A float value.
6890
            </summary>
6891
        </member>
6892
        <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
6893
            <summary>
6894
            A string value.
6895
            </summary>
6896
        </member>
6897
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
6898
            <summary>
6899
            A boolean value.
6900
            </summary>
6901
        </member>
6902
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
6903
            <summary>
6904
            A null value.
6905
            </summary>
6906
        </member>
6907
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
6908
            <summary>
6909
            An undefined value.
6910
            </summary>
6911
        </member>
6912
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
6913
            <summary>
6914
            A date value.
6915
            </summary>
6916
        </member>
6917
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
6918
            <summary>
6919
            A raw JSON value.
6920
            </summary>
6921
        </member>
6922
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
6923
            <summary>
6924
            A collection of bytes value.
6925
            </summary>
6926
        </member>
6927
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
6928
            <summary>
6929
            A Guid value.
6930
            </summary>
6931
        </member>
6932
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
6933
            <summary>
6934
            A Uri value.
6935
            </summary>
6936
        </member>
6937
        <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
6938
            <summary>
6939
            A TimeSpan value.
6940
            </summary>
6941
        </member>
6942
        <member name="T:Newtonsoft.Json.Schema.Extensions">
6943
            <summary>
6944
            Contains the JSON schema extension methods.
6945
            </summary>
6946
        </member>
6947
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
6948
            <summary>
6949
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
6950
            </summary>
6951
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6952
            <param name="schema">The schema to test with.</param>
6953
            <returns>
6954
                    <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
6955
            </returns>
6956
        </member>
6957
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
6958
            <summary>
6959
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
6960
            </summary>
6961
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6962
            <param name="schema">The schema to test with.</param>
6963
            <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
6964
            <returns>
6965
                    <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
6966
            </returns>
6967
        </member>
6968
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
6969
            <summary>
6970
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6971
            </summary>
6972
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6973
            <param name="schema">The schema to test with.</param>
6974
        </member>
6975
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
6976
            <summary>
6977
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6978
            </summary>
6979
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6980
            <param name="schema">The schema to test with.</param>
6981
            <param name="validationEventHandler">The validation event handler.</param>
6982
        </member>
6983
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
6984
            <summary>
6985
            Returns detailed information about the schema exception.
6986
            </summary>
6987
        </member>
6988
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
6989
            <summary>
6990
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
6991
            </summary>
6992
        </member>
6993
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
6994
            <summary>
6995
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
6996
            with a specified error message.
6997
            </summary>
6998
            <param name="message">The error message that explains the reason for the exception.</param>
6999
        </member>
7000
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
7001
            <summary>
7002
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7003
            with a specified error message and a reference to the inner exception that is the cause of this exception.
7004
            </summary>
7005
            <param name="message">The error message that explains the reason for the exception.</param>
7006
            <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>
7007
        </member>
7008
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7009
            <summary>
7010
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
7011
            </summary>
7012
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
7013
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
7014
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
7015
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
7016
        </member>
7017
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
7018
            <summary>
7019
            Gets the line number indicating where the error occurred.
7020
            </summary>
7021
            <value>The line number indicating where the error occurred.</value>
7022
        </member>
7023
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
7024
            <summary>
7025
            Gets the line position indicating where the error occurred.
7026
            </summary>
7027
            <value>The line position indicating where the error occurred.</value>
7028
        </member>
7029
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
7030
            <summary>
7031
            Gets the path to the JSON where the error occurred.
7032
            </summary>
7033
            <value>The path to the JSON where the error occurred.</value>
7034
        </member>
7035
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
7036
            <summary>
7037
            Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
7038
            </summary>
7039
        </member>
7040
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
7041
            <summary>
7042
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
7043
            </summary>
7044
        </member>
7045
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
7046
            <summary>
7047
            Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.
7048
            </summary>
7049
            <param name="reference">The id.</param>
7050
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>
7051
        </member>
7052
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
7053
            <summary>
7054
            Gets or sets the loaded schemas.
7055
            </summary>
7056
            <value>The loaded schemas.</value>
7057
        </member>
7058
        <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
7059
            <summary>
7060
            Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
7061
            </summary>
7062
        </member>
7063
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
7064
            <summary>
7065
            Do not infer a schema Id.
7066
            </summary>
7067
        </member>
7068
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
7069
            <summary>
7070
            Use the .NET type name as the schema Id.
7071
            </summary>
7072
        </member>
7073
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
7074
            <summary>
7075
            Use the assembly qualified .NET type name as the schema Id.
7076
            </summary>
7077
        </member>
7078
        <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
7079
            <summary>
7080
            Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
7081
            </summary>
7082
        </member>
7083
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
7084
            <summary>
7085
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.
7086
            </summary>
7087
            <value>The JsonSchemaException associated with the validation error.</value>
7088
        </member>
7089
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
7090
            <summary>
7091
            Gets the path of the JSON location where the validation error occurred.
7092
            </summary>
7093
            <value>The path of the JSON location where the validation error occurred.</value>
7094
        </member>
7095
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
7096
            <summary>
7097
            Gets the text description corresponding to the validation error.
7098
            </summary>
7099
            <value>The text description.</value>
7100
        </member>
7101
        <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
7102
            <summary>
7103
            Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
7104
            </summary>
7105
        </member>
7106
        <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
7107
            <summary>
7108
            Resolves member mappings for a type, camel casing property names.
7109
            </summary>
7110
        </member>
7111
        <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
7112
            <summary>
7113
            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"/>.
7114
            </summary>
7115
        </member>
7116
        <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
7117
            <summary>
7118
            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"/>.
7119
            </summary>
7120
            <example>
7121
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class"/>
7122
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example"/>
7123
            </example>
7124
        </member>
7125
        <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
7126
            <summary>
7127
            Resolves the contract for a given type.
7128
            </summary>
7129
            <param name="type">The type to resolve a contract for.</param>
7130
            <returns>The contract for a given type.</returns>
7131
        </member>
7132
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
7133
            <summary>
7134
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
7135
            </summary>
7136
        </member>
7137
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)">
7138
            <summary>
7139
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
7140
            </summary>
7141
            <param name="shareCache">
7142
            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.
7143
            Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected
7144
            behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly
7145
            recommended to reuse <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> instances with the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7146
            </param>
7147
        </member>
7148
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
7149
            <summary>
7150
            Resolves the contract for a given type.
7151
            </summary>
7152
            <param name="type">The type to resolve a contract for.</param>
7153
            <returns>The contract for a given type.</returns>
7154
        </member>
7155
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
7156
            <summary>
7157
            Gets the serializable members for the type.
7158
            </summary>
7159
            <param name="objectType">The type to get serializable members for.</param>
7160
            <returns>The serializable members for the type.</returns>
7161
        </member>
7162
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
7163
            <summary>
7164
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
7165
            </summary>
7166
            <param name="objectType">Type of the object.</param>
7167
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
7168
        </member>
7169
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
7170
            <summary>
7171
            Creates the constructor parameters.
7172
            </summary>
7173
            <param name="constructor">The constructor to create properties for.</param>
7174
            <param name="memberProperties">The type's member properties.</param>
7175
            <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
7176
        </member>
7177
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
7178
            <summary>
7179
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
7180
            </summary>
7181
            <param name="matchingMemberProperty">The matching member property.</param>
7182
            <param name="parameterInfo">The constructor parameter.</param>
7183
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
7184
        </member>
7185
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
7186
            <summary>
7187
            Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for the contract.
7188
            </summary>
7189
            <param name="objectType">Type of the object.</param>
7190
            <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter"/>.</returns>
7191
        </member>
7192
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
7193
            <summary>
7194
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
7195
            </summary>
7196
            <param name="objectType">Type of the object.</param>
7197
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
7198
        </member>
7199
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
7200
            <summary>
7201
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
7202
            </summary>
7203
            <param name="objectType">Type of the object.</param>
7204
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
7205
        </member>
7206
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
7207
            <summary>
7208
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
7209
            </summary>
7210
            <param name="objectType">Type of the object.</param>
7211
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
7212
        </member>
7213
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
7214
            <summary>
7215
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
7216
            </summary>
7217
            <param name="objectType">Type of the object.</param>
7218
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
7219
        </member>
7220
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
7221
            <summary>
7222
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
7223
            </summary>
7224
            <param name="objectType">Type of the object.</param>
7225
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
7226
        </member>
7227
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDynamicContract(System.Type)">
7228
            <summary>
7229
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.
7230
            </summary>
7231
            <param name="objectType">Type of the object.</param>
7232
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.</returns>
7233
        </member>
7234
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
7235
            <summary>
7236
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
7237
            </summary>
7238
            <param name="objectType">Type of the object.</param>
7239
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
7240
        </member>
7241
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
7242
            <summary>
7243
            Determines which contract type is created for the given type.
7244
            </summary>
7245
            <param name="objectType">Type of the object.</param>
7246
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
7247
        </member>
7248
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
7249
            <summary>
7250
            Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
7251
            </summary>
7252
            <param name="type">The type to create properties for.</param>
7253
            /// <param name="memberSerialization">The member serialization mode for the type.</param>
7254
            <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
7255
        </member>
7256
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
7257
            <summary>
7258
            Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
7259
            </summary>
7260
            <param name="member">The member.</param>
7261
            <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
7262
        </member>
7263
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
7264
            <summary>
7265
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
7266
            </summary>
7267
            <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
7268
            <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
7269
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
7270
        </member>
7271
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
7272
            <summary>
7273
            Resolves the name of the property.
7274
            </summary>
7275
            <param name="propertyName">Name of the property.</param>
7276
            <returns>Name of the property.</returns>
7277
        </member>
7278
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
7279
            <summary>
7280
            Gets the resolved name of the property.
7281
            </summary>
7282
            <param name="propertyName">Name of the property.</param>
7283
            <returns>Name of the property.</returns>
7284
        </member>
7285
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
7286
            <summary>
7287
            Gets a value indicating whether members are being get and set using dynamic code generation.
7288
            This value is determined by the runtime permissions available.
7289
            </summary>
7290
            <value>
7291
                    <c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
7292
            </value>
7293
        </member>
7294
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
7295
            <summary>
7296
            Gets or sets the default members search flags.
7297
            </summary>
7298
            <value>The default members search flags.</value>
7299
        </member>
7300
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
7301
            <summary>
7302
            Gets or sets a value indicating whether compiler generated members should be serialized.
7303
            </summary>
7304
            <value>
7305
                    <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
7306
            </value>
7307
        </member>
7308
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
7309
            <summary>
7310
            Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.
7311
            </summary>
7312
            <value>
7313
                    <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>.
7314
            </value>
7315
        </member>
7316
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
7317
            <summary>
7318
            Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.
7319
            </summary>
7320
            <value>
7321
                    <c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
7322
            </value>
7323
        </member>
7324
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
7325
            <summary>
7326
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
7327
            </summary>
7328
        </member>
7329
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)">
7330
            <summary>
7331
            Resolves the name of the property.
7332
            </summary>
7333
            <param name="propertyName">Name of the property.</param>
7334
            <returns>The property name camel cased.</returns>
7335
        </member>
7336
        <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
7337
            <summary>
7338
            The default serialization binder used when resolving and loading classes from type names.
7339
            </summary>
7340
        </member>
7341
        <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
7342
            <summary>
7343
            When overridden in a derived class, controls the binding of a serialized object to a type.
7344
            </summary>
7345
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
7346
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
7347
            <returns>
7348
            The type of the object the formatter creates a new instance of.
7349
            </returns>
7350
        </member>
7351
        <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)">
7352
            <summary>
7353
            When overridden in a derived class, controls the binding of a serialized object to a type.
7354
            </summary>
7355
            <param name="serializedType">The type of the object the formatter creates a new instance of.</param>
7356
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object. </param>
7357
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object. </param>
7358
        </member>
7359
        <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
7360
            <summary>
7361
            Provides information surrounding an error.
7362
            </summary>
7363
        </member>
7364
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
7365
            <summary>
7366
            Gets the error.
7367
            </summary>
7368
            <value>The error.</value>
7369
        </member>
7370
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
7371
            <summary>
7372
            Gets the original object that caused the error.
7373
            </summary>
7374
            <value>The original object that caused the error.</value>
7375
        </member>
7376
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
7377
            <summary>
7378
            Gets the member that caused the error.
7379
            </summary>
7380
            <value>The member that caused the error.</value>
7381
        </member>
7382
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
7383
            <summary>
7384
            Gets the path of the JSON location where the error occurred.
7385
            </summary>
7386
            <value>The path of the JSON location where the error occurred.</value>
7387
        </member>
7388
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
7389
            <summary>
7390
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
7391
            </summary>
7392
            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
7393
        </member>
7394
        <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
7395
            <summary>
7396
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7397
            </summary>
7398
        </member>
7399
        <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
7400
            <summary>
7401
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
7402
            </summary>
7403
            <param name="underlyingType">The underlying type for the contract.</param>
7404
        </member>
7405
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
7406
            <summary>
7407
            Gets the <see cref="T:System.Type"/> of the collection items.
7408
            </summary>
7409
            <value>The <see cref="T:System.Type"/> of the collection items.</value>
7410
        </member>
7411
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
7412
            <summary>
7413
            Gets a value indicating whether the collection type is a multidimensional array.
7414
            </summary>
7415
            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
7416
        </member>
7417
        <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">
7418
            <summary>
7419
            Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.
7420
            </summary>
7421
            <param name="o">The object that raised the callback event.</param>
7422
            <param name="context">The streaming context.</param>
7423
        </member>
7424
        <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">
7425
            <summary>
7426
            Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.
7427
            </summary>
7428
            <param name="o">The object that raised the callback event.</param>
7429
            <param name="context">The streaming context.</param>
7430
            <param name="errorContext">The error context.</param>
7431
        </member>
7432
        <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">
7433
            <summary>
7434
            Sets extension data for an object during deserialization.
7435
            </summary>
7436
            <param name="o">The object to set extension data on.</param>
7437
            <param name="key">The extension data key.</param>
7438
            <param name="value">The extension data value.</param>
7439
        </member>
7440
        <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">
7441
            <summary>
7442
            Gets extension data for an object during serialization.
7443
            </summary>
7444
            <param name="o">The object to set extension data on.</param>
7445
        </member>
7446
        <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
7447
            <summary>
7448
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7449
            </summary>
7450
        </member>
7451
        <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
7452
            <summary>
7453
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
7454
            </summary>
7455
            <param name="underlyingType">The underlying type for the contract.</param>
7456
        </member>
7457
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver">
7458
            <summary>
7459
            Gets or sets the property name resolver.
7460
            </summary>
7461
            <value>The property name resolver.</value>
7462
        </member>
7463
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
7464
            <summary>
7465
            Gets the <see cref="T:System.Type"/> of the dictionary keys.
7466
            </summary>
7467
            <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
7468
        </member>
7469
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
7470
            <summary>
7471
            Gets the <see cref="T:System.Type"/> of the dictionary values.
7472
            </summary>
7473
            <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
7474
        </member>
7475
        <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
7476
            <summary>
7477
            Maps a JSON property to a .NET member or constructor parameter.
7478
            </summary>
7479
        </member>
7480
        <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
7481
            <summary>
7482
            Returns a <see cref="T:System.String"/> that represents this instance.
7483
            </summary>
7484
            <returns>
7485
            A <see cref="T:System.String"/> that represents this instance.
7486
            </returns>
7487
        </member>
7488
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
7489
            <summary>
7490
            Gets or sets the name of the property.
7491
            </summary>
7492
            <value>The name of the property.</value>
7493
        </member>
7494
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
7495
            <summary>
7496
            Gets or sets the type that declared this property.
7497
            </summary>
7498
            <value>The type that declared this property.</value>
7499
        </member>
7500
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
7501
            <summary>
7502
            Gets or sets the order of serialization and deserialization of a member.
7503
            </summary>
7504
            <value>The numeric order of serialization or deserialization.</value>
7505
        </member>
7506
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
7507
            <summary>
7508
            Gets or sets the name of the underlying member or parameter.
7509
            </summary>
7510
            <value>The name of the underlying member or parameter.</value>
7511
        </member>
7512
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
7513
            <summary>
7514
            Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
7515
            </summary>
7516
            <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>
7517
        </member>
7518
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
7519
            <summary>
7520
            Gets or sets the type of the property.
7521
            </summary>
7522
            <value>The type of the property.</value>
7523
        </member>
7524
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
7525
            <summary>
7526
            Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> for the property.
7527
            If set this converter takes presidence over the contract converter for the property type.
7528
            </summary>
7529
            <value>The converter.</value>
7530
        </member>
7531
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
7532
            <summary>
7533
            Gets or sets the member converter.
7534
            </summary>
7535
            <value>The member converter.</value>
7536
        </member>
7537
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
7538
            <summary>
7539
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
7540
            </summary>
7541
            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
7542
        </member>
7543
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
7544
            <summary>
7545
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
7546
            </summary>
7547
            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
7548
        </member>
7549
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
7550
            <summary>
7551
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
7552
            </summary>
7553
            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
7554
        </member>
7555
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
7556
            <summary>
7557
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
7558
            </summary>
7559
            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
7560
        </member>
7561
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
7562
            <summary>
7563
            Gets the default value.
7564
            </summary>
7565
            <value>The default value.</value>
7566
        </member>
7567
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
7568
            <summary>
7569
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
7570
            </summary>
7571
            <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
7572
        </member>
7573
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
7574
            <summary>
7575
            Gets or sets a value indicating whether this property preserves object references.
7576
            </summary>
7577
            <value>
7578
                    <c>true</c> if this instance is reference; otherwise, <c>false</c>.
7579
            </value>
7580
        </member>
7581
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
7582
            <summary>
7583
            Gets or sets the property null value handling.
7584
            </summary>
7585
            <value>The null value handling.</value>
7586
        </member>
7587
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
7588
            <summary>
7589
            Gets or sets the property default value handling.
7590
            </summary>
7591
            <value>The default value handling.</value>
7592
        </member>
7593
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
7594
            <summary>
7595
            Gets or sets the property reference loop handling.
7596
            </summary>
7597
            <value>The reference loop handling.</value>
7598
        </member>
7599
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
7600
            <summary>
7601
            Gets or sets the property object creation handling.
7602
            </summary>
7603
            <value>The object creation handling.</value>
7604
        </member>
7605
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
7606
            <summary>
7607
            Gets or sets or sets the type name handling.
7608
            </summary>
7609
            <value>The type name handling.</value>
7610
        </member>
7611
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
7612
            <summary>
7613
            Gets or sets a predicate used to determine whether the property should be serialize.
7614
            </summary>
7615
            <value>A predicate used to determine whether the property should be serialize.</value>
7616
        </member>
7617
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
7618
            <summary>
7619
            Gets or sets a predicate used to determine whether the property should be serialized.
7620
            </summary>
7621
            <value>A predicate used to determine whether the property should be serialized.</value>
7622
        </member>
7623
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
7624
            <summary>
7625
            Gets or sets an action used to set whether the property has been deserialized.
7626
            </summary>
7627
            <value>An action used to set whether the property has been deserialized.</value>
7628
        </member>
7629
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
7630
            <summary>
7631
            Gets or sets the converter used when serializing the property's collection items.
7632
            </summary>
7633
            <value>The collection's items converter.</value>
7634
        </member>
7635
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
7636
            <summary>
7637
            Gets or sets whether this property's collection items are serialized as a reference.
7638
            </summary>
7639
            <value>Whether this property's collection items are serialized as a reference.</value>
7640
        </member>
7641
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
7642
            <summary>
7643
            Gets or sets the the type name handling used when serializing the property's collection items.
7644
            </summary>
7645
            <value>The collection's items type name handling.</value>
7646
        </member>
7647
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
7648
            <summary>
7649
            Gets or sets the the reference loop handling used when serializing the property's collection items.
7650
            </summary>
7651
            <value>The collection's items reference loop handling.</value>
7652
        </member>
7653
        <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
7654
            <summary>
7655
            A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
7656
            </summary>
7657
        </member>
7658
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
7659
            <summary>
7660
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
7661
            </summary>
7662
            <param name="type">The type.</param>
7663
        </member>
7664
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
7665
            <summary>
7666
            When implemented in a derived class, extracts the key from the specified element.
7667
            </summary>
7668
            <param name="item">The element from which to extract the key.</param>
7669
            <returns>The key for the specified element.</returns>
7670
        </member>
7671
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
7672
            <summary>
7673
            Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
7674
            </summary>
7675
            <param name="property">The property to add to the collection.</param>
7676
        </member>
7677
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
7678
            <summary>
7679
            Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
7680
            First attempts to get an exact case match of propertyName and then
7681
            a case insensitive match.
7682
            </summary>
7683
            <param name="propertyName">Name of the property.</param>
7684
            <returns>A matching property if found.</returns>
7685
        </member>
7686
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
7687
            <summary>
7688
            Gets a property by property name.
7689
            </summary>
7690
            <param name="propertyName">The name of the property to get.</param>
7691
            <param name="comparisonType">Type property name string comparison.</param>
7692
            <returns>A matching property if found.</returns>
7693
        </member>
7694
        <member name="T:Newtonsoft.Json.MissingMemberHandling">
7695
            <summary>
7696
            Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7697
            </summary>
7698
        </member>
7699
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
7700
            <summary>
7701
            Ignore a missing member and do not attempt to deserialize it.
7702
            </summary>
7703
        </member>
7704
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
7705
            <summary>
7706
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
7707
            </summary>
7708
        </member>
7709
        <member name="T:Newtonsoft.Json.NullValueHandling">
7710
            <summary>
7711
            Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7712
            </summary>
7713
            <example>
7714
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class"/>
7715
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example"/>
7716
            </example>
7717
        </member>
7718
        <member name="F:Newtonsoft.Json.NullValueHandling.Include">
7719
            <summary>
7720
            Include null values when serializing and deserializing objects.
7721
            </summary>
7722
        </member>
7723
        <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
7724
            <summary>
7725
            Ignore null values when serializing and deserializing objects.
7726
            </summary>
7727
        </member>
7728
        <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
7729
            <summary>
7730
            Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7731
            </summary>
7732
        </member>
7733
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
7734
            <summary>
7735
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
7736
            </summary>
7737
        </member>
7738
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
7739
            <summary>
7740
            Ignore loop references and do not serialize.
7741
            </summary>
7742
        </member>
7743
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
7744
            <summary>
7745
            Serialize loop references.
7746
            </summary>
7747
        </member>
7748
        <member name="T:Newtonsoft.Json.Schema.JsonSchema">
7749
            <summary>
7750
            An in-memory representation of a JSON Schema.
7751
            </summary>
7752
        </member>
7753
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
7754
            <summary>
7755
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
7756
            </summary>
7757
        </member>
7758
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
7759
            <summary>
7760
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7761
            </summary>
7762
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
7763
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
7764
        </member>
7765
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7766
            <summary>
7767
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7768
            </summary>
7769
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
7770
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
7771
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
7772
        </member>
7773
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
7774
            <summary>
7775
            Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON.
7776
            </summary>
7777
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
7778
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
7779
        </member>
7780
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7781
            <summary>
7782
            Parses the specified json.
7783
            </summary>
7784
            <param name="json">The json.</param>
7785
            <param name="resolver">The resolver.</param>
7786
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
7787
        </member>
7788
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
7789
            <summary>
7790
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
7791
            </summary>
7792
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7793
        </member>
7794
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7795
            <summary>
7796
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
7797
            </summary>
7798
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7799
            <param name="resolver">The resolver used.</param>
7800
        </member>
7801
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
7802
            <summary>
7803
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
7804
            </summary>
7805
            <returns>
7806
            A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
7807
            </returns>
7808
        </member>
7809
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
7810
            <summary>
7811
            Gets or sets the id.
7812
            </summary>
7813
        </member>
7814
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
7815
            <summary>
7816
            Gets or sets the title.
7817
            </summary>
7818
        </member>
7819
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
7820
            <summary>
7821
            Gets or sets whether the object is required.
7822
            </summary>
7823
        </member>
7824
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
7825
            <summary>
7826
            Gets or sets whether the object is read only.
7827
            </summary>
7828
        </member>
7829
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
7830
            <summary>
7831
            Gets or sets whether the object is visible to users.
7832
            </summary>
7833
        </member>
7834
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
7835
            <summary>
7836
            Gets or sets whether the object is transient.
7837
            </summary>
7838
        </member>
7839
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
7840
            <summary>
7841
            Gets or sets the description of the object.
7842
            </summary>
7843
        </member>
7844
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
7845
            <summary>
7846
            Gets or sets the types of values allowed by the object.
7847
            </summary>
7848
            <value>The type.</value>
7849
        </member>
7850
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
7851
            <summary>
7852
            Gets or sets the pattern.
7853
            </summary>
7854
            <value>The pattern.</value>
7855
        </member>
7856
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
7857
            <summary>
7858
            Gets or sets the minimum length.
7859
            </summary>
7860
            <value>The minimum length.</value>
7861
        </member>
7862
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
7863
            <summary>
7864
            Gets or sets the maximum length.
7865
            </summary>
7866
            <value>The maximum length.</value>
7867
        </member>
7868
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
7869
            <summary>
7870
            Gets or sets a number that the value should be divisble by.
7871
            </summary>
7872
            <value>A number that the value should be divisble by.</value>
7873
        </member>
7874
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
7875
            <summary>
7876
            Gets or sets the minimum.
7877
            </summary>
7878
            <value>The minimum.</value>
7879
        </member>
7880
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
7881
            <summary>
7882
            Gets or sets the maximum.
7883
            </summary>
7884
            <value>The maximum.</value>
7885
        </member>
7886
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
7887
            <summary>
7888
            Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.
7889
            </summary>
7890
            <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value>
7891
        </member>
7892
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
7893
            <summary>
7894
            Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.
7895
            </summary>
7896
            <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>
7897
        </member>
7898
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
7899
            <summary>
7900
            Gets or sets the minimum number of items.
7901
            </summary>
7902
            <value>The minimum number of items.</value>
7903
        </member>
7904
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
7905
            <summary>
7906
            Gets or sets the maximum number of items.
7907
            </summary>
7908
            <value>The maximum number of items.</value>
7909
        </member>
7910
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
7911
            <summary>
7912
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
7913
            </summary>
7914
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
7915
        </member>
7916
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">
7917
            <summary>
7918
            Gets or sets a value indicating whether items in an array are validated using the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> instance at their array position from <see cref="P:Newtonsoft.Json.Schema.JsonSchema.Items"/>.
7919
            </summary>
7920
            <value>
7921
                    <c>true</c> if items are validated using their array position; otherwise, <c>false</c>.
7922
            </value>
7923
        </member>
7924
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">
7925
            <summary>
7926
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.
7927
            </summary>
7928
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value>
7929
        </member>
7930
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">
7931
            <summary>
7932
            Gets or sets a value indicating whether additional items are allowed.
7933
            </summary>
7934
            <value>
7935
                    <c>true</c> if additional items are allowed; otherwise, <c>false</c>.
7936
            </value>
7937
        </member>
7938
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">
7939
            <summary>
7940
            Gets or sets whether the array items must be unique.
7941
            </summary>
7942
        </member>
7943
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
7944
            <summary>
7945
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
7946
            </summary>
7947
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
7948
        </member>
7949
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
7950
            <summary>
7951
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
7952
            </summary>
7953
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
7954
        </member>
7955
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
7956
            <summary>
7957
            Gets or sets the pattern properties.
7958
            </summary>
7959
            <value>The pattern properties.</value>
7960
        </member>
7961
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
7962
            <summary>
7963
            Gets or sets a value indicating whether additional properties are allowed.
7964
            </summary>
7965
            <value>
7966
                    <c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
7967
            </value>
7968
        </member>
7969
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
7970
            <summary>
7971
            Gets or sets the required property if this property is present.
7972
            </summary>
7973
            <value>The required property if this property is present.</value>
7974
        </member>
7975
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
7976
            <summary>
7977
            Gets or sets the a collection of valid enum values allowed.
7978
            </summary>
7979
            <value>A collection of valid enum values allowed.</value>
7980
        </member>
7981
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
7982
            <summary>
7983
            Gets or sets disallowed types.
7984
            </summary>
7985
            <value>The disallow types.</value>
7986
        </member>
7987
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
7988
            <summary>
7989
            Gets or sets the default value.
7990
            </summary>
7991
            <value>The default value.</value>
7992
        </member>
7993
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
7994
            <summary>
7995
            Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.
7996
            </summary>
7997
            <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value>
7998
        </member>
7999
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
8000
            <summary>
8001
            Gets or sets the format.
8002
            </summary>
8003
            <value>The format.</value>
8004
        </member>
8005
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
8006
            <summary>
8007
            Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
8008
            </summary>
8009
        </member>
8010
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
8011
            <summary>
8012
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8013
            </summary>
8014
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8015
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8016
        </member>
8017
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8018
            <summary>
8019
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8020
            </summary>
8021
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8022
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8023
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8024
        </member>
8025
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
8026
            <summary>
8027
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8028
            </summary>
8029
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8030
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8031
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8032
        </member>
8033
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
8034
            <summary>
8035
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8036
            </summary>
8037
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8038
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8039
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8040
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8041
        </member>
8042
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
8043
            <summary>
8044
            Gets or sets how undefined schemas are handled by the serializer.
8045
            </summary>
8046
        </member>
8047
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
8048
            <summary>
8049
            Gets or sets the contract resolver.
8050
            </summary>
8051
            <value>The contract resolver.</value>
8052
        </member>
8053
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
8054
            <summary>
8055
            The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
8056
            </summary>
8057
        </member>
8058
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
8059
            <summary>
8060
            No type specified.
8061
            </summary>
8062
        </member>
8063
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
8064
            <summary>
8065
            String type.
8066
            </summary>
8067
        </member>
8068
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
8069
            <summary>
8070
            Float type.
8071
            </summary>
8072
        </member>
8073
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
8074
            <summary>
8075
            Integer type.
8076
            </summary>
8077
        </member>
8078
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
8079
            <summary>
8080
            Boolean type.
8081
            </summary>
8082
        </member>
8083
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
8084
            <summary>
8085
            Object type.
8086
            </summary>
8087
        </member>
8088
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
8089
            <summary>
8090
            Array type.
8091
            </summary>
8092
        </member>
8093
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
8094
            <summary>
8095
            Null type.
8096
            </summary>
8097
        </member>
8098
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
8099
            <summary>
8100
            Any type.
8101
            </summary>
8102
        </member>
8103
        <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
8104
            <summary>
8105
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8106
            </summary>
8107
        </member>
8108
        <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
8109
            <summary>
8110
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
8111
            </summary>
8112
            <param name="underlyingType">The underlying type for the contract.</param>
8113
        </member>
8114
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
8115
            <summary>
8116
            Gets or sets the object member serialization.
8117
            </summary>
8118
            <value>The member object serialization.</value>
8119
        </member>
8120
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
8121
            <summary>
8122
            Gets or sets a value that indicates whether the object's properties are required.
8123
            </summary>
8124
            <value>
8125
                    A value indicating whether the object's properties are required.
8126
            </value>
8127
        </member>
8128
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
8129
            <summary>
8130
            Gets the object's properties.
8131
            </summary>
8132
            <value>The object's properties.</value>
8133
        </member>
8134
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters">
8135
            <summary>
8136
            Gets the constructor parameters required for any non-default constructor
8137
            </summary>
8138
        </member>
8139
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">
8140
            <summary>
8141
            Gets a collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> instances that define the parameters used with <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator"/>.
8142
            </summary>
8143
        </member>
8144
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor">
8145
            <summary>
8146
            Gets or sets the override constructor used to create the object.
8147
            This is set when a constructor is marked up using the
8148
            JsonConstructor attribute.
8149
            </summary>
8150
            <value>The override constructor.</value>
8151
        </member>
8152
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor">
8153
            <summary>
8154
            Gets or sets the parametrized constructor used to create the object.
8155
            </summary>
8156
            <value>The parametrized constructor.</value>
8157
        </member>
8158
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">
8159
            <summary>
8160
            Gets or sets the function used to create the object. When set this function will override <see cref="P:DefaultCreator"/>.
8161
            This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection.
8162
            </summary>
8163
            <value>The function used to create the object.</value>
8164
        </member>
8165
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">
8166
            <summary>
8167
            Gets or sets the extension data setter.
8168
            </summary>
8169
        </member>
8170
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">
8171
            <summary>
8172
            Gets or sets the extension data getter.
8173
            </summary>
8174
        </member>
8175
        <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
8176
            <summary>
8177
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8178
            </summary>
8179
        </member>
8180
        <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
8181
            <summary>
8182
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
8183
            </summary>
8184
            <param name="underlyingType">The underlying type for the contract.</param>
8185
        </member>
8186
        <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
8187
            <summary>
8188
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
8189
            </summary>
8190
        </member>
8191
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
8192
            <summary>
8193
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
8194
            </summary>
8195
            <param name="memberInfo">The member info.</param>
8196
        </member>
8197
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
8198
            <summary>
8199
            Sets the value.
8200
            </summary>
8201
            <param name="target">The target to set the value on.</param>
8202
            <param name="value">The value to set on the target.</param>
8203
        </member>
8204
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
8205
            <summary>
8206
            Gets the value.
8207
            </summary>
8208
            <param name="target">The target to get the value from.</param>
8209
            <returns>The value.</returns>
8210
        </member>
8211
        <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
8212
            <summary>
8213
            When applied to a method, specifies that the method is called when an error occurs serializing an object.
8214
            </summary>
8215
        </member>
8216
        <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)">
8217
            <summary>
8218
            Helper method for generating a MetaObject which calls a
8219
            specific method on Dynamic that returns a result
8220
            </summary>
8221
        </member>
8222
        <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodReturnLast(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
8223
            <summary>
8224
            Helper method for generating a MetaObject which calls a
8225
            specific method on Dynamic, but uses one of the arguments for
8226
            the result.
8227
            </summary>
8228
        </member>
8229
        <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodNoResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
8230
            <summary>
8231
            Helper method for generating a MetaObject which calls a
8232
            specific method on Dynamic, but uses one of the arguments for
8233
            the result.
8234
            </summary>
8235
        </member>
8236
        <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.GetRestrictions">
8237
            <summary>
8238
            Returns a Restrictions object which includes our current restrictions merged
8239
            with a restriction limiting our type
8240
            </summary>
8241
        </member>
8242
        <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
8243
            <summary>
8244
            Represents a method that constructs an object.
8245
            </summary>
8246
            <typeparam name="T">The object type to create.</typeparam>
8247
        </member>
8248
        <member name="T:Newtonsoft.Json.TypeNameHandling">
8249
            <summary>
8250
            Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8251
            </summary>
8252
        </member>
8253
        <member name="F:Newtonsoft.Json.TypeNameHandling.None">
8254
            <summary>
8255
            Do not include the .NET type name when serializing types.
8256
            </summary>
8257
        </member>
8258
        <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
8259
            <summary>
8260
            Include the .NET type name when serializing into a JSON object structure.
8261
            </summary>
8262
        </member>
8263
        <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
8264
            <summary>
8265
            Include the .NET type name when serializing into a JSON array structure.
8266
            </summary>
8267
        </member>
8268
        <member name="F:Newtonsoft.Json.TypeNameHandling.All">
8269
            <summary>
8270
            Always include the .NET type name when serializing.
8271
            </summary>
8272
        </member>
8273
        <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
8274
            <summary>
8275
            Include the .NET type name when the type of the object being serialized is not the same as its declared type.
8276
            </summary>
8277
        </member>
8278
        <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
8279
            <summary>
8280
            Converts the value to the specified type. If the value is unable to be converted, the
8281
            value is checked whether it assignable to the specified type.
8282
            </summary>
8283
            <param name="initialValue">The value to convert.</param>
8284
            <param name="culture">The culture to use when converting.</param>
8285
            <param name="targetType">The type to convert or cast the value to.</param>
8286
            <returns>
8287
            The converted type. If conversion was unsuccessful, the initial value
8288
            is returned if assignable to the target type.
8289
            </returns>
8290
        </member>
8291
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
8292
            <summary>
8293
            Gets a dictionary of the names and values of an Enum type.
8294
            </summary>
8295
            <returns></returns>
8296
        </member>
8297
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
8298
            <summary>
8299
            Gets a dictionary of the names and values of an Enum type.
8300
            </summary>
8301
            <param name="enumType">The enum type to get names and values for.</param>
8302
            <returns></returns>
8303
        </member>
8304
        <member name="T:Newtonsoft.Json.JsonToken">
8305
            <summary>
8306
            Specifies the type of Json token.
8307
            </summary>
8308
        </member>
8309
        <member name="F:Newtonsoft.Json.JsonToken.None">
8310
            <summary>
8311
            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. 
8312
            </summary>
8313
        </member>
8314
        <member name="F:Newtonsoft.Json.JsonToken.StartObject">
8315
            <summary>
8316
            An object start token.
8317
            </summary>
8318
        </member>
8319
        <member name="F:Newtonsoft.Json.JsonToken.StartArray">
8320
            <summary>
8321
            An array start token.
8322
            </summary>
8323
        </member>
8324
        <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
8325
            <summary>
8326
            A constructor start token.
8327
            </summary>
8328
        </member>
8329
        <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
8330
            <summary>
8331
            An object property name.
8332
            </summary>
8333
        </member>
8334
        <member name="F:Newtonsoft.Json.JsonToken.Comment">
8335
            <summary>
8336
            A comment.
8337
            </summary>
8338
        </member>
8339
        <member name="F:Newtonsoft.Json.JsonToken.Raw">
8340
            <summary>
8341
            Raw JSON.
8342
            </summary>
8343
        </member>
8344
        <member name="F:Newtonsoft.Json.JsonToken.Integer">
8345
            <summary>
8346
            An integer.
8347
            </summary>
8348
        </member>
8349
        <member name="F:Newtonsoft.Json.JsonToken.Float">
8350
            <summary>
8351
            A float.
8352
            </summary>
8353
        </member>
8354
        <member name="F:Newtonsoft.Json.JsonToken.String">
8355
            <summary>
8356
            A string.
8357
            </summary>
8358
        </member>
8359
        <member name="F:Newtonsoft.Json.JsonToken.Boolean">
8360
            <summary>
8361
            A boolean.
8362
            </summary>
8363
        </member>
8364
        <member name="F:Newtonsoft.Json.JsonToken.Null">
8365
            <summary>
8366
            A null token.
8367
            </summary>
8368
        </member>
8369
        <member name="F:Newtonsoft.Json.JsonToken.Undefined">
8370
            <summary>
8371
            An undefined token.
8372
            </summary>
8373
        </member>
8374
        <member name="F:Newtonsoft.Json.JsonToken.EndObject">
8375
            <summary>
8376
            An object end token.
8377
            </summary>
8378
        </member>
8379
        <member name="F:Newtonsoft.Json.JsonToken.EndArray">
8380
            <summary>
8381
            An array end token.
8382
            </summary>
8383
        </member>
8384
        <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
8385
            <summary>
8386
            A constructor end token.
8387
            </summary>
8388
        </member>
8389
        <member name="F:Newtonsoft.Json.JsonToken.Date">
8390
            <summary>
8391
            A Date.
8392
            </summary>
8393
        </member>
8394
        <member name="F:Newtonsoft.Json.JsonToken.Bytes">
8395
            <summary>
8396
            Byte data.
8397
            </summary>
8398
        </member>
8399
        <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
8400
            <summary>
8401
            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
8402
            </summary>
8403
        </member>
8404
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
8405
            <summary>
8406
            Determines whether the collection is null or empty.
8407
            </summary>
8408
            <param name="collection">The collection.</param>
8409
            <returns>
8410
                    <c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
8411
            </returns>
8412
        </member>
8413
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
8414
            <summary>
8415
            Adds the elements of the specified collection to the specified generic IList.
8416
            </summary>
8417
            <param name="initial">The list to add to.</param>
8418
            <param name="collection">The collection of elements to add.</param>
8419
        </member>
8420
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
8421
            <summary>
8422
            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
8423
            </summary>
8424
            <typeparam name="TSource">The type of the elements of source.</typeparam>
8425
            <param name="list">A sequence in which to locate a value.</param>
8426
            <param name="value">The object to locate in the sequence</param>
8427
            <param name="comparer">An equality comparer to compare values.</param>
8428
            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
8429
        </member>
8430
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
8431
            <summary>
8432
            Gets the type of the typed collection's items.
8433
            </summary>
8434
            <param name="type">The type.</param>
8435
            <returns>The type of the typed collection's items.</returns>
8436
        </member>
8437
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
8438
            <summary>
8439
            Gets the member's underlying type.
8440
            </summary>
8441
            <param name="member">The member.</param>
8442
            <returns>The underlying type of the member.</returns>
8443
        </member>
8444
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
8445
            <summary>
8446
            Determines whether the member is an indexed property.
8447
            </summary>
8448
            <param name="member">The member.</param>
8449
            <returns>
8450
                    <c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
8451
            </returns>
8452
        </member>
8453
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
8454
            <summary>
8455
            Determines whether the property is an indexed property.
8456
            </summary>
8457
            <param name="property">The property.</param>
8458
            <returns>
8459
                    <c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
8460
            </returns>
8461
        </member>
8462
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
8463
            <summary>
8464
            Gets the member's value on the object.
8465
            </summary>
8466
            <param name="member">The member.</param>
8467
            <param name="target">The target object.</param>
8468
            <returns>The member's value on the object.</returns>
8469
        </member>
8470
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
8471
            <summary>
8472
            Sets the member's value on the target object.
8473
            </summary>
8474
            <param name="member">The member.</param>
8475
            <param name="target">The target.</param>
8476
            <param name="value">The value.</param>
8477
        </member>
8478
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
8479
            <summary>
8480
            Determines whether the specified MemberInfo can be read.
8481
            </summary>
8482
            <param name="member">The MemberInfo to determine whether can be read.</param>
8483
            /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
8484
            <returns>
8485
                    <c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
8486
            </returns>
8487
        </member>
8488
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
8489
            <summary>
8490
            Determines whether the specified MemberInfo can be set.
8491
            </summary>
8492
            <param name="member">The MemberInfo to determine whether can be set.</param>
8493
            <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
8494
            <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
8495
            <returns>
8496
                    <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
8497
            </returns>
8498
        </member>
8499
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
8500
            <summary>
8501
            Determines whether the string is all white space. Empty string will return false.
8502
            </summary>
8503
            <param name="s">The string to test whether it is all white space.</param>
8504
            <returns>
8505
                    <c>true</c> if the string is all white space; otherwise, <c>false</c>.
8506
            </returns>
8507
        </member>
8508
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
8509
            <summary>
8510
            Nulls an empty string.
8511
            </summary>
8512
            <param name="s">The string.</param>
8513
            <returns>Null if the string was null, otherwise the string unchanged.</returns>
8514
        </member>
8515
        <member name="T:Newtonsoft.Json.WriteState">
8516
            <summary>
8517
            Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
8518
            </summary>
8519
        </member>
8520
        <member name="F:Newtonsoft.Json.WriteState.Error">
8521
            <summary>
8522
            An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
8523
            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.
8524
            Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown. 
8525
            </summary>
8526
        </member>
8527
        <member name="F:Newtonsoft.Json.WriteState.Closed">
8528
            <summary>
8529
            The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called. 
8530
            </summary>
8531
        </member>
8532
        <member name="F:Newtonsoft.Json.WriteState.Object">
8533
            <summary>
8534
            An object is being written. 
8535
            </summary>
8536
        </member>
8537
        <member name="F:Newtonsoft.Json.WriteState.Array">
8538
            <summary>
8539
            A array is being written.
8540
            </summary>
8541
        </member>
8542
        <member name="F:Newtonsoft.Json.WriteState.Constructor">
8543
            <summary>
8544
            A constructor is being written.
8545
            </summary>
8546
        </member>
8547
        <member name="F:Newtonsoft.Json.WriteState.Property">
8548
            <summary>
8549
            A property is being written.
8550
            </summary>
8551
        </member>
8552
        <member name="F:Newtonsoft.Json.WriteState.Start">
8553
            <summary>
8554
            A write method has not been called.
8555
            </summary>
8556
        </member>
8557
    </members>
8558
</doc>
클립보드 이미지 추가 (최대 크기: 500 MB)