프로젝트

일반

사용자정보

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

markus / packages / Newtonsoft.Json.6.0.4 / lib / net35 / Newtonsoft.Json.xml @ 37ae964f

이력 | 보기 | 이력해설 | 다운로드 (441 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.EntityKeyMemberConverter">
1254
            <summary>
1255
            Converts an Entity Framework EntityKey to and from JSON.
1256
            </summary>
1257
        </member>
1258
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.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.EntityKeyMemberConverter.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.EntityKeyMemberConverter.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.KeyValuePairConverter">
1286
            <summary>
1287
            Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
1288
            </summary>
1289
        </member>
1290
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.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.KeyValuePairConverter.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.KeyValuePairConverter.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.BsonObjectIdConverter">
1318
            <summary>
1319
            Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
1320
            </summary>
1321
        </member>
1322
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.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.BsonObjectIdConverter.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.BsonObjectIdConverter.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="T:Newtonsoft.Json.Converters.RegexConverter">
1350
            <summary>
1351
            Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
1352
            </summary>
1353
        </member>
1354
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1355
            <summary>
1356
            Writes the JSON representation of the object.
1357
            </summary>
1358
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1359
            <param name="value">The value.</param>
1360
            <param name="serializer">The calling serializer.</param>
1361
        </member>
1362
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1363
            <summary>
1364
            Reads the JSON representation of the object.
1365
            </summary>
1366
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1367
            <param name="objectType">Type of the object.</param>
1368
            <param name="existingValue">The existing value of object being read.</param>
1369
            <param name="serializer">The calling serializer.</param>
1370
            <returns>The object value.</returns>
1371
        </member>
1372
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
1373
            <summary>
1374
            Determines whether this instance can convert the specified object type.
1375
            </summary>
1376
            <param name="objectType">Type of the object.</param>
1377
            <returns>
1378
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1379
            </returns>
1380
        </member>
1381
        <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
1382
            <summary>
1383
            Converts an <see cref="T:System.Enum"/> to and from its name string value.
1384
            </summary>
1385
        </member>
1386
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
1387
            <summary>
1388
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
1389
            </summary>
1390
        </member>
1391
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1392
            <summary>
1393
            Writes the JSON representation of the object.
1394
            </summary>
1395
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1396
            <param name="value">The value.</param>
1397
            <param name="serializer">The calling serializer.</param>
1398
        </member>
1399
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1400
            <summary>
1401
            Reads the JSON representation of the object.
1402
            </summary>
1403
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1404
            <param name="objectType">Type of the object.</param>
1405
            <param name="existingValue">The existing value of object being read.</param>
1406
            <param name="serializer">The calling serializer.</param>
1407
            <returns>The object value.</returns>
1408
        </member>
1409
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
1410
            <summary>
1411
            Determines whether this instance can convert the specified object type.
1412
            </summary>
1413
            <param name="objectType">Type of the object.</param>
1414
            <returns>
1415
            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1416
            </returns>
1417
        </member>
1418
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
1419
            <summary>
1420
            Gets or sets a value indicating whether the written enum text should be camel case.
1421
            </summary>
1422
            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
1423
        </member>
1424
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
1425
            <summary>
1426
            Gets or sets a value indicating whether integer values are allowed.
1427
            </summary>
1428
            <value><c>true</c> if integers are allowed; otherwise, <c>false</c>.</value>
1429
        </member>
1430
        <member name="T:Newtonsoft.Json.ConstructorHandling">
1431
            <summary>
1432
            Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1433
            </summary>
1434
        </member>
1435
        <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
1436
            <summary>
1437
            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.
1438
            </summary>
1439
        </member>
1440
        <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
1441
            <summary>
1442
            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.
1443
            </summary>
1444
        </member>
1445
        <member name="T:Newtonsoft.Json.Converters.VersionConverter">
1446
            <summary>
1447
            Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4").
1448
            </summary>
1449
        </member>
1450
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1451
            <summary>
1452
            Writes the JSON representation of the object.
1453
            </summary>
1454
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1455
            <param name="value">The value.</param>
1456
            <param name="serializer">The calling serializer.</param>
1457
        </member>
1458
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1459
            <summary>
1460
            Reads the JSON representation of the object.
1461
            </summary>
1462
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1463
            <param name="objectType">Type of the object.</param>
1464
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
1465
            <param name="serializer">The calling serializer.</param>
1466
            <returns>The object value.</returns>
1467
        </member>
1468
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
1469
            <summary>
1470
            Determines whether this instance can convert the specified object type.
1471
            </summary>
1472
            <param name="objectType">Type of the object.</param>
1473
            <returns>
1474
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1475
            </returns>
1476
        </member>
1477
        <member name="T:Newtonsoft.Json.DateFormatHandling">
1478
            <summary>
1479
            Specifies how dates are formatted when writing JSON text.
1480
            </summary>
1481
        </member>
1482
        <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
1483
            <summary>
1484
            Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
1485
            </summary>
1486
        </member>
1487
        <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
1488
            <summary>
1489
            Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
1490
            </summary>
1491
        </member>
1492
        <member name="T:Newtonsoft.Json.DateParseHandling">
1493
            <summary>
1494
            Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
1495
            </summary>
1496
        </member>
1497
        <member name="F:Newtonsoft.Json.DateParseHandling.None">
1498
            <summary>
1499
            Date formatted strings are not parsed to a date type and are read as strings.
1500
            </summary>
1501
        </member>
1502
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
1503
            <summary>
1504
            Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.
1505
            </summary>
1506
        </member>
1507
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
1508
            <summary>
1509
            Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"/>.
1510
            </summary>
1511
        </member>
1512
        <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
1513
            <summary>
1514
            Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
1515
            </summary>
1516
        </member>
1517
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
1518
            <summary>
1519
            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.
1520
            </summary>
1521
        </member>
1522
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
1523
            <summary>
1524
            Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
1525
            </summary>
1526
        </member>
1527
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
1528
            <summary>
1529
            Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
1530
            If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
1531
            </summary>
1532
        </member>
1533
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
1534
            <summary>
1535
            Time zone information should be preserved when converting.
1536
            </summary>
1537
        </member>
1538
        <member name="T:Newtonsoft.Json.FloatFormatHandling">
1539
            <summary>
1540
            Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
1541
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1542
            </summary>
1543
        </member>
1544
        <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
1545
            <summary>
1546
            Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".
1547
            </summary>
1548
        </member>
1549
        <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
1550
            <summary>
1551
            Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity.
1552
            Note that this will produce non-valid JSON.
1553
            </summary>
1554
        </member>
1555
        <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
1556
            <summary>
1557
            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.
1558
            </summary>
1559
        </member>
1560
        <member name="T:Newtonsoft.Json.FloatParseHandling">
1561
            <summary>
1562
            Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
1563
            </summary>
1564
        </member>
1565
        <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
1566
            <summary>
1567
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
1568
            </summary>
1569
        </member>
1570
        <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
1571
            <summary>
1572
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
1573
            </summary>
1574
        </member>
1575
        <member name="T:Newtonsoft.Json.Formatting">
1576
            <summary>
1577
            Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
1578
            </summary>
1579
        </member>
1580
        <member name="F:Newtonsoft.Json.Formatting.None">
1581
            <summary>
1582
            No special formatting is applied. This is the default.
1583
            </summary>
1584
        </member>
1585
        <member name="F:Newtonsoft.Json.Formatting.Indented">
1586
            <summary>
1587
            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.
1588
            </summary>
1589
        </member>
1590
        <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1591
            <summary>
1592
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1593
            </summary>
1594
        </member>
1595
        <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
1596
            <summary>
1597
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
1598
            </summary>
1599
        </member>
1600
        <member name="T:Newtonsoft.Json.JsonContainerAttribute">
1601
            <summary>
1602
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
1603
            </summary>
1604
        </member>
1605
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
1606
            <summary>
1607
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
1608
            </summary>
1609
        </member>
1610
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
1611
            <summary>
1612
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
1613
            </summary>
1614
            <param name="id">The container Id.</param>
1615
        </member>
1616
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
1617
            <summary>
1618
            Gets or sets the id.
1619
            </summary>
1620
            <value>The id.</value>
1621
        </member>
1622
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
1623
            <summary>
1624
            Gets or sets the title.
1625
            </summary>
1626
            <value>The title.</value>
1627
        </member>
1628
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
1629
            <summary>
1630
            Gets or sets the description.
1631
            </summary>
1632
            <value>The description.</value>
1633
        </member>
1634
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
1635
            <summary>
1636
            Gets the collection's items converter.
1637
            </summary>
1638
            <value>The collection's items converter.</value>
1639
        </member>
1640
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
1641
            <summary>
1642
            Gets or sets a value that indicates whether to preserve object references.
1643
            </summary>
1644
            <value>
1645
                    <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
1646
            </value>
1647
        </member>
1648
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
1649
            <summary>
1650
            Gets or sets a value that indicates whether to preserve collection's items references.
1651
            </summary>
1652
            <value>
1653
                    <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
1654
            </value>
1655
        </member>
1656
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
1657
            <summary>
1658
            Gets or sets the reference loop handling used when serializing the collection's items.
1659
            </summary>
1660
            <value>The reference loop handling.</value>
1661
        </member>
1662
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
1663
            <summary>
1664
            Gets or sets the type name handling used when serializing the collection's items.
1665
            </summary>
1666
            <value>The type name handling.</value>
1667
        </member>
1668
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
1669
            <summary>
1670
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
1671
            </summary>
1672
        </member>
1673
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
1674
            <summary>
1675
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
1676
            </summary>
1677
            <param name="id">The container Id.</param>
1678
        </member>
1679
        <member name="T:Newtonsoft.Json.JsonException">
1680
            <summary>
1681
            The exception thrown when an error occurs during Json serialization or deserialization.
1682
            </summary>
1683
        </member>
1684
        <member name="M:Newtonsoft.Json.JsonException.#ctor">
1685
            <summary>
1686
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1687
            </summary>
1688
        </member>
1689
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
1690
            <summary>
1691
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1692
            with a specified error message.
1693
            </summary>
1694
            <param name="message">The error message that explains the reason for the exception.</param>
1695
        </member>
1696
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
1697
            <summary>
1698
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1699
            with a specified error message and a reference to the inner exception that is the cause of this exception.
1700
            </summary>
1701
            <param name="message">The error message that explains the reason for the exception.</param>
1702
            <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>
1703
        </member>
1704
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1705
            <summary>
1706
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1707
            </summary>
1708
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
1709
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
1710
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
1711
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
1712
        </member>
1713
        <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
1714
            <summary>
1715
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection
1716
            and write values during serialization.
1717
            </summary>
1718
        </member>
1719
        <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
1720
            <summary>
1721
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.
1722
            </summary>
1723
        </member>
1724
        <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
1725
            <summary>
1726
            Gets or sets a value that indicates whether to write extension data when serializing the object.
1727
            </summary>
1728
            <value>
1729
                    <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1730
            </value>
1731
        </member>
1732
        <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
1733
            <summary>
1734
            Gets or sets a value that indicates whether to read extension data when deserializing the object.
1735
            </summary>
1736
            <value>
1737
                    <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1738
            </value>
1739
        </member>
1740
        <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
1741
            <summary>
1742
            Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
1743
            </summary>
1744
        </member>
1745
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">
1746
            <summary>
1747
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
1748
            </summary>
1749
            <param name="name">The name.</param>
1750
        </member>
1751
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
1752
            <summary>
1753
            When overridden in a derived class, returns whether resetting an object changes its value.
1754
            </summary>
1755
            <returns>
1756
            true if resetting the component changes its value; otherwise, false.
1757
            </returns>
1758
            <param name="component">The component to test for reset capability. 
1759
                            </param>
1760
        </member>
1761
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
1762
            <summary>
1763
            When overridden in a derived class, gets the current value of the property on a component.
1764
            </summary>
1765
            <returns>
1766
            The value of a property for a given component.
1767
            </returns>
1768
            <param name="component">The component with the property for which to retrieve the value. 
1769
                            </param>
1770
        </member>
1771
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
1772
            <summary>
1773
            When overridden in a derived class, resets the value for this property of the component to the default value.
1774
            </summary>
1775
            <param name="component">The component with the property value that is to be reset to the default value. 
1776
                            </param>
1777
        </member>
1778
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
1779
            <summary>
1780
            When overridden in a derived class, sets the value of the component to a different value.
1781
            </summary>
1782
            <param name="component">The component with the property value that is to be set. 
1783
                            </param><param name="value">The new value. 
1784
                            </param>
1785
        </member>
1786
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
1787
            <summary>
1788
            When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
1789
            </summary>
1790
            <returns>
1791
            true if the property should be persisted; otherwise, false.
1792
            </returns>
1793
            <param name="component">The component with the property to be examined for persistence. 
1794
                            </param>
1795
        </member>
1796
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
1797
            <summary>
1798
            When overridden in a derived class, gets the type of the component this property is bound to.
1799
            </summary>
1800
            <returns>
1801
            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.
1802
            </returns>
1803
        </member>
1804
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
1805
            <summary>
1806
            When overridden in a derived class, gets a value indicating whether this property is read-only.
1807
            </summary>
1808
            <returns>
1809
            true if the property is read-only; otherwise, false.
1810
            </returns>
1811
        </member>
1812
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
1813
            <summary>
1814
            When overridden in a derived class, gets the type of the property.
1815
            </summary>
1816
            <returns>
1817
            A <see cref="T:System.Type"/> that represents the type of the property.
1818
            </returns>
1819
        </member>
1820
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
1821
            <summary>
1822
            Gets the hash code for the name of the member.
1823
            </summary>
1824
            <value></value>
1825
            <returns>
1826
            The hash code for the name of the member.
1827
            </returns>
1828
        </member>
1829
        <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">
1830
            <summary>
1831
            Specifies the settings used when merging JSON.
1832
            </summary>
1833
        </member>
1834
        <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">
1835
            <summary>
1836
            Gets or sets the method used when merging JSON arrays.
1837
            </summary>
1838
            <value>The method used when merging JSON arrays.</value>
1839
        </member>
1840
        <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
1841
            <summary>
1842
            Specifies how JSON arrays are merged together.
1843
            </summary>
1844
        </member>
1845
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">
1846
            <summary>Concatenate arrays.</summary>
1847
        </member>
1848
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">
1849
            <summary>Union arrays, skipping items that already exist.</summary>
1850
        </member>
1851
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">
1852
            <summary>Replace all array items.</summary>
1853
        </member>
1854
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">
1855
            <summary>Merge array items together, matched by index.</summary>
1856
        </member>
1857
        <member name="T:Newtonsoft.Json.MetadataPropertyHandling">
1858
            <summary>
1859
            Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1860
            </summary>
1861
        </member>
1862
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">
1863
            <summary>
1864
            Read metadata properties located at the start of a JSON object.
1865
            </summary>
1866
        </member>
1867
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">
1868
            <summary>
1869
            Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
1870
            </summary>
1871
        </member>
1872
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">
1873
            <summary>
1874
            Do not try to read metadata properties.
1875
            </summary>
1876
        </member>
1877
        <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">
1878
            <summary>
1879
            Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.
1880
            </summary>
1881
        </member>
1882
        <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
1883
            <summary>
1884
            Represents a trace writer.
1885
            </summary>
1886
        </member>
1887
        <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1888
            <summary>
1889
            Writes the specified trace level, message and optional exception.
1890
            </summary>
1891
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1892
            <param name="message">The trace message.</param>
1893
            <param name="ex">The trace exception. This parameter is optional.</param>
1894
        </member>
1895
        <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
1896
            <summary>
1897
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1898
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1899
            <code>Warning</code> and <code>Error</code> messages.
1900
            </summary>
1901
            <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>
1902
        </member>
1903
        <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1904
            <summary>
1905
            Writes the specified trace level, message and optional exception.
1906
            </summary>
1907
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1908
            <param name="message">The trace message.</param>
1909
            <param name="ex">The trace exception. This parameter is optional.</param>
1910
        </member>
1911
        <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">
1912
            <summary>
1913
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1914
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1915
            <code>Warning</code> and <code>Error</code> messages.
1916
            </summary>
1917
            <value>
1918
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1919
            </value>
1920
        </member>
1921
        <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
1922
            <summary>
1923
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1924
            </summary>
1925
        </member>
1926
        <member name="T:Newtonsoft.Json.Serialization.JsonContract">
1927
            <summary>
1928
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1929
            </summary>
1930
        </member>
1931
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
1932
            <summary>
1933
            Gets the underlying type for the contract.
1934
            </summary>
1935
            <value>The underlying type for the contract.</value>
1936
        </member>
1937
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
1938
            <summary>
1939
            Gets or sets the type created during deserialization.
1940
            </summary>
1941
            <value>The type created during deserialization.</value>
1942
        </member>
1943
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
1944
            <summary>
1945
            Gets or sets whether this type contract is serialized as a reference.
1946
            </summary>
1947
            <value>Whether this type contract is serialized as a reference.</value>
1948
        </member>
1949
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
1950
            <summary>
1951
            Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for this contract.
1952
            </summary>
1953
            <value>The converter.</value>
1954
        </member>
1955
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">
1956
            <summary>
1957
            Gets or sets all methods called immediately after deserialization of the object.
1958
            </summary>
1959
            <value>The methods called immediately after deserialization of the object.</value>
1960
        </member>
1961
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">
1962
            <summary>
1963
            Gets or sets all methods called during deserialization of the object.
1964
            </summary>
1965
            <value>The methods called during deserialization of the object.</value>
1966
        </member>
1967
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">
1968
            <summary>
1969
            Gets or sets all methods called after serialization of the object graph.
1970
            </summary>
1971
            <value>The methods called after serialization of the object graph.</value>
1972
        </member>
1973
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">
1974
            <summary>
1975
            Gets or sets all methods called before serialization of the object.
1976
            </summary>
1977
            <value>The methods called before serialization of the object.</value>
1978
        </member>
1979
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">
1980
            <summary>
1981
            Gets or sets all method called when an error is thrown during the serialization of the object.
1982
            </summary>
1983
            <value>The methods called when an error is thrown during the serialization of the object.</value>
1984
        </member>
1985
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized">
1986
            <summary>
1987
            Gets or sets the method called immediately after deserialization of the object.
1988
            </summary>
1989
            <value>The method called immediately after deserialization of the object.</value>
1990
        </member>
1991
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing">
1992
            <summary>
1993
            Gets or sets the method called during deserialization of the object.
1994
            </summary>
1995
            <value>The method called during deserialization of the object.</value>
1996
        </member>
1997
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized">
1998
            <summary>
1999
            Gets or sets the method called after serialization of the object graph.
2000
            </summary>
2001
            <value>The method called after serialization of the object graph.</value>
2002
        </member>
2003
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing">
2004
            <summary>
2005
            Gets or sets the method called before serialization of the object.
2006
            </summary>
2007
            <value>The method called before serialization of the object.</value>
2008
        </member>
2009
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError">
2010
            <summary>
2011
            Gets or sets the method called when an error is thrown during the serialization of the object.
2012
            </summary>
2013
            <value>The method called when an error is thrown during the serialization of the object.</value>
2014
        </member>
2015
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
2016
            <summary>
2017
            Gets or sets the default creator method used to create the object.
2018
            </summary>
2019
            <value>The default creator method used to create the object.</value>
2020
        </member>
2021
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
2022
            <summary>
2023
            Gets or sets a value indicating whether the default creator is non public.
2024
            </summary>
2025
            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
2026
        </member>
2027
        <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
2028
            <summary>
2029
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
2030
            </summary>
2031
            <param name="underlyingType">The underlying type for the contract.</param>
2032
        </member>
2033
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
2034
            <summary>
2035
            Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2036
            </summary>
2037
            <value>The converter.</value>
2038
        </member>
2039
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
2040
            <summary>
2041
            Gets or sets a value indicating whether the collection items preserve object references.
2042
            </summary>
2043
            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
2044
        </member>
2045
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
2046
            <summary>
2047
            Gets or sets the collection item reference loop handling.
2048
            </summary>
2049
            <value>The reference loop handling.</value>
2050
        </member>
2051
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
2052
            <summary>
2053
            Gets or sets the collection item type name handling.
2054
            </summary>
2055
            <value>The type name handling.</value>
2056
        </member>
2057
        <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
2058
            <summary>
2059
            Represents a trace writer that writes to memory. When the trace message limit is
2060
            reached then old trace messages will be removed as new messages are added.
2061
            </summary>
2062
        </member>
2063
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
2064
            <summary>
2065
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.
2066
            </summary>
2067
        </member>
2068
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
2069
            <summary>
2070
            Writes the specified trace level, message and optional exception.
2071
            </summary>
2072
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
2073
            <param name="message">The trace message.</param>
2074
            <param name="ex">The trace exception. This parameter is optional.</param>
2075
        </member>
2076
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
2077
            <summary>
2078
            Returns an enumeration of the most recent trace messages.
2079
            </summary>
2080
            <returns>An enumeration of the most recent trace messages.</returns>
2081
        </member>
2082
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
2083
            <summary>
2084
            Returns a <see cref="T:System.String"/> of the most recent trace messages.
2085
            </summary>
2086
            <returns>
2087
            A <see cref="T:System.String"/> of the most recent trace messages.
2088
            </returns>
2089
        </member>
2090
        <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
2091
            <summary>
2092
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
2093
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
2094
            <code>Warning</code> and <code>Error</code> messages.
2095
            </summary>
2096
            <value>
2097
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
2098
            </value>
2099
        </member>
2100
        <member name="T:Newtonsoft.Json.IJsonLineInfo">
2101
            <summary>
2102
            Provides an interface to enable a class to return line and position information.
2103
            </summary>
2104
        </member>
2105
        <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
2106
            <summary>
2107
            Gets a value indicating whether the class can return line information.
2108
            </summary>
2109
            <returns>
2110
                    <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
2111
            </returns>
2112
        </member>
2113
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
2114
            <summary>
2115
            Gets the current line number.
2116
            </summary>
2117
            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>
2118
        </member>
2119
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
2120
            <summary>
2121
            Gets the current line position.
2122
            </summary>
2123
            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>
2124
        </member>
2125
        <member name="T:Newtonsoft.Json.StringEscapeHandling">
2126
            <summary>
2127
            Specifies how strings are escaped when writing JSON text.
2128
            </summary>
2129
        </member>
2130
        <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
2131
            <summary>
2132
            Only control characters (e.g. newline) are escaped.
2133
            </summary>
2134
        </member>
2135
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
2136
            <summary>
2137
            All non-ASCII and control characters (e.g. newline) are escaped.
2138
            </summary>
2139
        </member>
2140
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
2141
            <summary>
2142
            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.
2143
            </summary>
2144
        </member>
2145
        <member name="T:Newtonsoft.Json.Linq.JRaw">
2146
            <summary>
2147
            Represents a raw JSON string.
2148
            </summary>
2149
        </member>
2150
        <member name="T:Newtonsoft.Json.Linq.JValue">
2151
            <summary>
2152
            Represents a value in JSON (string, integer, date, etc).
2153
            </summary>
2154
        </member>
2155
        <member name="T:Newtonsoft.Json.Linq.JToken">
2156
            <summary>
2157
            Represents an abstract JSON token.
2158
            </summary>
2159
        </member>
2160
        <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
2161
            <summary>
2162
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
2163
            </summary>
2164
            <typeparam name="T">The type of token</typeparam>
2165
        </member>
2166
        <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
2167
            <summary>
2168
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
2169
            </summary>
2170
            <value></value>
2171
        </member>
2172
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
2173
            <summary>
2174
            Compares the values of two tokens, including the values of all descendant tokens.
2175
            </summary>
2176
            <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2177
            <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2178
            <returns>true if the tokens are equal; otherwise false.</returns>
2179
        </member>
2180
        <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
2181
            <summary>
2182
            Adds the specified content immediately after this token.
2183
            </summary>
2184
            <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
2185
        </member>
2186
        <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
2187
            <summary>
2188
            Adds the specified content immediately before this token.
2189
            </summary>
2190
            <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
2191
        </member>
2192
        <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
2193
            <summary>
2194
            Returns a collection of the ancestor tokens of this token.
2195
            </summary>
2196
            <returns>A collection of the ancestor tokens of this token.</returns>
2197
        </member>
2198
        <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
2199
            <summary>
2200
            Returns a collection of the sibling tokens after this token, in document order.
2201
            </summary>
2202
            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
2203
        </member>
2204
        <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
2205
            <summary>
2206
            Returns a collection of the sibling tokens before this token, in document order.
2207
            </summary>
2208
            <returns>A collection of the sibling tokens before this token, in document order.</returns>
2209
        </member>
2210
        <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
2211
            <summary>
2212
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
2213
            </summary>
2214
            <typeparam name="T">The type to convert the token to.</typeparam>
2215
            <param name="key">The token key.</param>
2216
            <returns>The converted token value.</returns>
2217
        </member>
2218
        <member name="M:Newtonsoft.Json.Linq.JToken.Children">
2219
            <summary>
2220
            Returns a collection of the child tokens of this token, in document order.
2221
            </summary>
2222
            <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>
2223
        </member>
2224
        <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
2225
            <summary>
2226
            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
2227
            </summary>
2228
            <typeparam name="T">The type to filter the child tokens on.</typeparam>
2229
            <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>
2230
        </member>
2231
        <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
2232
            <summary>
2233
            Returns a collection of the child values of this token, in document order.
2234
            </summary>
2235
            <typeparam name="T">The type to convert the values to.</typeparam>
2236
            <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>
2237
        </member>
2238
        <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
2239
            <summary>
2240
            Removes this token from its parent.
2241
            </summary>
2242
        </member>
2243
        <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
2244
            <summary>
2245
            Replaces this token with the specified token.
2246
            </summary>
2247
            <param name="value">The value.</param>
2248
        </member>
2249
        <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
2250
            <summary>
2251
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2252
            </summary>
2253
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
2254
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2255
        </member>
2256
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
2257
            <summary>
2258
            Returns the indented JSON for this token.
2259
            </summary>
2260
            <returns>
2261
            The indented JSON for this token.
2262
            </returns>
2263
        </member>
2264
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
2265
            <summary>
2266
            Returns the JSON for this token using the given formatting and converters.
2267
            </summary>
2268
            <param name="formatting">Indicates how the output is formatted.</param>
2269
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2270
            <returns>The JSON for this token using the given formatting and converters.</returns>
2271
        </member>
2272
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
2273
            <summary>
2274
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
2275
            </summary>
2276
            <param name="value">The value.</param>
2277
            <returns>The result of the conversion.</returns>
2278
        </member>
2279
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
2280
            <summary>
2281
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>.
2282
            </summary>
2283
            <param name="value">The value.</param>
2284
            <returns>The result of the conversion.</returns>
2285
        </member>
2286
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
2287
            <summary>
2288
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2289
            </summary>
2290
            <param name="value">The value.</param>
2291
            <returns>The result of the conversion.</returns>
2292
        </member>
2293
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
2294
            <summary>
2295
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>.
2296
            </summary>
2297
            <param name="value">The value.</param>
2298
            <returns>The result of the conversion.</returns>
2299
        </member>
2300
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
2301
            <summary>
2302
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2303
            </summary>
2304
            <param name="value">The value.</param>
2305
            <returns>The result of the conversion.</returns>
2306
        </member>
2307
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">
2308
            <summary>
2309
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2310
            </summary>
2311
            <param name="value">The value.</param>
2312
            <returns>The result of the conversion.</returns>
2313
        </member>
2314
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
2315
            <summary>
2316
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2317
            </summary>
2318
            <param name="value">The value.</param>
2319
            <returns>The result of the conversion.</returns>
2320
        </member>
2321
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
2322
            <summary>
2323
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2324
            </summary>
2325
            <param name="value">The value.</param>
2326
            <returns>The result of the conversion.</returns>
2327
        </member>
2328
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
2329
            <summary>
2330
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2331
            </summary>
2332
            <param name="value">The value.</param>
2333
            <returns>The result of the conversion.</returns>
2334
        </member>
2335
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
2336
            <summary>
2337
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
2338
            </summary>
2339
            <param name="value">The value.</param>
2340
            <returns>The result of the conversion.</returns>
2341
        </member>
2342
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
2343
            <summary>
2344
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
2345
            </summary>
2346
            <param name="value">The value.</param>
2347
            <returns>The result of the conversion.</returns>
2348
        </member>
2349
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
2350
            <summary>
2351
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
2352
            </summary>
2353
            <param name="value">The value.</param>
2354
            <returns>The result of the conversion.</returns>
2355
        </member>
2356
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
2357
            <summary>
2358
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.
2359
            </summary>
2360
            <param name="value">The value.</param>
2361
            <returns>The result of the conversion.</returns>
2362
        </member>
2363
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
2364
            <summary>
2365
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.
2366
            </summary>
2367
            <param name="value">The value.</param>
2368
            <returns>The result of the conversion.</returns>
2369
        </member>
2370
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">
2371
            <summary>
2372
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.
2373
            </summary>
2374
            <param name="value">The value.</param>
2375
            <returns>The result of the conversion.</returns>
2376
        </member>
2377
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
2378
            <summary>
2379
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2380
            </summary>
2381
            <param name="value">The value.</param>
2382
            <returns>The result of the conversion.</returns>
2383
        </member>
2384
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
2385
            <summary>
2386
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2387
            </summary>
2388
            <param name="value">The value.</param>
2389
            <returns>The result of the conversion.</returns>
2390
        </member>
2391
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
2392
            <summary>
2393
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2394
            </summary>
2395
            <param name="value">The value.</param>
2396
            <returns>The result of the conversion.</returns>
2397
        </member>
2398
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
2399
            <summary>
2400
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2401
            </summary>
2402
            <param name="value">The value.</param>
2403
            <returns>The result of the conversion.</returns>
2404
        </member>
2405
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">
2406
            <summary>
2407
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2408
            </summary>
2409
            <param name="value">The value.</param>
2410
            <returns>The result of the conversion.</returns>
2411
        </member>
2412
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
2413
            <summary>
2414
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>.
2415
            </summary>
2416
            <param name="value">The value.</param>
2417
            <returns>The result of the conversion.</returns>
2418
        </member>
2419
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
2420
            <summary>
2421
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2422
            </summary>
2423
            <param name="value">The value.</param>
2424
            <returns>The result of the conversion.</returns>
2425
        </member>
2426
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
2427
            <summary>
2428
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2429
            </summary>
2430
            <param name="value">The value.</param>
2431
            <returns>The result of the conversion.</returns>
2432
        </member>
2433
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
2434
            <summary>
2435
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
2436
            </summary>
2437
            <param name="value">The value.</param>
2438
            <returns>The result of the conversion.</returns>
2439
        </member>
2440
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
2441
            <summary>
2442
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2443
            </summary>
2444
            <param name="value">The value.</param>
2445
            <returns>The result of the conversion.</returns>
2446
        </member>
2447
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
2448
            <summary>
2449
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2450
            </summary>
2451
            <param name="value">The value.</param>
2452
            <returns>The result of the conversion.</returns>
2453
        </member>
2454
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
2455
            <summary>
2456
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
2457
            </summary>
2458
            <param name="value">The value.</param>
2459
            <returns>The result of the conversion.</returns>
2460
        </member>
2461
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
2462
            <summary>
2463
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
2464
            </summary>
2465
            <param name="value">The value.</param>
2466
            <returns>The result of the conversion.</returns>
2467
        </member>
2468
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
2469
            <summary>
2470
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
2471
            </summary>
2472
            <param name="value">The value.</param>
2473
            <returns>The result of the conversion.</returns>
2474
        </member>
2475
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
2476
            <summary>
2477
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
2478
            </summary>
2479
            <param name="value">The value.</param>
2480
            <returns>The result of the conversion.</returns>
2481
        </member>
2482
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
2483
            <summary>
2484
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
2485
            </summary>
2486
            <param name="value">The value.</param>
2487
            <returns>The result of the conversion.</returns>
2488
        </member>
2489
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
2490
            <summary>
2491
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte[]"/>.
2492
            </summary>
2493
            <param name="value">The value.</param>
2494
            <returns>The result of the conversion.</returns>
2495
        </member>
2496
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
2497
            <summary>
2498
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2499
            </summary>
2500
            <param name="value">The value.</param>
2501
            <returns>The result of the conversion.</returns>
2502
        </member>
2503
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
2504
            <summary>
2505
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2506
            </summary>
2507
            <param name="value">The value.</param>
2508
            <returns>The result of the conversion.</returns>
2509
        </member>
2510
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
2511
            <summary>
2512
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2513
            </summary>
2514
            <param name="value">The value.</param>
2515
            <returns>The result of the conversion.</returns>
2516
        </member>
2517
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
2518
            <summary>
2519
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2520
            </summary>
2521
            <param name="value">The value.</param>
2522
            <returns>The result of the conversion.</returns>
2523
        </member>
2524
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
2525
            <summary>
2526
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.
2527
            </summary>
2528
            <param name="value">The value.</param>
2529
            <returns>The result of the conversion.</returns>
2530
        </member>
2531
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
2532
            <summary>
2533
            Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2534
            </summary>
2535
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2536
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2537
        </member>
2538
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">
2539
            <summary>
2540
            Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2541
            </summary>
2542
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2543
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2544
        </member>
2545
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">
2546
            <summary>
2547
            Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2548
            </summary>
2549
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2550
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2551
        </member>
2552
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">
2553
            <summary>
2554
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2555
            </summary>
2556
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2557
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2558
        </member>
2559
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">
2560
            <summary>
2561
            Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2562
            </summary>
2563
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2564
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2565
        </member>
2566
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">
2567
            <summary>
2568
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2569
            </summary>
2570
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2571
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2572
        </member>
2573
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
2574
            <summary>
2575
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2576
            </summary>
2577
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2578
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2579
        </member>
2580
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
2581
            <summary>
2582
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2583
            </summary>
2584
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2585
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2586
        </member>
2587
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
2588
            <summary>
2589
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2590
            </summary>
2591
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2592
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2593
        </member>
2594
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">
2595
            <summary>
2596
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2597
            </summary>
2598
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2599
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2600
        </member>
2601
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
2602
            <summary>
2603
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2604
            </summary>
2605
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2606
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2607
        </member>
2608
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
2609
            <summary>
2610
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2611
            </summary>
2612
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2613
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2614
        </member>
2615
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
2616
            <summary>
2617
            Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2618
            </summary>
2619
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2620
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2621
        </member>
2622
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
2623
            <summary>
2624
            Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2625
            </summary>
2626
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2627
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2628
        </member>
2629
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
2630
            <summary>
2631
            Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2632
            </summary>
2633
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2634
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2635
        </member>
2636
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
2637
            <summary>
2638
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2639
            </summary>
2640
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2641
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2642
        </member>
2643
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
2644
            <summary>
2645
            Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2646
            </summary>
2647
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2648
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2649
        </member>
2650
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
2651
            <summary>
2652
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2653
            </summary>
2654
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2655
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2656
        </member>
2657
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
2658
            <summary>
2659
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2660
            </summary>
2661
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2662
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2663
        </member>
2664
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
2665
            <summary>
2666
            Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2667
            </summary>
2668
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2669
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2670
        </member>
2671
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
2672
            <summary>
2673
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2674
            </summary>
2675
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2676
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2677
        </member>
2678
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
2679
            <summary>
2680
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2681
            </summary>
2682
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2683
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2684
        </member>
2685
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
2686
            <summary>
2687
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2688
            </summary>
2689
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2690
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2691
        </member>
2692
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
2693
            <summary>
2694
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2695
            </summary>
2696
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2697
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2698
        </member>
2699
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
2700
            <summary>
2701
            Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2702
            </summary>
2703
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2704
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2705
        </member>
2706
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
2707
            <summary>
2708
            Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2709
            </summary>
2710
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2711
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2712
        </member>
2713
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
2714
            <summary>
2715
            Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2716
            </summary>
2717
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2718
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2719
        </member>
2720
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
2721
            <summary>
2722
            Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2723
            </summary>
2724
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2725
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2726
        </member>
2727
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
2728
            <summary>
2729
            Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2730
            </summary>
2731
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2732
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2733
        </member>
2734
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
2735
            <summary>
2736
            Performs an implicit conversion from <see cref="T:System.Byte[]"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2737
            </summary>
2738
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2739
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2740
        </member>
2741
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
2742
            <summary>
2743
            Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2744
            </summary>
2745
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2746
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2747
        </member>
2748
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
2749
            <summary>
2750
            Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2751
            </summary>
2752
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2753
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2754
        </member>
2755
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
2756
            <summary>
2757
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2758
            </summary>
2759
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2760
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2761
        </member>
2762
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
2763
            <summary>
2764
            Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2765
            </summary>
2766
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2767
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2768
        </member>
2769
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
2770
            <summary>
2771
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2772
            </summary>
2773
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2774
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2775
        </member>
2776
        <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
2777
            <summary>
2778
            Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
2779
            </summary>
2780
            <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
2781
        </member>
2782
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
2783
            <summary>
2784
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
2785
            </summary>
2786
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
2787
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
2788
        </member>
2789
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
2790
            <summary>
2791
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2792
            </summary>
2793
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
2794
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
2795
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
2796
        </member>
2797
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
2798
            <summary>
2799
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2800
            </summary>
2801
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
2802
            <returns>The new object created from the JSON value.</returns>
2803
        </member>
2804
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
2805
            <summary>
2806
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2807
            </summary>
2808
            <param name="objectType">The object type that the token will be deserialized to.</param>
2809
            <returns>The new object created from the JSON value.</returns>
2810
        </member>
2811
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
2812
            <summary>
2813
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2814
            </summary>
2815
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
2816
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
2817
            <returns>The new object created from the JSON value.</returns>
2818
        </member>
2819
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
2820
            <summary>
2821
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2822
            </summary>
2823
            <param name="objectType">The object type that the token will be deserialized to.</param>
2824
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
2825
            <returns>The new object created from the JSON value.</returns>
2826
        </member>
2827
        <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
2828
            <summary>
2829
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
2830
            </summary>
2831
            <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>
2832
            <returns>
2833
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
2834
            that were read from the reader. The runtime type of the token is determined
2835
            by the token type of the first token encountered in the reader.
2836
            </returns>
2837
        </member>
2838
        <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
2839
            <summary>
2840
            Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
2841
            </summary>
2842
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
2843
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
2844
        </member>
2845
        <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
2846
            <summary>
2847
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
2848
            </summary>
2849
            <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>
2850
            <returns>
2851
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
2852
            that were read from the reader. The runtime type of the token is determined
2853
            by the token type of the first token encountered in the reader.
2854
            </returns>
2855
        </member>
2856
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
2857
            <summary>
2858
            Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
2859
            </summary>
2860
            <param name="path">
2861
            A <see cref="T:System.String"/> that contains a JPath expression.
2862
            </param>
2863
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or null.</returns>
2864
        </member>
2865
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
2866
            <summary>
2867
            Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
2868
            </summary>
2869
            <param name="path">
2870
            A <see cref="T:System.String"/> that contains a JPath expression.
2871
            </param>
2872
            <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>
2873
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
2874
        </member>
2875
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
2876
            <summary>
2877
            Selects a collection of elements using a JPath expression.
2878
            </summary>
2879
            <param name="path">
2880
            A <see cref="T:System.String"/> that contains a JPath expression.
2881
            </param>
2882
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
2883
        </member>
2884
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">
2885
            <summary>
2886
            Selects a collection of elements using a JPath expression.
2887
            </summary>
2888
            <param name="path">
2889
            A <see cref="T:System.String"/> that contains a JPath expression.
2890
            </param>
2891
            <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>
2892
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
2893
        </member>
2894
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
2895
            <summary>
2896
            Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
2897
            </summary>
2898
            <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
2899
        </member>
2900
        <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
2901
            <summary>
2902
            Gets a comparer that can compare two tokens for value equality.
2903
            </summary>
2904
            <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
2905
        </member>
2906
        <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
2907
            <summary>
2908
            Gets or sets the parent.
2909
            </summary>
2910
            <value>The parent.</value>
2911
        </member>
2912
        <member name="P:Newtonsoft.Json.Linq.JToken.Root">
2913
            <summary>
2914
            Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2915
            </summary>
2916
            <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2917
        </member>
2918
        <member name="P:Newtonsoft.Json.Linq.JToken.Type">
2919
            <summary>
2920
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2921
            </summary>
2922
            <value>The type.</value>
2923
        </member>
2924
        <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
2925
            <summary>
2926
            Gets a value indicating whether this token has child tokens.
2927
            </summary>
2928
            <value>
2929
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
2930
            </value>
2931
        </member>
2932
        <member name="P:Newtonsoft.Json.Linq.JToken.Next">
2933
            <summary>
2934
            Gets the next sibling token of this node.
2935
            </summary>
2936
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
2937
        </member>
2938
        <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
2939
            <summary>
2940
            Gets the previous sibling token of this node.
2941
            </summary>
2942
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
2943
        </member>
2944
        <member name="P:Newtonsoft.Json.Linq.JToken.Path">
2945
            <summary>
2946
            Gets the path of the JSON token. 
2947
            </summary>
2948
        </member>
2949
        <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
2950
            <summary>
2951
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
2952
            </summary>
2953
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
2954
        </member>
2955
        <member name="P:Newtonsoft.Json.Linq.JToken.First">
2956
            <summary>
2957
            Get the first child token of this token.
2958
            </summary>
2959
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2960
        </member>
2961
        <member name="P:Newtonsoft.Json.Linq.JToken.Last">
2962
            <summary>
2963
            Get the last child token of this token.
2964
            </summary>
2965
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2966
        </member>
2967
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
2968
            <summary>
2969
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
2970
            </summary>
2971
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
2972
        </member>
2973
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
2974
            <summary>
2975
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2976
            </summary>
2977
            <param name="value">The value.</param>
2978
        </member>
2979
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
2980
            <summary>
2981
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2982
            </summary>
2983
            <param name="value">The value.</param>
2984
        </member>
2985
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
2986
            <summary>
2987
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2988
            </summary>
2989
            <param name="value">The value.</param>
2990
        </member>
2991
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
2992
            <summary>
2993
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2994
            </summary>
2995
            <param name="value">The value.</param>
2996
        </member>
2997
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
2998
            <summary>
2999
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3000
            </summary>
3001
            <param name="value">The value.</param>
3002
        </member>
3003
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
3004
            <summary>
3005
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3006
            </summary>
3007
            <param name="value">The value.</param>
3008
        </member>
3009
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
3010
            <summary>
3011
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3012
            </summary>
3013
            <param name="value">The value.</param>
3014
        </member>
3015
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTimeOffset)">
3016
            <summary>
3017
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3018
            </summary>
3019
            <param name="value">The value.</param>
3020
        </member>
3021
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
3022
            <summary>
3023
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3024
            </summary>
3025
            <param name="value">The value.</param>
3026
        </member>
3027
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
3028
            <summary>
3029
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3030
            </summary>
3031
            <param name="value">The value.</param>
3032
        </member>
3033
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
3034
            <summary>
3035
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3036
            </summary>
3037
            <param name="value">The value.</param>
3038
        </member>
3039
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
3040
            <summary>
3041
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3042
            </summary>
3043
            <param name="value">The value.</param>
3044
        </member>
3045
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
3046
            <summary>
3047
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3048
            </summary>
3049
            <param name="value">The value.</param>
3050
        </member>
3051
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
3052
            <summary>
3053
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3054
            </summary>
3055
            <param name="value">The value.</param>
3056
        </member>
3057
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
3058
            <summary>
3059
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
3060
            </summary>
3061
            <param name="value">The value.</param>
3062
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
3063
        </member>
3064
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
3065
            <summary>
3066
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
3067
            </summary>
3068
            <param name="value">The value.</param>
3069
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
3070
        </member>
3071
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">
3072
            <summary>
3073
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
3074
            </summary>
3075
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
3076
        </member>
3077
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">
3078
            <summary>
3079
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
3080
            </summary>
3081
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
3082
        </member>
3083
        <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
3084
            <summary>
3085
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3086
            </summary>
3087
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
3088
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
3089
        </member>
3090
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
3091
            <summary>
3092
            Indicates whether the current object is equal to another object of the same type.
3093
            </summary>
3094
            <returns>
3095
            true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.
3096
            </returns>
3097
            <param name="other">An object to compare with this object.</param>
3098
        </member>
3099
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
3100
            <summary>
3101
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
3102
            </summary>
3103
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
3104
            <returns>
3105
            true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
3106
            </returns>
3107
            <exception cref="T:System.NullReferenceException">
3108
            The <paramref name="obj"/> parameter is null.
3109
            </exception>
3110
        </member>
3111
        <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
3112
            <summary>
3113
            Serves as a hash function for a particular type.
3114
            </summary>
3115
            <returns>
3116
            A hash code for the current <see cref="T:System.Object"/>.
3117
            </returns>
3118
        </member>
3119
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
3120
            <summary>
3121
            Returns a <see cref="T:System.String"/> that represents this instance.
3122
            </summary>
3123
            <returns>
3124
            A <see cref="T:System.String"/> that represents this instance.
3125
            </returns>
3126
        </member>
3127
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
3128
            <summary>
3129
            Returns a <see cref="T:System.String"/> that represents this instance.
3130
            </summary>
3131
            <param name="format">The format.</param>
3132
            <returns>
3133
            A <see cref="T:System.String"/> that represents this instance.
3134
            </returns>
3135
        </member>
3136
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
3137
            <summary>
3138
            Returns a <see cref="T:System.String"/> that represents this instance.
3139
            </summary>
3140
            <param name="formatProvider">The format provider.</param>
3141
            <returns>
3142
            A <see cref="T:System.String"/> that represents this instance.
3143
            </returns>
3144
        </member>
3145
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
3146
            <summary>
3147
            Returns a <see cref="T:System.String"/> that represents this instance.
3148
            </summary>
3149
            <param name="format">The format.</param>
3150
            <param name="formatProvider">The format provider.</param>
3151
            <returns>
3152
            A <see cref="T:System.String"/> that represents this instance.
3153
            </returns>
3154
        </member>
3155
        <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
3156
            <summary>
3157
            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.
3158
            </summary>
3159
            <param name="obj">An object to compare with this instance.</param>
3160
            <returns>
3161
            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
3162
            Value
3163
            Meaning
3164
            Less than zero
3165
            This instance is less than <paramref name="obj"/>.
3166
            Zero
3167
            This instance is equal to <paramref name="obj"/>.
3168
            Greater than zero
3169
            This instance is greater than <paramref name="obj"/>.
3170
            </returns>
3171
            <exception cref="T:System.ArgumentException">
3172
                    <paramref name="obj"/> is not the same type as this instance.
3173
            </exception>
3174
        </member>
3175
        <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
3176
            <summary>
3177
            Gets a value indicating whether this token has child tokens.
3178
            </summary>
3179
            <value>
3180
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
3181
            </value>
3182
        </member>
3183
        <member name="P:Newtonsoft.Json.Linq.JValue.Type">
3184
            <summary>
3185
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3186
            </summary>
3187
            <value>The type.</value>
3188
        </member>
3189
        <member name="P:Newtonsoft.Json.Linq.JValue.Value">
3190
            <summary>
3191
            Gets or sets the underlying token value.
3192
            </summary>
3193
            <value>The underlying token value.</value>
3194
        </member>
3195
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
3196
            <summary>
3197
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
3198
            </summary>
3199
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
3200
        </member>
3201
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
3202
            <summary>
3203
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
3204
            </summary>
3205
            <param name="rawJson">The raw json.</param>
3206
        </member>
3207
        <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
3208
            <summary>
3209
            Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
3210
            </summary>
3211
            <param name="reader">The reader.</param>
3212
            <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
3213
        </member>
3214
        <member name="T:Newtonsoft.Json.Required">
3215
            <summary>
3216
            Indicating whether a property is required.
3217
            </summary>
3218
        </member>
3219
        <member name="F:Newtonsoft.Json.Required.Default">
3220
            <summary>
3221
            The property is not required. The default state.
3222
            </summary>
3223
        </member>
3224
        <member name="F:Newtonsoft.Json.Required.AllowNull">
3225
            <summary>
3226
            The property must be defined in JSON but can be a null value.
3227
            </summary>
3228
        </member>
3229
        <member name="F:Newtonsoft.Json.Required.Always">
3230
            <summary>
3231
            The property must be defined in JSON and cannot be a null value.
3232
            </summary>
3233
        </member>
3234
        <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
3235
            <summary>
3236
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3237
            </summary>
3238
        </member>
3239
        <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
3240
            <summary>
3241
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
3242
            </summary>
3243
            <param name="underlyingType">The underlying type for the contract.</param>
3244
        </member>
3245
        <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
3246
            <summary>
3247
            Gets or sets the ISerializable object constructor.
3248
            </summary>
3249
            <value>The ISerializable object constructor.</value>
3250
        </member>
3251
        <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
3252
            <summary>
3253
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3254
            </summary>
3255
        </member>
3256
        <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
3257
            <summary>
3258
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
3259
            </summary>
3260
            <param name="underlyingType">The underlying type for the contract.</param>
3261
        </member>
3262
        <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
3263
            <summary>
3264
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3265
            </summary>
3266
        </member>
3267
        <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
3268
            <summary>
3269
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
3270
            </summary>
3271
            <param name="underlyingType">The underlying type for the contract.</param>
3272
        </member>
3273
        <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
3274
            <summary>
3275
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
3276
            </summary>
3277
        </member>
3278
        <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
3279
            <summary>
3280
            Provides methods to get and set values.
3281
            </summary>
3282
        </member>
3283
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
3284
            <summary>
3285
            Sets the value.
3286
            </summary>
3287
            <param name="target">The target to set the value on.</param>
3288
            <param name="value">The value to set on the target.</param>
3289
        </member>
3290
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
3291
            <summary>
3292
            Gets the value.
3293
            </summary>
3294
            <param name="target">The target to get the value from.</param>
3295
            <returns>The value.</returns>
3296
        </member>
3297
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
3298
            <summary>
3299
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
3300
            </summary>
3301
            <param name="memberInfo">The member info.</param>
3302
        </member>
3303
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
3304
            <summary>
3305
            Sets the value.
3306
            </summary>
3307
            <param name="target">The target to set the value on.</param>
3308
            <param name="value">The value to set on the target.</param>
3309
        </member>
3310
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
3311
            <summary>
3312
            Gets the value.
3313
            </summary>
3314
            <param name="target">The target to get the value from.</param>
3315
            <returns>The value.</returns>
3316
        </member>
3317
        <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
3318
            <summary>
3319
            Provides data for the Error event.
3320
            </summary>
3321
        </member>
3322
        <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
3323
            <summary>
3324
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
3325
            </summary>
3326
            <param name="currentObject">The current object.</param>
3327
            <param name="errorContext">The error context.</param>
3328
        </member>
3329
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
3330
            <summary>
3331
            Gets the current object the error event is being raised against.
3332
            </summary>
3333
            <value>The current object the error event is being raised against.</value>
3334
        </member>
3335
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
3336
            <summary>
3337
            Gets the error context.
3338
            </summary>
3339
            <value>The error context.</value>
3340
        </member>
3341
        <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
3342
            <summary>
3343
            Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3344
            </summary>
3345
        </member>
3346
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
3347
            <summary>
3348
            Resolves a reference to its object.
3349
            </summary>
3350
            <param name="context">The serialization context.</param>
3351
            <param name="reference">The reference to resolve.</param>
3352
            <returns>The object that</returns>
3353
        </member>
3354
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
3355
            <summary>
3356
            Gets the reference for the sepecified object.
3357
            </summary>
3358
            <param name="context">The serialization context.</param>
3359
            <param name="value">The object to get a reference for.</param>
3360
            <returns>The reference to the object.</returns>
3361
        </member>
3362
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
3363
            <summary>
3364
            Determines whether the specified object is referenced.
3365
            </summary>
3366
            <param name="context">The serialization context.</param>
3367
            <param name="value">The object to test for a reference.</param>
3368
            <returns>
3369
                    <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
3370
            </returns>
3371
        </member>
3372
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
3373
            <summary>
3374
            Adds a reference to the specified object.
3375
            </summary>
3376
            <param name="context">The serialization context.</param>
3377
            <param name="reference">The reference.</param>
3378
            <param name="value">The object to reference.</param>
3379
        </member>
3380
        <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
3381
            <summary>
3382
            Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3383
            Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable.
3384
            </summary>
3385
            <example>
3386
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References"/>       
3387
            </example>
3388
        </member>
3389
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
3390
            <summary>
3391
            Do not preserve references when serializing types.
3392
            </summary>
3393
        </member>
3394
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
3395
            <summary>
3396
            Preserve references when serializing into a JSON object structure.
3397
            </summary>
3398
        </member>
3399
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
3400
            <summary>
3401
            Preserve references when serializing into a JSON array structure.
3402
            </summary>
3403
        </member>
3404
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
3405
            <summary>
3406
            Preserve references when serializing.
3407
            </summary>
3408
        </member>
3409
        <member name="T:Newtonsoft.Json.JsonArrayAttribute">
3410
            <summary>
3411
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
3412
            </summary>
3413
        </member>
3414
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
3415
            <summary>
3416
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
3417
            </summary>
3418
        </member>
3419
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
3420
            <summary>
3421
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items
3422
            </summary>
3423
            <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
3424
        </member>
3425
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
3426
            <summary>
3427
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
3428
            </summary>
3429
            <param name="id">The container Id.</param>
3430
        </member>
3431
        <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
3432
            <summary>
3433
            Gets or sets a value indicating whether null items are allowed in the collection.
3434
            </summary>
3435
            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
3436
        </member>
3437
        <member name="T:Newtonsoft.Json.DefaultValueHandling">
3438
            <summary>
3439
            Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3440
            </summary>
3441
            <example>
3442
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class"/>
3443
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example"/>
3444
            </example>
3445
        </member>
3446
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
3447
            <summary>
3448
            Include members where the member value is the same as the member's default value when serializing objects.
3449
            Included members are written to JSON. Has no effect when deserializing.
3450
            </summary>
3451
        </member>
3452
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
3453
            <summary>
3454
            Ignore members where the member value is the same as the member's default value when serializing objects
3455
            so that is is not written to JSON.
3456
            This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,
3457
            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
3458
            placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
3459
            </summary>
3460
        </member>
3461
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
3462
            <summary>
3463
            Members with a default value but no JSON will be set to their default value when deserializing.
3464
            </summary>
3465
        </member>
3466
        <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
3467
            <summary>
3468
            Ignore members where the member value is the same as the member's default value when serializing objects
3469
            and sets members to their default value when deserializing.
3470
            </summary>
3471
        </member>
3472
        <member name="T:Newtonsoft.Json.JsonConverterAttribute">
3473
            <summary>
3474
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
3475
            </summary>
3476
        </member>
3477
        <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
3478
            <summary>
3479
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
3480
            </summary>
3481
            <param name="converterType">Type of the converter.</param>
3482
        </member>
3483
        <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
3484
            <summary>
3485
            Gets the type of the converter.
3486
            </summary>
3487
            <value>The type of the converter.</value>
3488
        </member>
3489
        <member name="T:Newtonsoft.Json.JsonObjectAttribute">
3490
            <summary>
3491
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
3492
            </summary>
3493
        </member>
3494
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
3495
            <summary>
3496
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
3497
            </summary>
3498
        </member>
3499
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
3500
            <summary>
3501
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
3502
            </summary>
3503
            <param name="memberSerialization">The member serialization.</param>
3504
        </member>
3505
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
3506
            <summary>
3507
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
3508
            </summary>
3509
            <param name="id">The container Id.</param>
3510
        </member>
3511
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
3512
            <summary>
3513
            Gets or sets the member serialization.
3514
            </summary>
3515
            <value>The member serialization.</value>
3516
        </member>
3517
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
3518
            <summary>
3519
            Gets or sets a value that indicates whether the object's properties are required.
3520
            </summary>
3521
            <value>
3522
                    A value indicating whether the object's properties are required.
3523
            </value>
3524
        </member>
3525
        <member name="T:Newtonsoft.Json.JsonSerializerSettings">
3526
            <summary>
3527
            Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
3528
            </summary>
3529
        </member>
3530
        <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
3531
            <summary>
3532
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
3533
            </summary>
3534
        </member>
3535
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
3536
            <summary>
3537
            Gets or sets how reference loops (e.g. a class referencing itself) is handled.
3538
            </summary>
3539
            <value>Reference loop handling.</value>
3540
        </member>
3541
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
3542
            <summary>
3543
            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
3544
            </summary>
3545
            <value>Missing member handling.</value>
3546
        </member>
3547
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
3548
            <summary>
3549
            Gets or sets how objects are created during deserialization.
3550
            </summary>
3551
            <value>The object creation handling.</value>
3552
        </member>
3553
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
3554
            <summary>
3555
            Gets or sets how null values are handled during serialization and deserialization.
3556
            </summary>
3557
            <value>Null value handling.</value>
3558
        </member>
3559
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
3560
            <summary>
3561
            Gets or sets how null default are handled during serialization and deserialization.
3562
            </summary>
3563
            <value>The default value handling.</value>
3564
        </member>
3565
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
3566
            <summary>
3567
            Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
3568
            </summary>
3569
            <value>The converters.</value>
3570
        </member>
3571
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
3572
            <summary>
3573
            Gets or sets how object references are preserved by the serializer.
3574
            </summary>
3575
            <value>The preserve references handling.</value>
3576
        </member>
3577
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
3578
            <summary>
3579
            Gets or sets how type name writing and reading is handled by the serializer.
3580
            </summary>
3581
            <value>The type name handling.</value>
3582
        </member>
3583
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">
3584
            <summary>
3585
            Gets or sets how metadata properties are used during deserialization.
3586
            </summary>
3587
            <value>The metadata properties handling.</value>
3588
        </member>
3589
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
3590
            <summary>
3591
            Gets or sets how a type name assembly is written and resolved by the serializer.
3592
            </summary>
3593
            <value>The type name assembly format.</value>
3594
        </member>
3595
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
3596
            <summary>
3597
            Gets or sets how constructors are used during deserialization.
3598
            </summary>
3599
            <value>The constructor handling.</value>
3600
        </member>
3601
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
3602
            <summary>
3603
            Gets or sets the contract resolver used by the serializer when
3604
            serializing .NET objects to JSON and vice versa.
3605
            </summary>
3606
            <value>The contract resolver.</value>
3607
        </member>
3608
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
3609
            <summary>
3610
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
3611
            </summary>
3612
            <value>The reference resolver.</value>
3613
        </member>
3614
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
3615
            <summary>
3616
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
3617
            </summary>
3618
            <value>The trace writer.</value>
3619
        </member>
3620
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
3621
            <summary>
3622
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
3623
            </summary>
3624
            <value>The binder.</value>
3625
        </member>
3626
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
3627
            <summary>
3628
            Gets or sets the error handler called during serialization and deserialization.
3629
            </summary>
3630
            <value>The error handler called during serialization and deserialization.</value>
3631
        </member>
3632
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
3633
            <summary>
3634
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
3635
            </summary>
3636
            <value>The context.</value>
3637
        </member>
3638
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
3639
            <summary>
3640
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
3641
            </summary>
3642
        </member>
3643
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
3644
            <summary>
3645
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
3646
            </summary>
3647
        </member>
3648
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
3649
            <summary>
3650
            Indicates how JSON text output is formatted.
3651
            </summary>
3652
        </member>
3653
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
3654
            <summary>
3655
            Get or set how dates are written to JSON text.
3656
            </summary>
3657
        </member>
3658
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
3659
            <summary>
3660
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
3661
            </summary>
3662
        </member>
3663
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
3664
            <summary>
3665
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
3666
            </summary>
3667
        </member>
3668
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
3669
            <summary>
3670
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
3671
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
3672
            are written as JSON.
3673
            </summary>
3674
        </member>
3675
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
3676
            <summary>
3677
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
3678
            </summary>
3679
        </member>
3680
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
3681
            <summary>
3682
            Get or set how strings are escaped when writing JSON text.
3683
            </summary>
3684
        </member>
3685
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
3686
            <summary>
3687
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
3688
            </summary>
3689
        </member>
3690
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
3691
            <summary>
3692
            Gets a value indicating whether there will be a check for additional content after deserializing an object.
3693
            </summary>
3694
            <value>
3695
                    <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
3696
            </value>
3697
        </member>
3698
        <member name="T:Newtonsoft.Json.JsonValidatingReader">
3699
            <summary>
3700
            Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
3701
            </summary>
3702
        </member>
3703
        <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
3704
            <summary>
3705
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
3706
            validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
3707
            </summary>
3708
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
3709
        </member>
3710
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
3711
            <summary>
3712
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3713
            </summary>
3714
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3715
        </member>
3716
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
3717
            <summary>
3718
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
3719
            </summary>
3720
            <returns>
3721
            A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null.
3722
            </returns>
3723
        </member>
3724
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
3725
            <summary>
3726
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3727
            </summary>
3728
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3729
        </member>
3730
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
3731
            <summary>
3732
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
3733
            </summary>
3734
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3735
        </member>
3736
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
3737
            <summary>
3738
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3739
            </summary>
3740
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3741
        </member>
3742
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
3743
            <summary>
3744
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3745
            </summary>
3746
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3747
        </member>
3748
        <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
3749
            <summary>
3750
            Reads the next JSON token from the stream.
3751
            </summary>
3752
            <returns>
3753
            true if the next token was read successfully; false if there are no more tokens to read.
3754
            </returns>
3755
        </member>
3756
        <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
3757
            <summary>
3758
            Sets an event handler for receiving schema validation errors.
3759
            </summary>
3760
        </member>
3761
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
3762
            <summary>
3763
            Gets the text value of the current JSON token.
3764
            </summary>
3765
            <value></value>
3766
        </member>
3767
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
3768
            <summary>
3769
            Gets the depth of the current token in the JSON document.
3770
            </summary>
3771
            <value>The depth of the current token in the JSON document.</value>
3772
        </member>
3773
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
3774
            <summary>
3775
            Gets the path of the current JSON token. 
3776
            </summary>
3777
        </member>
3778
        <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
3779
            <summary>
3780
            Gets the quotation mark character used to enclose the value of a string.
3781
            </summary>
3782
            <value></value>
3783
        </member>
3784
        <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
3785
            <summary>
3786
            Gets the type of the current JSON token.
3787
            </summary>
3788
            <value></value>
3789
        </member>
3790
        <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
3791
            <summary>
3792
            Gets the Common Language Runtime (CLR) type for the current JSON token.
3793
            </summary>
3794
            <value></value>
3795
        </member>
3796
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
3797
            <summary>
3798
            Gets or sets the schema.
3799
            </summary>
3800
            <value>The schema.</value>
3801
        </member>
3802
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
3803
            <summary>
3804
            Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
3805
            </summary>
3806
            <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
3807
        </member>
3808
        <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
3809
            <summary>
3810
            Compares tokens to determine whether they are equal.
3811
            </summary>
3812
        </member>
3813
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
3814
            <summary>
3815
            Determines whether the specified objects are equal.
3816
            </summary>
3817
            <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
3818
            <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
3819
            <returns>
3820
            true if the specified objects are equal; otherwise, false.
3821
            </returns>
3822
        </member>
3823
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
3824
            <summary>
3825
            Returns a hash code for the specified object.
3826
            </summary>
3827
            <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
3828
            <returns>A hash code for the specified object.</returns>
3829
            <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception>
3830
        </member>
3831
        <member name="T:Newtonsoft.Json.MemberSerialization">
3832
            <summary>
3833
            Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3834
            </summary>
3835
        </member>
3836
        <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
3837
            <summary>
3838
            All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
3839
            This is the default member serialization mode.
3840
            </summary>
3841
        </member>
3842
        <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
3843
            <summary>
3844
            Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/> are serialized.
3845
            This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute"/>.
3846
            </summary>
3847
        </member>
3848
        <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
3849
            <summary>
3850
            All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
3851
            This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
3852
            and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to false.
3853
            </summary>
3854
        </member>
3855
        <member name="T:Newtonsoft.Json.ObjectCreationHandling">
3856
            <summary>
3857
            Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3858
            </summary>
3859
        </member>
3860
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
3861
            <summary>
3862
            Reuse existing objects, create new objects when needed.
3863
            </summary>
3864
        </member>
3865
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
3866
            <summary>
3867
            Only reuse existing objects.
3868
            </summary>
3869
        </member>
3870
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
3871
            <summary>
3872
            Always create new objects.
3873
            </summary>
3874
        </member>
3875
        <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
3876
            <summary>
3877
            Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).
3878
            </summary>
3879
        </member>
3880
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
3881
            <summary>
3882
            Writes the JSON representation of the object.
3883
            </summary>
3884
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
3885
            <param name="value">The value.</param>
3886
            <param name="serializer">The calling serializer.</param>
3887
        </member>
3888
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
3889
            <summary>
3890
            Reads the JSON representation of the object.
3891
            </summary>
3892
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
3893
            <param name="objectType">Type of the object.</param>
3894
            <param name="existingValue">The existing value of object being read.</param>
3895
            <param name="serializer">The calling serializer.</param>
3896
            <returns>The object value.</returns>
3897
        </member>
3898
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
3899
            <summary>
3900
            Gets or sets the date time styles used when converting a date to and from JSON.
3901
            </summary>
3902
            <value>The date time styles used when converting a date to and from JSON.</value>
3903
        </member>
3904
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
3905
            <summary>
3906
            Gets or sets the date time format used when converting a date to and from JSON.
3907
            </summary>
3908
            <value>The date time format used when converting a date to and from JSON.</value>
3909
        </member>
3910
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
3911
            <summary>
3912
            Gets or sets the culture used when converting a date to and from JSON.
3913
            </summary>
3914
            <value>The culture used when converting a date to and from JSON.</value>
3915
        </member>
3916
        <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
3917
            <summary>
3918
            Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).
3919
            </summary>
3920
        </member>
3921
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
3922
            <summary>
3923
            Writes the JSON representation of the object.
3924
            </summary>
3925
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
3926
            <param name="value">The value.</param>
3927
            <param name="serializer">The calling serializer.</param>
3928
        </member>
3929
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
3930
            <summary>
3931
            Reads the JSON representation of the object.
3932
            </summary>
3933
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
3934
            <param name="objectType">Type of the object.</param>
3935
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
3936
            <param name="serializer">The calling serializer.</param>
3937
            <returns>The object value.</returns>
3938
        </member>
3939
        <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
3940
            <summary>
3941
            Converts XML to and from JSON.
3942
            </summary>
3943
        </member>
3944
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
3945
            <summary>
3946
            Writes the JSON representation of the object.
3947
            </summary>
3948
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
3949
            <param name="serializer">The calling serializer.</param>
3950
            <param name="value">The value.</param>
3951
        </member>
3952
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
3953
            <summary>
3954
            Reads the JSON representation of the object.
3955
            </summary>
3956
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
3957
            <param name="objectType">Type of the object.</param>
3958
            <param name="existingValue">The existing value of object being read.</param>
3959
            <param name="serializer">The calling serializer.</param>
3960
            <returns>The object value.</returns>
3961
        </member>
3962
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
3963
            <summary>
3964
            Checks if the attributeName is a namespace attribute.
3965
            </summary>
3966
            <param name="attributeName">Attribute name to test.</param>
3967
            <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
3968
            <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>
3969
        </member>
3970
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
3971
            <summary>
3972
            Determines whether this instance can convert the specified value type.
3973
            </summary>
3974
            <param name="valueType">Type of the value.</param>
3975
            <returns>
3976
                    <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
3977
            </returns>
3978
        </member>
3979
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
3980
            <summary>
3981
            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.
3982
            </summary>
3983
            <value>The name of the deserialize root element.</value>
3984
        </member>
3985
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
3986
            <summary>
3987
            Gets or sets a flag to indicate whether to write the Json.NET array attribute.
3988
            This attribute helps preserve arrays when converting the written XML back to JSON.
3989
            </summary>
3990
            <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>
3991
        </member>
3992
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
3993
            <summary>
3994
            Gets or sets a value indicating whether to write the root JSON object.
3995
            </summary>
3996
            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
3997
        </member>
3998
        <member name="T:Newtonsoft.Json.JsonTextReader">
3999
            <summary>
4000
            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
4001
            </summary>
4002
        </member>
4003
        <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
4004
            <summary>
4005
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
4006
            </summary>
4007
            <param name="reader">The <c>TextReader</c> containing the XML data to read.</param>
4008
        </member>
4009
        <member name="M:Newtonsoft.Json.JsonTextReader.Read">
4010
            <summary>
4011
            Reads the next JSON token from the stream.
4012
            </summary>
4013
            <returns>
4014
            true if the next token was read successfully; false if there are no more tokens to read.
4015
            </returns>
4016
        </member>
4017
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
4018
            <summary>
4019
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
4020
            </summary>
4021
            <returns>
4022
            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.
4023
            </returns>
4024
        </member>
4025
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
4026
            <summary>
4027
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4028
            </summary>
4029
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
4030
        </member>
4031
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
4032
            <summary>
4033
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4034
            </summary>
4035
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
4036
        </member>
4037
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
4038
            <summary>
4039
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
4040
            </summary>
4041
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4042
        </member>
4043
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
4044
            <summary>
4045
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4046
            </summary>
4047
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4048
        </member>
4049
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
4050
            <summary>
4051
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4052
            </summary>
4053
            <returns>A <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>
4054
        </member>
4055
        <member name="M:Newtonsoft.Json.JsonTextReader.Close">
4056
            <summary>
4057
            Changes the state to closed. 
4058
            </summary>
4059
        </member>
4060
        <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
4061
            <summary>
4062
            Gets a value indicating whether the class can return line information.
4063
            </summary>
4064
            <returns>
4065
                    <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
4066
            </returns>
4067
        </member>
4068
        <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
4069
            <summary>
4070
            Gets the current line number.
4071
            </summary>
4072
            <value>
4073
            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
4074
            </value>
4075
        </member>
4076
        <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
4077
            <summary>
4078
            Gets the current line position.
4079
            </summary>
4080
            <value>
4081
            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
4082
            </value>
4083
        </member>
4084
        <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
4085
            <summary>
4086
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
4087
            </summary>
4088
        </member>
4089
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
4090
            <summary>
4091
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
4092
            </summary>
4093
        </member>
4094
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
4095
            <summary>
4096
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
4097
            </summary>
4098
            <param name="propertyName">Name of the property.</param>
4099
        </member>
4100
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
4101
            <summary>
4102
            Gets or sets the converter used when serializing the property's collection items.
4103
            </summary>
4104
            <value>The collection's items converter.</value>
4105
        </member>
4106
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
4107
            <summary>
4108
            Gets or sets the null value handling used when serializing this property.
4109
            </summary>
4110
            <value>The null value handling.</value>
4111
        </member>
4112
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
4113
            <summary>
4114
            Gets or sets the default value handling used when serializing this property.
4115
            </summary>
4116
            <value>The default value handling.</value>
4117
        </member>
4118
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
4119
            <summary>
4120
            Gets or sets the reference loop handling used when serializing this property.
4121
            </summary>
4122
            <value>The reference loop handling.</value>
4123
        </member>
4124
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
4125
            <summary>
4126
            Gets or sets the object creation handling used when deserializing this property.
4127
            </summary>
4128
            <value>The object creation handling.</value>
4129
        </member>
4130
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
4131
            <summary>
4132
            Gets or sets the type name handling used when serializing this property.
4133
            </summary>
4134
            <value>The type name handling.</value>
4135
        </member>
4136
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
4137
            <summary>
4138
            Gets or sets whether this property's value is serialized as a reference.
4139
            </summary>
4140
            <value>Whether this property's value is serialized as a reference.</value>
4141
        </member>
4142
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
4143
            <summary>
4144
            Gets or sets the order of serialization and deserialization of a member.
4145
            </summary>
4146
            <value>The numeric order of serialization or deserialization.</value>
4147
        </member>
4148
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
4149
            <summary>
4150
            Gets or sets a value indicating whether this property is required.
4151
            </summary>
4152
            <value>
4153
                    A value indicating whether this property is required.
4154
            </value>
4155
        </member>
4156
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
4157
            <summary>
4158
            Gets or sets the name of the property.
4159
            </summary>
4160
            <value>The name of the property.</value>
4161
        </member>
4162
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
4163
            <summary>
4164
            Gets or sets the the reference loop handling used when serializing the property's collection items.
4165
            </summary>
4166
            <value>The collection's items reference loop handling.</value>
4167
        </member>
4168
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
4169
            <summary>
4170
            Gets or sets the the type name handling used when serializing the property's collection items.
4171
            </summary>
4172
            <value>The collection's items type name handling.</value>
4173
        </member>
4174
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
4175
            <summary>
4176
            Gets or sets whether this property's collection items are serialized as a reference.
4177
            </summary>
4178
            <value>Whether this property's collection items are serialized as a reference.</value>
4179
        </member>
4180
        <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
4181
            <summary>
4182
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
4183
            </summary>
4184
        </member>
4185
        <member name="T:Newtonsoft.Json.JsonTextWriter">
4186
            <summary>
4187
            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
4188
            </summary>
4189
        </member>
4190
        <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
4191
            <summary>
4192
            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>. 
4193
            </summary>
4194
            <param name="textWriter">The <c>TextWriter</c> to write to.</param>
4195
        </member>
4196
        <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
4197
            <summary>
4198
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
4199
            </summary>
4200
        </member>
4201
        <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
4202
            <summary>
4203
            Closes this stream and the underlying stream.
4204
            </summary>
4205
        </member>
4206
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
4207
            <summary>
4208
            Writes the beginning of a Json object.
4209
            </summary>
4210
        </member>
4211
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
4212
            <summary>
4213
            Writes the beginning of a Json array.
4214
            </summary>
4215
        </member>
4216
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
4217
            <summary>
4218
            Writes the start of a constructor with the given name.
4219
            </summary>
4220
            <param name="name">The name of the constructor.</param>
4221
        </member>
4222
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
4223
            <summary>
4224
            Writes the specified end token.
4225
            </summary>
4226
            <param name="token">The end token to write.</param>
4227
        </member>
4228
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
4229
            <summary>
4230
            Writes the property name of a name/value pair on a Json object.
4231
            </summary>
4232
            <param name="name">The name of the property.</param>
4233
        </member>
4234
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">
4235
            <summary>
4236
            Writes the property name of a name/value pair on a JSON object.
4237
            </summary>
4238
            <param name="name">The name of the property.</param>
4239
            <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
4240
        </member>
4241
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
4242
            <summary>
4243
            Writes indent characters.
4244
            </summary>
4245
        </member>
4246
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
4247
            <summary>
4248
            Writes the JSON value delimiter.
4249
            </summary>
4250
        </member>
4251
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
4252
            <summary>
4253
            Writes an indent space.
4254
            </summary>
4255
        </member>
4256
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">
4257
            <summary>
4258
            Writes a <see cref="T:System.Object"/> value.
4259
            An error will raised if the value cannot be written as a single JSON token.
4260
            </summary>
4261
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
4262
        </member>
4263
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
4264
            <summary>
4265
            Writes a null value.
4266
            </summary>
4267
        </member>
4268
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
4269
            <summary>
4270
            Writes an undefined value.
4271
            </summary>
4272
        </member>
4273
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
4274
            <summary>
4275
            Writes raw JSON.
4276
            </summary>
4277
            <param name="json">The raw JSON to write.</param>
4278
        </member>
4279
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
4280
            <summary>
4281
            Writes a <see cref="T:System.String"/> value.
4282
            </summary>
4283
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
4284
        </member>
4285
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
4286
            <summary>
4287
            Writes a <see cref="T:System.Int32"/> value.
4288
            </summary>
4289
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
4290
        </member>
4291
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
4292
            <summary>
4293
            Writes a <see cref="T:System.UInt32"/> value.
4294
            </summary>
4295
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
4296
        </member>
4297
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
4298
            <summary>
4299
            Writes a <see cref="T:System.Int64"/> value.
4300
            </summary>
4301
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
4302
        </member>
4303
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
4304
            <summary>
4305
            Writes a <see cref="T:System.UInt64"/> value.
4306
            </summary>
4307
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
4308
        </member>
4309
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
4310
            <summary>
4311
            Writes a <see cref="T:System.Single"/> value.
4312
            </summary>
4313
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
4314
        </member>
4315
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
4316
            <summary>
4317
            Writes a <see cref="T:System.Nullable`1"/> value.
4318
            </summary>
4319
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
4320
        </member>
4321
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
4322
            <summary>
4323
            Writes a <see cref="T:System.Double"/> value.
4324
            </summary>
4325
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
4326
        </member>
4327
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
4328
            <summary>
4329
            Writes a <see cref="T:System.Nullable`1"/> value.
4330
            </summary>
4331
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
4332
        </member>
4333
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
4334
            <summary>
4335
            Writes a <see cref="T:System.Boolean"/> value.
4336
            </summary>
4337
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
4338
        </member>
4339
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
4340
            <summary>
4341
            Writes a <see cref="T:System.Int16"/> value.
4342
            </summary>
4343
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
4344
        </member>
4345
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
4346
            <summary>
4347
            Writes a <see cref="T:System.UInt16"/> value.
4348
            </summary>
4349
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
4350
        </member>
4351
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
4352
            <summary>
4353
            Writes a <see cref="T:System.Char"/> value.
4354
            </summary>
4355
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
4356
        </member>
4357
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
4358
            <summary>
4359
            Writes a <see cref="T:System.Byte"/> value.
4360
            </summary>
4361
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
4362
        </member>
4363
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
4364
            <summary>
4365
            Writes a <see cref="T:System.SByte"/> value.
4366
            </summary>
4367
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
4368
        </member>
4369
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
4370
            <summary>
4371
            Writes a <see cref="T:System.Decimal"/> value.
4372
            </summary>
4373
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
4374
        </member>
4375
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
4376
            <summary>
4377
            Writes a <see cref="T:System.DateTime"/> value.
4378
            </summary>
4379
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
4380
        </member>
4381
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
4382
            <summary>
4383
            Writes a <see cref="T:Byte[]"/> value.
4384
            </summary>
4385
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
4386
        </member>
4387
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
4388
            <summary>
4389
            Writes a <see cref="T:System.DateTimeOffset"/> value.
4390
            </summary>
4391
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
4392
        </member>
4393
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
4394
            <summary>
4395
            Writes a <see cref="T:System.Guid"/> value.
4396
            </summary>
4397
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
4398
        </member>
4399
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
4400
            <summary>
4401
            Writes a <see cref="T:System.TimeSpan"/> value.
4402
            </summary>
4403
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
4404
        </member>
4405
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
4406
            <summary>
4407
            Writes a <see cref="T:System.Uri"/> value.
4408
            </summary>
4409
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
4410
        </member>
4411
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
4412
            <summary>
4413
            Writes out a comment <code>/*...*/</code> containing the specified text. 
4414
            </summary>
4415
            <param name="text">Text to place inside the comment.</param>
4416
        </member>
4417
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
4418
            <summary>
4419
            Writes out the given white space.
4420
            </summary>
4421
            <param name="ws">The string of white space characters.</param>
4422
        </member>
4423
        <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
4424
            <summary>
4425
            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>.
4426
            </summary>
4427
        </member>
4428
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
4429
            <summary>
4430
            Gets or sets which character to use to quote attribute values.
4431
            </summary>
4432
        </member>
4433
        <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
4434
            <summary>
4435
            Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
4436
            </summary>
4437
        </member>
4438
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
4439
            <summary>
4440
            Gets or sets a value indicating whether object names will be surrounded with quotes.
4441
            </summary>
4442
        </member>
4443
        <member name="T:Newtonsoft.Json.JsonWriterException">
4444
            <summary>
4445
            The exception thrown when an error occurs while reading Json text.
4446
            </summary>
4447
        </member>
4448
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
4449
            <summary>
4450
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
4451
            </summary>
4452
        </member>
4453
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
4454
            <summary>
4455
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
4456
            with a specified error message.
4457
            </summary>
4458
            <param name="message">The error message that explains the reason for the exception.</param>
4459
        </member>
4460
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
4461
            <summary>
4462
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
4463
            with a specified error message and a reference to the inner exception that is the cause of this exception.
4464
            </summary>
4465
            <param name="message">The error message that explains the reason for the exception.</param>
4466
            <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>
4467
        </member>
4468
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
4469
            <summary>
4470
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
4471
            </summary>
4472
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4473
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4474
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
4475
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
4476
        </member>
4477
        <member name="P:Newtonsoft.Json.JsonWriterException.Path">
4478
            <summary>
4479
            Gets the path to the JSON where the error occurred.
4480
            </summary>
4481
            <value>The path to the JSON where the error occurred.</value>
4482
        </member>
4483
        <member name="T:Newtonsoft.Json.JsonReaderException">
4484
            <summary>
4485
            The exception thrown when an error occurs while reading Json text.
4486
            </summary>
4487
        </member>
4488
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
4489
            <summary>
4490
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
4491
            </summary>
4492
        </member>
4493
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
4494
            <summary>
4495
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
4496
            with a specified error message.
4497
            </summary>
4498
            <param name="message">The error message that explains the reason for the exception.</param>
4499
        </member>
4500
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
4501
            <summary>
4502
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
4503
            with a specified error message and a reference to the inner exception that is the cause of this exception.
4504
            </summary>
4505
            <param name="message">The error message that explains the reason for the exception.</param>
4506
            <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>
4507
        </member>
4508
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
4509
            <summary>
4510
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
4511
            </summary>
4512
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4513
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4514
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
4515
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
4516
        </member>
4517
        <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
4518
            <summary>
4519
            Gets the line number indicating where the error occurred.
4520
            </summary>
4521
            <value>The line number indicating where the error occurred.</value>
4522
        </member>
4523
        <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
4524
            <summary>
4525
            Gets the line position indicating where the error occurred.
4526
            </summary>
4527
            <value>The line position indicating where the error occurred.</value>
4528
        </member>
4529
        <member name="P:Newtonsoft.Json.JsonReaderException.Path">
4530
            <summary>
4531
            Gets the path to the JSON where the error occurred.
4532
            </summary>
4533
            <value>The path to the JSON where the error occurred.</value>
4534
        </member>
4535
        <member name="T:Newtonsoft.Json.JsonConverterCollection">
4536
            <summary>
4537
            Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4538
            </summary>
4539
        </member>
4540
        <member name="T:Newtonsoft.Json.JsonConvert">
4541
            <summary>
4542
            Provides methods for converting between common language runtime types and JSON types.
4543
            </summary>
4544
            <example>
4545
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
4546
            </example>
4547
        </member>
4548
        <member name="F:Newtonsoft.Json.JsonConvert.True">
4549
            <summary>
4550
            Represents JavaScript's boolean value true as a string. This field is read-only.
4551
            </summary>
4552
        </member>
4553
        <member name="F:Newtonsoft.Json.JsonConvert.False">
4554
            <summary>
4555
            Represents JavaScript's boolean value false as a string. This field is read-only.
4556
            </summary>
4557
        </member>
4558
        <member name="F:Newtonsoft.Json.JsonConvert.Null">
4559
            <summary>
4560
            Represents JavaScript's null as a string. This field is read-only.
4561
            </summary>
4562
        </member>
4563
        <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
4564
            <summary>
4565
            Represents JavaScript's undefined as a string. This field is read-only.
4566
            </summary>
4567
        </member>
4568
        <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
4569
            <summary>
4570
            Represents JavaScript's positive infinity as a string. This field is read-only.
4571
            </summary>
4572
        </member>
4573
        <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
4574
            <summary>
4575
            Represents JavaScript's negative infinity as a string. This field is read-only.
4576
            </summary>
4577
        </member>
4578
        <member name="F:Newtonsoft.Json.JsonConvert.NaN">
4579
            <summary>
4580
            Represents JavaScript's NaN as a string. This field is read-only.
4581
            </summary>
4582
        </member>
4583
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
4584
            <summary>
4585
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
4586
            </summary>
4587
            <param name="value">The value to convert.</param>
4588
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
4589
        </member>
4590
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
4591
            <summary>
4592
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
4593
            </summary>
4594
            <param name="value">The value to convert.</param>
4595
            <param name="format">The format the date will be converted to.</param>
4596
            <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
4597
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
4598
        </member>
4599
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
4600
            <summary>
4601
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
4602
            </summary>
4603
            <param name="value">The value to convert.</param>
4604
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
4605
        </member>
4606
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
4607
            <summary>
4608
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
4609
            </summary>
4610
            <param name="value">The value to convert.</param>
4611
            <param name="format">The format the date will be converted to.</param>
4612
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
4613
        </member>
4614
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
4615
            <summary>
4616
            Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
4617
            </summary>
4618
            <param name="value">The value to convert.</param>
4619
            <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
4620
        </member>
4621
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
4622
            <summary>
4623
            Converts the <see cref="T:System.Char"/> to its JSON string representation.
4624
            </summary>
4625
            <param name="value">The value to convert.</param>
4626
            <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
4627
        </member>
4628
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
4629
            <summary>
4630
            Converts the <see cref="T:System.Enum"/> to its JSON string representation.
4631
            </summary>
4632
            <param name="value">The value to convert.</param>
4633
            <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
4634
        </member>
4635
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
4636
            <summary>
4637
            Converts the <see cref="T:System.Int32"/> to its JSON string representation.
4638
            </summary>
4639
            <param name="value">The value to convert.</param>
4640
            <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
4641
        </member>
4642
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
4643
            <summary>
4644
            Converts the <see cref="T:System.Int16"/> to its JSON string representation.
4645
            </summary>
4646
            <param name="value">The value to convert.</param>
4647
            <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
4648
        </member>
4649
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
4650
            <summary>
4651
            Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
4652
            </summary>
4653
            <param name="value">The value to convert.</param>
4654
            <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
4655
        </member>
4656
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
4657
            <summary>
4658
            Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
4659
            </summary>
4660
            <param name="value">The value to convert.</param>
4661
            <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
4662
        </member>
4663
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
4664
            <summary>
4665
            Converts the <see cref="T:System.Int64"/>  to its JSON string representation.
4666
            </summary>
4667
            <param name="value">The value to convert.</param>
4668
            <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
4669
        </member>
4670
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
4671
            <summary>
4672
            Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
4673
            </summary>
4674
            <param name="value">The value to convert.</param>
4675
            <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
4676
        </member>
4677
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
4678
            <summary>
4679
            Converts the <see cref="T:System.Single"/> to its JSON string representation.
4680
            </summary>
4681
            <param name="value">The value to convert.</param>
4682
            <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
4683
        </member>
4684
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
4685
            <summary>
4686
            Converts the <see cref="T:System.Double"/> to its JSON string representation.
4687
            </summary>
4688
            <param name="value">The value to convert.</param>
4689
            <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
4690
        </member>
4691
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
4692
            <summary>
4693
            Converts the <see cref="T:System.Byte"/> to its JSON string representation.
4694
            </summary>
4695
            <param name="value">The value to convert.</param>
4696
            <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
4697
        </member>
4698
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
4699
            <summary>
4700
            Converts the <see cref="T:System.SByte"/> to its JSON string representation.
4701
            </summary>
4702
            <param name="value">The value to convert.</param>
4703
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
4704
        </member>
4705
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
4706
            <summary>
4707
            Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
4708
            </summary>
4709
            <param name="value">The value to convert.</param>
4710
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
4711
        </member>
4712
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
4713
            <summary>
4714
            Converts the <see cref="T:System.Guid"/> to its JSON string representation.
4715
            </summary>
4716
            <param name="value">The value to convert.</param>
4717
            <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
4718
        </member>
4719
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
4720
            <summary>
4721
            Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
4722
            </summary>
4723
            <param name="value">The value to convert.</param>
4724
            <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
4725
        </member>
4726
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
4727
            <summary>
4728
            Converts the <see cref="T:System.Uri"/> to its JSON string representation.
4729
            </summary>
4730
            <param name="value">The value to convert.</param>
4731
            <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
4732
        </member>
4733
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
4734
            <summary>
4735
            Converts the <see cref="T:System.String"/> to its JSON string representation.
4736
            </summary>
4737
            <param name="value">The value to convert.</param>
4738
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
4739
        </member>
4740
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
4741
            <summary>
4742
            Converts the <see cref="T:System.String"/> to its JSON string representation.
4743
            </summary>
4744
            <param name="value">The value to convert.</param>
4745
            <param name="delimiter">The string delimiter character.</param>
4746
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
4747
        </member>
4748
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
4749
            <summary>
4750
            Converts the <see cref="T:System.Object"/> to its JSON string representation.
4751
            </summary>
4752
            <param name="value">The value to convert.</param>
4753
            <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
4754
        </member>
4755
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
4756
            <summary>
4757
            Serializes the specified object to a JSON string.
4758
            </summary>
4759
            <param name="value">The object to serialize.</param>
4760
            <returns>A JSON string representation of the object.</returns>
4761
        </member>
4762
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
4763
            <summary>
4764
            Serializes the specified object to a JSON string using formatting.
4765
            </summary>
4766
            <param name="value">The object to serialize.</param>
4767
            <param name="formatting">Indicates how the output is formatted.</param>
4768
            <returns>
4769
            A JSON string representation of the object.
4770
            </returns>
4771
        </member>
4772
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
4773
            <summary>
4774
            Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4775
            </summary>
4776
            <param name="value">The object to serialize.</param>
4777
            <param name="converters">A collection converters used while serializing.</param>
4778
            <returns>A JSON string representation of the object.</returns>
4779
        </member>
4780
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
4781
            <summary>
4782
            Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4783
            </summary>
4784
            <param name="value">The object to serialize.</param>
4785
            <param name="formatting">Indicates how the output is formatted.</param>
4786
            <param name="converters">A collection converters used while serializing.</param>
4787
            <returns>A JSON string representation of the object.</returns>
4788
        </member>
4789
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
4790
            <summary>
4791
            Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4792
            </summary>
4793
            <param name="value">The object to serialize.</param>
4794
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4795
            If this is null, default serialization settings will be used.</param>
4796
            <returns>
4797
            A JSON string representation of the object.
4798
            </returns>
4799
        </member>
4800
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
4801
            <summary>
4802
            Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4803
            </summary>
4804
            <param name="value">The object to serialize.</param>
4805
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4806
            If this is null, default serialization settings will be used.</param>
4807
            <param name="type">
4808
            The type of the value being serialized.
4809
            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.
4810
            Specifing the type is optional.
4811
            </param>
4812
            <returns>
4813
            A JSON string representation of the object.
4814
            </returns>
4815
        </member>
4816
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
4817
            <summary>
4818
            Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4819
            </summary>
4820
            <param name="value">The object to serialize.</param>
4821
            <param name="formatting">Indicates how the output is formatted.</param>
4822
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4823
            If this is null, default serialization settings will be used.</param>
4824
            <returns>
4825
            A JSON string representation of the object.
4826
            </returns>
4827
        </member>
4828
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
4829
            <summary>
4830
            Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4831
            </summary>
4832
            <param name="value">The object to serialize.</param>
4833
            <param name="formatting">Indicates how the output is formatted.</param>
4834
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4835
            If this is null, default serialization settings will be used.</param>
4836
            <param name="type">
4837
            The type of the value being serialized.
4838
            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.
4839
            Specifing the type is optional.
4840
            </param>
4841
            <returns>
4842
            A JSON string representation of the object.
4843
            </returns>
4844
        </member>
4845
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
4846
            <summary>
4847
            Deserializes the JSON to a .NET object.
4848
            </summary>
4849
            <param name="value">The JSON to deserialize.</param>
4850
            <returns>The deserialized object from the JSON string.</returns>
4851
        </member>
4852
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
4853
            <summary>
4854
            Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4855
            </summary>
4856
            <param name="value">The JSON to deserialize.</param>
4857
            <param name="settings">
4858
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
4859
            If this is null, default serialization settings will be used.
4860
            </param>
4861
            <returns>The deserialized object from the JSON string.</returns>
4862
        </member>
4863
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
4864
            <summary>
4865
            Deserializes the JSON to the specified .NET type.
4866
            </summary>
4867
            <param name="value">The JSON to deserialize.</param>
4868
            <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
4869
            <returns>The deserialized object from the JSON string.</returns>
4870
        </member>
4871
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
4872
            <summary>
4873
            Deserializes the JSON to the specified .NET type.
4874
            </summary>
4875
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
4876
            <param name="value">The JSON to deserialize.</param>
4877
            <returns>The deserialized object from the JSON string.</returns>
4878
        </member>
4879
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
4880
            <summary>
4881
            Deserializes the JSON to the given anonymous type.
4882
            </summary>
4883
            <typeparam name="T">
4884
            The anonymous type to deserialize to. This can't be specified
4885
            traditionally and must be infered from the anonymous type passed
4886
            as a parameter.
4887
            </typeparam>
4888
            <param name="value">The JSON to deserialize.</param>
4889
            <param name="anonymousTypeObject">The anonymous type object.</param>
4890
            <returns>The deserialized anonymous type from the JSON string.</returns>
4891
        </member>
4892
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
4893
            <summary>
4894
            Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4895
            </summary>
4896
            <typeparam name="T">
4897
            The anonymous type to deserialize to. This can't be specified
4898
            traditionally and must be infered from the anonymous type passed
4899
            as a parameter.
4900
            </typeparam>
4901
            <param name="value">The JSON to deserialize.</param>
4902
            <param name="anonymousTypeObject">The anonymous type object.</param>
4903
            <param name="settings">
4904
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
4905
            If this is null, default serialization settings will be used.
4906
            </param>
4907
            <returns>The deserialized anonymous type from the JSON string.</returns>
4908
        </member>
4909
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
4910
            <summary>
4911
            Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4912
            </summary>
4913
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
4914
            <param name="value">The JSON to deserialize.</param>
4915
            <param name="converters">Converters to use while deserializing.</param>
4916
            <returns>The deserialized object from the JSON string.</returns>
4917
        </member>
4918
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
4919
            <summary>
4920
            Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4921
            </summary>
4922
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
4923
            <param name="value">The object to deserialize.</param>
4924
            <param name="settings">
4925
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
4926
            If this is null, default serialization settings will be used.
4927
            </param>
4928
            <returns>The deserialized object from the JSON string.</returns>
4929
        </member>
4930
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
4931
            <summary>
4932
            Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4933
            </summary>
4934
            <param name="value">The JSON to deserialize.</param>
4935
            <param name="type">The type of the object to deserialize.</param>
4936
            <param name="converters">Converters to use while deserializing.</param>
4937
            <returns>The deserialized object from the JSON string.</returns>
4938
        </member>
4939
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
4940
            <summary>
4941
            Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4942
            </summary>
4943
            <param name="value">The JSON to deserialize.</param>
4944
            <param name="type">The type of the object to deserialize to.</param>
4945
            <param name="settings">
4946
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
4947
            If this is null, default serialization settings will be used.
4948
            </param>
4949
            <returns>The deserialized object from the JSON string.</returns>
4950
        </member>
4951
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
4952
            <summary>
4953
            Populates the object with values from the JSON string.
4954
            </summary>
4955
            <param name="value">The JSON to populate values from.</param>
4956
            <param name="target">The target object to populate values onto.</param>
4957
        </member>
4958
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
4959
            <summary>
4960
            Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4961
            </summary>
4962
            <param name="value">The JSON to populate values from.</param>
4963
            <param name="target">The target object to populate values onto.</param>
4964
            <param name="settings">
4965
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
4966
            If this is null, default serialization settings will be used.
4967
            </param>
4968
        </member>
4969
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
4970
            <summary>
4971
            Serializes the XML node to a JSON string.
4972
            </summary>
4973
            <param name="node">The node to serialize.</param>
4974
            <returns>A JSON string of the XmlNode.</returns>
4975
        </member>
4976
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
4977
            <summary>
4978
            Serializes the XML node to a JSON string using formatting.
4979
            </summary>
4980
            <param name="node">The node to serialize.</param>
4981
            <param name="formatting">Indicates how the output is formatted.</param>
4982
            <returns>A JSON string of the XmlNode.</returns>
4983
        </member>
4984
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
4985
            <summary>
4986
            Serializes the XML node to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
4987
            </summary>
4988
            <param name="node">The node to serialize.</param>
4989
            <param name="formatting">Indicates how the output is formatted.</param>
4990
            <param name="omitRootObject">Omits writing the root object.</param>
4991
            <returns>A JSON string of the XmlNode.</returns>
4992
        </member>
4993
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
4994
            <summary>
4995
            Deserializes the XmlNode from a JSON string.
4996
            </summary>
4997
            <param name="value">The JSON string.</param>
4998
            <returns>The deserialized XmlNode</returns>
4999
        </member>
5000
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
5001
            <summary>
5002
            Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
5003
            </summary>
5004
            <param name="value">The JSON string.</param>
5005
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5006
            <returns>The deserialized XmlNode</returns>
5007
        </member>
5008
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
5009
            <summary>
5010
            Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
5011
            and writes a .NET array attribute for collections.
5012
            </summary>
5013
            <param name="value">The JSON string.</param>
5014
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5015
            <param name="writeArrayAttribute">
5016
            A flag to indicate whether to write the Json.NET array attribute.
5017
            This attribute helps preserve arrays when converting the written XML back to JSON.
5018
            </param>
5019
            <returns>The deserialized XmlNode</returns>
5020
        </member>
5021
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
5022
            <summary>
5023
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
5024
            </summary>
5025
            <param name="node">The node to convert to JSON.</param>
5026
            <returns>A JSON string of the XNode.</returns>
5027
        </member>
5028
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
5029
            <summary>
5030
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting.
5031
            </summary>
5032
            <param name="node">The node to convert to JSON.</param>
5033
            <param name="formatting">Indicates how the output is formatted.</param>
5034
            <returns>A JSON string of the XNode.</returns>
5035
        </member>
5036
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
5037
            <summary>
5038
            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>.
5039
            </summary>
5040
            <param name="node">The node to serialize.</param>
5041
            <param name="formatting">Indicates how the output is formatted.</param>
5042
            <param name="omitRootObject">Omits writing the root object.</param>
5043
            <returns>A JSON string of the XNode.</returns>
5044
        </member>
5045
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
5046
            <summary>
5047
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.
5048
            </summary>
5049
            <param name="value">The JSON string.</param>
5050
            <returns>The deserialized XNode</returns>
5051
        </member>
5052
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
5053
            <summary>
5054
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
5055
            </summary>
5056
            <param name="value">The JSON string.</param>
5057
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5058
            <returns>The deserialized XNode</returns>
5059
        </member>
5060
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
5061
            <summary>
5062
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
5063
            and writes a .NET array attribute for collections.
5064
            </summary>
5065
            <param name="value">The JSON string.</param>
5066
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5067
            <param name="writeArrayAttribute">
5068
            A flag to indicate whether to write the Json.NET array attribute.
5069
            This attribute helps preserve arrays when converting the written XML back to JSON.
5070
            </param>
5071
            <returns>The deserialized XNode</returns>
5072
        </member>
5073
        <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
5074
            <summary>
5075
            Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5076
            Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
5077
            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"/>.
5078
            To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
5079
            <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
5080
            </summary>
5081
        </member>
5082
        <member name="T:Newtonsoft.Json.JsonSerializationException">
5083
            <summary>
5084
            The exception thrown when an error occurs during Json serialization or deserialization.
5085
            </summary>
5086
        </member>
5087
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
5088
            <summary>
5089
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
5090
            </summary>
5091
        </member>
5092
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
5093
            <summary>
5094
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
5095
            with a specified error message.
5096
            </summary>
5097
            <param name="message">The error message that explains the reason for the exception.</param>
5098
        </member>
5099
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
5100
            <summary>
5101
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
5102
            with a specified error message and a reference to the inner exception that is the cause of this exception.
5103
            </summary>
5104
            <param name="message">The error message that explains the reason for the exception.</param>
5105
            <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>
5106
        </member>
5107
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5108
            <summary>
5109
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
5110
            </summary>
5111
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
5112
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
5113
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
5114
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
5115
        </member>
5116
        <member name="T:Newtonsoft.Json.JsonSerializer">
5117
            <summary>
5118
            Serializes and deserializes objects into and from the JSON format.
5119
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
5120
            </summary>
5121
        </member>
5122
        <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
5123
            <summary>
5124
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
5125
            </summary>
5126
        </member>
5127
        <member name="M:Newtonsoft.Json.JsonSerializer.Create">
5128
            <summary>
5129
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5130
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5131
            </summary>
5132
            <returns>
5133
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5134
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5135
            </returns>
5136
        </member>
5137
        <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
5138
            <summary>
5139
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5140
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5141
            </summary>
5142
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
5143
            <returns>
5144
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5145
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5146
            </returns>
5147
        </member>
5148
        <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
5149
            <summary>
5150
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5151
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5152
            </summary>
5153
            <returns>
5154
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5155
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5156
            </returns>
5157
        </member>
5158
        <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
5159
            <summary>
5160
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5161
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5162
            </summary>
5163
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
5164
            <returns>
5165
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5166
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5167
            </returns>
5168
        </member>
5169
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
5170
            <summary>
5171
            Populates the JSON values onto the target object.
5172
            </summary>
5173
            <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
5174
            <param name="target">The target object to populate values onto.</param>
5175
        </member>
5176
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
5177
            <summary>
5178
            Populates the JSON values onto the target object.
5179
            </summary>
5180
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
5181
            <param name="target">The target object to populate values onto.</param>
5182
        </member>
5183
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
5184
            <summary>
5185
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
5186
            </summary>
5187
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
5188
            <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
5189
        </member>
5190
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
5191
            <summary>
5192
            Deserializes the Json structure contained by the specified <see cref="T:System.IO.StringReader"/>
5193
            into an instance of the specified type.
5194
            </summary>
5195
            <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
5196
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
5197
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
5198
        </member>
5199
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
5200
            <summary>
5201
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
5202
            into an instance of the specified type.
5203
            </summary>
5204
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
5205
            <typeparam name="T">The type of the object to deserialize.</typeparam>
5206
            <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
5207
        </member>
5208
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
5209
            <summary>
5210
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
5211
            into an instance of the specified type.
5212
            </summary>
5213
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
5214
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
5215
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
5216
        </member>
5217
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
5218
            <summary>
5219
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5220
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
5221
            </summary>
5222
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
5223
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5224
        </member>
5225
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
5226
            <summary>
5227
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5228
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
5229
            </summary>
5230
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
5231
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5232
            <param name="objectType">
5233
            The type of the value being serialized.
5234
            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.
5235
            Specifing the type is optional.
5236
            </param>
5237
        </member>
5238
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
5239
            <summary>
5240
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5241
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
5242
            </summary>
5243
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
5244
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5245
            <param name="objectType">
5246
            The type of the value being serialized.
5247
            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.
5248
            Specifing the type is optional.
5249
            </param>
5250
        </member>
5251
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
5252
            <summary>
5253
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5254
            to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>. 
5255
            </summary>
5256
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
5257
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5258
        </member>
5259
        <member name="E:Newtonsoft.Json.JsonSerializer.Error">
5260
            <summary>
5261
            Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
5262
            </summary>
5263
        </member>
5264
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
5265
            <summary>
5266
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
5267
            </summary>
5268
        </member>
5269
        <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
5270
            <summary>
5271
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
5272
            </summary>
5273
        </member>
5274
        <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
5275
            <summary>
5276
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
5277
            </summary>
5278
            <value>The trace writer.</value>
5279
        </member>
5280
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
5281
            <summary>
5282
            Gets or sets how type name writing and reading is handled by the serializer.
5283
            </summary>
5284
        </member>
5285
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
5286
            <summary>
5287
            Gets or sets how a type name assembly is written and resolved by the serializer.
5288
            </summary>
5289
            <value>The type name assembly format.</value>
5290
        </member>
5291
        <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
5292
            <summary>
5293
            Gets or sets how object references are preserved by the serializer.
5294
            </summary>
5295
        </member>
5296
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
5297
            <summary>
5298
            Get or set how reference loops (e.g. a class referencing itself) is handled.
5299
            </summary>
5300
        </member>
5301
        <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
5302
            <summary>
5303
            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
5304
            </summary>
5305
        </member>
5306
        <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
5307
            <summary>
5308
            Get or set how null values are handled during serialization and deserialization.
5309
            </summary>
5310
        </member>
5311
        <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
5312
            <summary>
5313
            Get or set how null default are handled during serialization and deserialization.
5314
            </summary>
5315
        </member>
5316
        <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
5317
            <summary>
5318
            Gets or sets how objects are created during deserialization.
5319
            </summary>
5320
            <value>The object creation handling.</value>
5321
        </member>
5322
        <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
5323
            <summary>
5324
            Gets or sets how constructors are used during deserialization.
5325
            </summary>
5326
            <value>The constructor handling.</value>
5327
        </member>
5328
        <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">
5329
            <summary>
5330
            Gets or sets how metadata properties are used during deserialization.
5331
            </summary>
5332
            <value>The metadata properties handling.</value>
5333
        </member>
5334
        <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
5335
            <summary>
5336
            Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
5337
            </summary>
5338
            <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
5339
        </member>
5340
        <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
5341
            <summary>
5342
            Gets or sets the contract resolver used by the serializer when
5343
            serializing .NET objects to JSON and vice versa.
5344
            </summary>
5345
        </member>
5346
        <member name="P:Newtonsoft.Json.JsonSerializer.Context">
5347
            <summary>
5348
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
5349
            </summary>
5350
            <value>The context.</value>
5351
        </member>
5352
        <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
5353
            <summary>
5354
            Indicates how JSON text output is formatted.
5355
            </summary>
5356
        </member>
5357
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
5358
            <summary>
5359
            Get or set how dates are written to JSON text.
5360
            </summary>
5361
        </member>
5362
        <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
5363
            <summary>
5364
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
5365
            </summary>
5366
        </member>
5367
        <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
5368
            <summary>
5369
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
5370
            </summary>
5371
        </member>
5372
        <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
5373
            <summary>
5374
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
5375
            </summary>
5376
        </member>
5377
        <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
5378
            <summary>
5379
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
5380
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
5381
            are written as JSON text.
5382
            </summary>
5383
        </member>
5384
        <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
5385
            <summary>
5386
            Get or set how strings are escaped when writing JSON text.
5387
            </summary>
5388
        </member>
5389
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
5390
            <summary>
5391
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
5392
            </summary>
5393
        </member>
5394
        <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
5395
            <summary>
5396
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
5397
            </summary>
5398
        </member>
5399
        <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
5400
            <summary>
5401
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
5402
            </summary>
5403
        </member>
5404
        <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
5405
            <summary>
5406
            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
5407
            </summary>
5408
            <value>
5409
                    <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
5410
            </value>
5411
        </member>
5412
        <member name="T:Newtonsoft.Json.Linq.Extensions">
5413
            <summary>
5414
            Contains the LINQ to JSON extension methods.
5415
            </summary>
5416
        </member>
5417
        <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
5418
            <summary>
5419
            Returns a collection of tokens that contains the ancestors of every token in the source collection.
5420
            </summary>
5421
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
5422
            <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>
5423
            <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>
5424
        </member>
5425
        <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
5426
            <summary>
5427
            Returns a collection of tokens that contains the descendants of every token in the source collection.
5428
            </summary>
5429
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
5430
            <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>
5431
            <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>
5432
        </member>
5433
        <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
5434
            <summary>
5435
            Returns a collection of child properties of every object in the source collection.
5436
            </summary>
5437
            <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>
5438
            <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>
5439
        </member>
5440
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
5441
            <summary>
5442
            Returns a collection of child values of every object in the source collection with the given key.
5443
            </summary>
5444
            <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>
5445
            <param name="key">The token key.</param>
5446
            <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>
5447
        </member>
5448
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5449
            <summary>
5450
            Returns a collection of child values of every object in the source collection.
5451
            </summary>
5452
            <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>
5453
            <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>
5454
        </member>
5455
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
5456
            <summary>
5457
            Returns a collection of converted child values of every object in the source collection with the given key.
5458
            </summary>
5459
            <typeparam name="U">The type to convert the values to.</typeparam>
5460
            <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>
5461
            <param name="key">The token key.</param>
5462
            <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>
5463
        </member>
5464
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5465
            <summary>
5466
            Returns a collection of converted child values of every object in the source collection.
5467
            </summary>
5468
            <typeparam name="U">The type to convert the values to.</typeparam>
5469
            <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>
5470
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection.</returns>
5471
        </member>
5472
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5473
            <summary>
5474
            Converts the value.
5475
            </summary>
5476
            <typeparam name="U">The type to convert the value to.</typeparam>
5477
            <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>
5478
            <returns>A converted value.</returns>
5479
        </member>
5480
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
5481
            <summary>
5482
            Converts the value.
5483
            </summary>
5484
            <typeparam name="T">The source collection type.</typeparam>
5485
            <typeparam name="U">The type to convert the value to.</typeparam>
5486
            <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>
5487
            <returns>A converted value.</returns>
5488
        </member>
5489
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
5490
            <summary>
5491
            Returns a collection of child tokens of every array in the source collection.
5492
            </summary>
5493
            <typeparam name="T">The source collection type.</typeparam>
5494
            <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>
5495
            <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>
5496
        </member>
5497
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
5498
            <summary>
5499
            Returns a collection of converted child tokens of every array in the source collection.
5500
            </summary>
5501
            <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>
5502
            <typeparam name="U">The type to convert the values to.</typeparam>
5503
            <typeparam name="T">The source collection type.</typeparam>
5504
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection.</returns>
5505
        </member>
5506
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5507
            <summary>
5508
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
5509
            </summary>
5510
            <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>
5511
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
5512
        </member>
5513
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
5514
            <summary>
5515
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
5516
            </summary>
5517
            <typeparam name="T">The source collection type.</typeparam>
5518
            <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>
5519
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
5520
        </member>
5521
        <member name="T:Newtonsoft.Json.Linq.JConstructor">
5522
            <summary>
5523
            Represents a JSON constructor.
5524
            </summary>
5525
        </member>
5526
        <member name="T:Newtonsoft.Json.Linq.JContainer">
5527
            <summary>
5528
            Represents a token that can contain other tokens.
5529
            </summary>
5530
        </member>
5531
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
5532
            <summary>
5533
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
5534
            </summary>
5535
            <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
5536
        </member>
5537
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
5538
            <summary>
5539
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
5540
            </summary>
5541
            <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
5542
        </member>
5543
        <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
5544
            <summary>
5545
            Returns a collection of the child tokens of this token, in document order.
5546
            </summary>
5547
            <returns>
5548
            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.
5549
            </returns>
5550
        </member>
5551
        <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
5552
            <summary>
5553
            Returns a collection of the child values of this token, in document order.
5554
            </summary>
5555
            <typeparam name="T">The type to convert the values to.</typeparam>
5556
            <returns>
5557
            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.
5558
            </returns>
5559
        </member>
5560
        <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
5561
            <summary>
5562
            Returns a collection of the descendant tokens for this token in document order.
5563
            </summary>
5564
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
5565
        </member>
5566
        <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
5567
            <summary>
5568
            Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5569
            </summary>
5570
            <param name="content">The content to be added.</param>
5571
        </member>
5572
        <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
5573
            <summary>
5574
            Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5575
            </summary>
5576
            <param name="content">The content to be added.</param>
5577
        </member>
5578
        <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
5579
            <summary>
5580
            Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5581
            </summary>
5582
            <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
5583
        </member>
5584
        <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
5585
            <summary>
5586
            Replaces the children nodes of this token with the specified content.
5587
            </summary>
5588
            <param name="content">The content.</param>
5589
        </member>
5590
        <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
5591
            <summary>
5592
            Removes the child nodes from this token.
5593
            </summary>
5594
        </member>
5595
        <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">
5596
            <summary>
5597
            Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5598
            </summary>
5599
            <param name="content">The content to be merged.</param>
5600
        </member>
5601
        <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">
5602
            <summary>
5603
            Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.
5604
            </summary>
5605
            <param name="content">The content to be merged.</param>
5606
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>
5607
        </member>
5608
        <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
5609
            <summary>
5610
            Occurs when the list changes or an item in the list changes.
5611
            </summary>
5612
        </member>
5613
        <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
5614
            <summary>
5615
            Occurs before an item is added to the collection.
5616
            </summary>
5617
        </member>
5618
        <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
5619
            <summary>
5620
            Gets the container's children tokens.
5621
            </summary>
5622
            <value>The container's children tokens.</value>
5623
        </member>
5624
        <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
5625
            <summary>
5626
            Gets a value indicating whether this token has child tokens.
5627
            </summary>
5628
            <value>
5629
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
5630
            </value>
5631
        </member>
5632
        <member name="P:Newtonsoft.Json.Linq.JContainer.First">
5633
            <summary>
5634
            Get the first child token of this token.
5635
            </summary>
5636
            <value>
5637
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5638
            </value>
5639
        </member>
5640
        <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
5641
            <summary>
5642
            Get the last child token of this token.
5643
            </summary>
5644
            <value>
5645
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5646
            </value>
5647
        </member>
5648
        <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
5649
            <summary>
5650
            Gets the count of child JSON tokens.
5651
            </summary>
5652
            <value>The count of child JSON tokens</value>
5653
        </member>
5654
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
5655
            <summary>
5656
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
5657
            </summary>
5658
        </member>
5659
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
5660
            <summary>
5661
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
5662
            </summary>
5663
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
5664
        </member>
5665
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
5666
            <summary>
5667
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
5668
            </summary>
5669
            <param name="name">The constructor name.</param>
5670
            <param name="content">The contents of the constructor.</param>
5671
        </member>
5672
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
5673
            <summary>
5674
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
5675
            </summary>
5676
            <param name="name">The constructor name.</param>
5677
            <param name="content">The contents of the constructor.</param>
5678
        </member>
5679
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
5680
            <summary>
5681
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
5682
            </summary>
5683
            <param name="name">The constructor name.</param>
5684
        </member>
5685
        <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5686
            <summary>
5687
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5688
            </summary>
5689
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5690
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5691
        </member>
5692
        <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
5693
            <summary>
5694
            Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5695
            </summary>
5696
            <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>
5697
            <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>
5698
        </member>
5699
        <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
5700
            <summary>
5701
            Gets the container's children tokens.
5702
            </summary>
5703
            <value>The container's children tokens.</value>
5704
        </member>
5705
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
5706
            <summary>
5707
            Gets or sets the name of this constructor.
5708
            </summary>
5709
            <value>The constructor name.</value>
5710
        </member>
5711
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
5712
            <summary>
5713
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5714
            </summary>
5715
            <value>The type.</value>
5716
        </member>
5717
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
5718
            <summary>
5719
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5720
            </summary>
5721
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
5722
        </member>
5723
        <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
5724
            <summary>
5725
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
5726
            </summary>
5727
            <typeparam name="T">The type of token</typeparam>
5728
        </member>
5729
        <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
5730
            <summary>
5731
            An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
5732
            </summary>
5733
        </member>
5734
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
5735
            <summary>
5736
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
5737
            </summary>
5738
            <param name="enumerable">The enumerable.</param>
5739
        </member>
5740
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
5741
            <summary>
5742
            Returns an enumerator that iterates through the collection.
5743
            </summary>
5744
            <returns>
5745
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
5746
            </returns>
5747
        </member>
5748
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator">
5749
            <summary>
5750
            Returns an enumerator that iterates through a collection.
5751
            </summary>
5752
            <returns>
5753
            An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
5754
            </returns>
5755
        </member>
5756
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
5757
            <summary>
5758
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
5759
            </summary>
5760
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
5761
            <returns>
5762
                    <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
5763
            </returns>
5764
        </member>
5765
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
5766
            <summary>
5767
            Returns a hash code for this instance.
5768
            </summary>
5769
            <returns>
5770
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
5771
            </returns>
5772
        </member>
5773
        <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
5774
            <summary>
5775
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
5776
            </summary>
5777
            <value></value>
5778
        </member>
5779
        <member name="T:Newtonsoft.Json.Linq.JObject">
5780
            <summary>
5781
            Represents a JSON object.
5782
            </summary>
5783
            <example>
5784
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
5785
            </example>
5786
        </member>
5787
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
5788
            <summary>
5789
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
5790
            </summary>
5791
        </member>
5792
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
5793
            <summary>
5794
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
5795
            </summary>
5796
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
5797
        </member>
5798
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
5799
            <summary>
5800
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
5801
            </summary>
5802
            <param name="content">The contents of the object.</param>
5803
        </member>
5804
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
5805
            <summary>
5806
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
5807
            </summary>
5808
            <param name="content">The contents of the object.</param>
5809
        </member>
5810
        <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
5811
            <summary>
5812
            Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.
5813
            </summary>
5814
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns>
5815
        </member>
5816
        <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
5817
            <summary>
5818
            Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
5819
            </summary>
5820
            <param name="name">The property name.</param>
5821
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns>
5822
        </member>
5823
        <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
5824
            <summary>
5825
            Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.
5826
            </summary>
5827
            <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns>
5828
        </member>
5829
        <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
5830
            <summary>
5831
            Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5832
            </summary>
5833
            <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>
5834
            <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>
5835
        </member>
5836
        <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
5837
            <summary>
5838
            Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
5839
            </summary>
5840
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
5841
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
5842
            <example>
5843
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text"/>
5844
            </example>
5845
        </member>
5846
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
5847
            <summary>
5848
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
5849
            </summary>
5850
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
5851
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
5852
        </member>
5853
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
5854
            <summary>
5855
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
5856
            </summary>
5857
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
5858
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
5859
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
5860
        </member>
5861
        <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5862
            <summary>
5863
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5864
            </summary>
5865
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5866
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5867
        </member>
5868
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
5869
            <summary>
5870
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
5871
            </summary>
5872
            <param name="propertyName">Name of the property.</param>
5873
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
5874
        </member>
5875
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
5876
            <summary>
5877
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
5878
            The exact property name will be searched for first and if no matching property is found then
5879
            the <see cref="T:System.StringComparison"/> will be used to match a property.
5880
            </summary>
5881
            <param name="propertyName">Name of the property.</param>
5882
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
5883
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
5884
        </member>
5885
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
5886
            <summary>
5887
            Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
5888
            The exact property name will be searched for first and if no matching property is found then
5889
            the <see cref="T:System.StringComparison"/> will be used to match a property.
5890
            </summary>
5891
            <param name="propertyName">Name of the property.</param>
5892
            <param name="value">The value.</param>
5893
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
5894
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
5895
        </member>
5896
        <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
5897
            <summary>
5898
            Adds the specified property name.
5899
            </summary>
5900
            <param name="propertyName">Name of the property.</param>
5901
            <param name="value">The value.</param>
5902
        </member>
5903
        <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
5904
            <summary>
5905
            Removes the property with the specified name.
5906
            </summary>
5907
            <param name="propertyName">Name of the property.</param>
5908
            <returns>true if item was successfully removed; otherwise, false.</returns>
5909
        </member>
5910
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
5911
            <summary>
5912
            Tries the get value.
5913
            </summary>
5914
            <param name="propertyName">Name of the property.</param>
5915
            <param name="value">The value.</param>
5916
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
5917
        </member>
5918
        <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
5919
            <summary>
5920
            Returns an enumerator that iterates through the collection.
5921
            </summary>
5922
            <returns>
5923
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
5924
            </returns>
5925
        </member>
5926
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
5927
            <summary>
5928
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
5929
            </summary>
5930
            <param name="propertyName">Name of the property.</param>
5931
        </member>
5932
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">
5933
            <summary>
5934
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments.
5935
            </summary>
5936
            <param name="propertyName">Name of the property.</param>
5937
        </member>
5938
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
5939
            <summary>
5940
            Returns the properties for this instance of a component.
5941
            </summary>
5942
            <returns>
5943
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance.
5944
            </returns>
5945
        </member>
5946
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
5947
            <summary>
5948
            Returns the properties for this instance of a component using the attribute array as a filter.
5949
            </summary>
5950
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
5951
            <returns>
5952
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.
5953
            </returns>
5954
        </member>
5955
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
5956
            <summary>
5957
            Returns a collection of custom attributes for this instance of a component.
5958
            </summary>
5959
            <returns>
5960
            An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object.
5961
            </returns>
5962
        </member>
5963
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
5964
            <summary>
5965
            Returns the class name of this instance of a component.
5966
            </summary>
5967
            <returns>
5968
            The class name of the object, or null if the class does not have a name.
5969
            </returns>
5970
        </member>
5971
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
5972
            <summary>
5973
            Returns the name of this instance of a component.
5974
            </summary>
5975
            <returns>
5976
            The name of the object, or null if the object does not have a name.
5977
            </returns>
5978
        </member>
5979
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
5980
            <summary>
5981
            Returns a type converter for this instance of a component.
5982
            </summary>
5983
            <returns>
5984
            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.
5985
            </returns>
5986
        </member>
5987
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
5988
            <summary>
5989
            Returns the default event for this instance of a component.
5990
            </summary>
5991
            <returns>
5992
            An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events.
5993
            </returns>
5994
        </member>
5995
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
5996
            <summary>
5997
            Returns the default property for this instance of a component.
5998
            </summary>
5999
            <returns>
6000
            A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties.
6001
            </returns>
6002
        </member>
6003
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
6004
            <summary>
6005
            Returns an editor of the specified type for this instance of a component.
6006
            </summary>
6007
            <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param>
6008
            <returns>
6009
            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.
6010
            </returns>
6011
        </member>
6012
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
6013
            <summary>
6014
            Returns the events for this instance of a component using the specified attribute array as a filter.
6015
            </summary>
6016
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
6017
            <returns>
6018
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance.
6019
            </returns>
6020
        </member>
6021
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
6022
            <summary>
6023
            Returns the events for this instance of a component.
6024
            </summary>
6025
            <returns>
6026
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance.
6027
            </returns>
6028
        </member>
6029
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
6030
            <summary>
6031
            Returns an object that contains the property described by the specified property descriptor.
6032
            </summary>
6033
            <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param>
6034
            <returns>
6035
            An <see cref="T:System.Object"/> that represents the owner of the specified property.
6036
            </returns>
6037
        </member>
6038
        <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
6039
            <summary>
6040
            Gets the container's children tokens.
6041
            </summary>
6042
            <value>The container's children tokens.</value>
6043
        </member>
6044
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
6045
            <summary>
6046
            Occurs when a property value changes.
6047
            </summary>
6048
        </member>
6049
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">
6050
            <summary>
6051
            Occurs when a property value is changing.
6052
            </summary>
6053
        </member>
6054
        <member name="P:Newtonsoft.Json.Linq.JObject.Type">
6055
            <summary>
6056
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6057
            </summary>
6058
            <value>The type.</value>
6059
        </member>
6060
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
6061
            <summary>
6062
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6063
            </summary>
6064
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6065
        </member>
6066
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
6067
            <summary>
6068
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6069
            </summary>
6070
            <value></value>
6071
        </member>
6072
        <member name="T:Newtonsoft.Json.Linq.JArray">
6073
            <summary>
6074
            Represents a JSON array.
6075
            </summary>
6076
            <example>
6077
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
6078
            </example>
6079
        </member>
6080
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
6081
            <summary>
6082
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
6083
            </summary>
6084
        </member>
6085
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
6086
            <summary>
6087
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
6088
            </summary>
6089
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
6090
        </member>
6091
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
6092
            <summary>
6093
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
6094
            </summary>
6095
            <param name="content">The contents of the array.</param>
6096
        </member>
6097
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
6098
            <summary>
6099
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
6100
            </summary>
6101
            <param name="content">The contents of the array.</param>
6102
        </member>
6103
        <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
6104
            <summary>
6105
            Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6106
            </summary>
6107
            <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>
6108
            <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>
6109
        </member>
6110
        <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
6111
            <summary>
6112
            Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
6113
            </summary>
6114
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6115
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
6116
            <example>
6117
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text"/>
6118
            </example>
6119
        </member>
6120
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
6121
            <summary>
6122
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
6123
            </summary>
6124
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6125
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
6126
        </member>
6127
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
6128
            <summary>
6129
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
6130
            </summary>
6131
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6132
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
6133
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
6134
        </member>
6135
        <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6136
            <summary>
6137
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6138
            </summary>
6139
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6140
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6141
        </member>
6142
        <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
6143
            <summary>
6144
            Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
6145
            </summary>
6146
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
6147
            <returns>
6148
            The index of <paramref name="item"/> if found in the list; otherwise, -1.
6149
            </returns>
6150
        </member>
6151
        <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
6152
            <summary>
6153
            Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.
6154
            </summary>
6155
            <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
6156
            <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
6157
            <exception cref="T:System.ArgumentOutOfRangeException">
6158
                    <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
6159
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
6160
        </member>
6161
        <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
6162
            <summary>
6163
            Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
6164
            </summary>
6165
            <param name="index">The zero-based index of the item to remove.</param>
6166
            <exception cref="T:System.ArgumentOutOfRangeException">
6167
                    <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
6168
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
6169
        </member>
6170
        <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">
6171
            <summary>
6172
            Returns an enumerator that iterates through the collection.
6173
            </summary>
6174
            <returns>
6175
            A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.
6176
            </returns>
6177
        </member>
6178
        <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
6179
            <summary>
6180
            Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
6181
            </summary>
6182
            <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
6183
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
6184
        </member>
6185
        <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
6186
            <summary>
6187
            Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
6188
            </summary>
6189
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
6190
        </member>
6191
        <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
6192
            <summary>
6193
            Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
6194
            </summary>
6195
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
6196
            <returns>
6197
            true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
6198
            </returns>
6199
        </member>
6200
        <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
6201
            <summary>
6202
            Copies to.
6203
            </summary>
6204
            <param name="array">The array.</param>
6205
            <param name="arrayIndex">Index of the array.</param>
6206
        </member>
6207
        <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
6208
            <summary>
6209
            Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
6210
            </summary>
6211
            <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
6212
            <returns>
6213
            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"/>.
6214
            </returns>
6215
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
6216
        </member>
6217
        <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
6218
            <summary>
6219
            Gets the container's children tokens.
6220
            </summary>
6221
            <value>The container's children tokens.</value>
6222
        </member>
6223
        <member name="P:Newtonsoft.Json.Linq.JArray.Type">
6224
            <summary>
6225
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6226
            </summary>
6227
            <value>The type.</value>
6228
        </member>
6229
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
6230
            <summary>
6231
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6232
            </summary>
6233
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6234
        </member>
6235
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
6236
            <summary>
6237
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
6238
            </summary>
6239
            <value></value>
6240
        </member>
6241
        <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
6242
            <summary>
6243
            Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.
6244
            </summary>
6245
            <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</returns>
6246
        </member>
6247
        <member name="T:Newtonsoft.Json.Linq.JTokenReader">
6248
            <summary>
6249
            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
6250
            </summary>
6251
        </member>
6252
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
6253
            <summary>
6254
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
6255
            </summary>
6256
            <param name="token">The token to read from.</param>
6257
        </member>
6258
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">
6259
            <summary>
6260
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
6261
            </summary>
6262
            <returns>
6263
            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.
6264
            </returns>
6265
        </member>
6266
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">
6267
            <summary>
6268
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6269
            </summary>
6270
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6271
        </member>
6272
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
6273
            <summary>
6274
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6275
            </summary>
6276
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6277
        </member>
6278
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString">
6279
            <summary>
6280
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
6281
            </summary>
6282
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6283
        </member>
6284
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime">
6285
            <summary>
6286
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6287
            </summary>
6288
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6289
        </member>
6290
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">
6291
            <summary>
6292
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6293
            </summary>
6294
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6295
        </member>
6296
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
6297
            <summary>
6298
            Reads the next JSON token from the stream.
6299
            </summary>
6300
            <returns>
6301
            true if the next token was read successfully; false if there are no more tokens to read.
6302
            </returns>
6303
        </member>
6304
        <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">
6305
            <summary>
6306
            Gets the path of the current JSON token. 
6307
            </summary>
6308
        </member>
6309
        <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
6310
            <summary>
6311
            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
6312
            </summary>
6313
        </member>
6314
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
6315
            <summary>
6316
            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"/>.
6317
            </summary>
6318
            <param name="container">The container being written to.</param>
6319
        </member>
6320
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
6321
            <summary>
6322
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
6323
            </summary>
6324
        </member>
6325
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
6326
            <summary>
6327
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
6328
            </summary>
6329
        </member>
6330
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
6331
            <summary>
6332
            Closes this stream and the underlying stream.
6333
            </summary>
6334
        </member>
6335
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
6336
            <summary>
6337
            Writes the beginning of a Json object.
6338
            </summary>
6339
        </member>
6340
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
6341
            <summary>
6342
            Writes the beginning of a Json array.
6343
            </summary>
6344
        </member>
6345
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
6346
            <summary>
6347
            Writes the start of a constructor with the given name.
6348
            </summary>
6349
            <param name="name">The name of the constructor.</param>
6350
        </member>
6351
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
6352
            <summary>
6353
            Writes the end.
6354
            </summary>
6355
            <param name="token">The token.</param>
6356
        </member>
6357
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
6358
            <summary>
6359
            Writes the property name of a name/value pair on a Json object.
6360
            </summary>
6361
            <param name="name">The name of the property.</param>
6362
        </member>
6363
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
6364
            <summary>
6365
            Writes a <see cref="T:System.Object"/> value.
6366
            An error will raised if the value cannot be written as a single JSON token.
6367
            </summary>
6368
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
6369
        </member>
6370
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
6371
            <summary>
6372
            Writes a null value.
6373
            </summary>
6374
        </member>
6375
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
6376
            <summary>
6377
            Writes an undefined value.
6378
            </summary>
6379
        </member>
6380
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
6381
            <summary>
6382
            Writes raw JSON.
6383
            </summary>
6384
            <param name="json">The raw JSON to write.</param>
6385
        </member>
6386
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
6387
            <summary>
6388
            Writes out a comment <code>/*...*/</code> containing the specified text.
6389
            </summary>
6390
            <param name="text">Text to place inside the comment.</param>
6391
        </member>
6392
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
6393
            <summary>
6394
            Writes a <see cref="T:System.String"/> value.
6395
            </summary>
6396
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
6397
        </member>
6398
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
6399
            <summary>
6400
            Writes a <see cref="T:System.Int32"/> value.
6401
            </summary>
6402
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
6403
        </member>
6404
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
6405
            <summary>
6406
            Writes a <see cref="T:System.UInt32"/> value.
6407
            </summary>
6408
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
6409
        </member>
6410
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
6411
            <summary>
6412
            Writes a <see cref="T:System.Int64"/> value.
6413
            </summary>
6414
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
6415
        </member>
6416
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
6417
            <summary>
6418
            Writes a <see cref="T:System.UInt64"/> value.
6419
            </summary>
6420
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
6421
        </member>
6422
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
6423
            <summary>
6424
            Writes a <see cref="T:System.Single"/> value.
6425
            </summary>
6426
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
6427
        </member>
6428
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
6429
            <summary>
6430
            Writes a <see cref="T:System.Double"/> value.
6431
            </summary>
6432
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
6433
        </member>
6434
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
6435
            <summary>
6436
            Writes a <see cref="T:System.Boolean"/> value.
6437
            </summary>
6438
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
6439
        </member>
6440
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
6441
            <summary>
6442
            Writes a <see cref="T:System.Int16"/> value.
6443
            </summary>
6444
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
6445
        </member>
6446
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
6447
            <summary>
6448
            Writes a <see cref="T:System.UInt16"/> value.
6449
            </summary>
6450
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
6451
        </member>
6452
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
6453
            <summary>
6454
            Writes a <see cref="T:System.Char"/> value.
6455
            </summary>
6456
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
6457
        </member>
6458
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
6459
            <summary>
6460
            Writes a <see cref="T:System.Byte"/> value.
6461
            </summary>
6462
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
6463
        </member>
6464
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
6465
            <summary>
6466
            Writes a <see cref="T:System.SByte"/> value.
6467
            </summary>
6468
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
6469
        </member>
6470
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
6471
            <summary>
6472
            Writes a <see cref="T:System.Decimal"/> value.
6473
            </summary>
6474
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
6475
        </member>
6476
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
6477
            <summary>
6478
            Writes a <see cref="T:System.DateTime"/> value.
6479
            </summary>
6480
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
6481
        </member>
6482
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">
6483
            <summary>
6484
            Writes a <see cref="T:System.DateTimeOffset"/> value.
6485
            </summary>
6486
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
6487
        </member>
6488
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
6489
            <summary>
6490
            Writes a <see cref="T:Byte[]"/> value.
6491
            </summary>
6492
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
6493
        </member>
6494
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
6495
            <summary>
6496
            Writes a <see cref="T:System.TimeSpan"/> value.
6497
            </summary>
6498
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
6499
        </member>
6500
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
6501
            <summary>
6502
            Writes a <see cref="T:System.Guid"/> value.
6503
            </summary>
6504
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
6505
        </member>
6506
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
6507
            <summary>
6508
            Writes a <see cref="T:System.Uri"/> value.
6509
            </summary>
6510
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
6511
        </member>
6512
        <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
6513
            <summary>
6514
            Gets the token being writen.
6515
            </summary>
6516
            <value>The token being writen.</value>
6517
        </member>
6518
        <member name="T:Newtonsoft.Json.Linq.JProperty">
6519
            <summary>
6520
            Represents a JSON property.
6521
            </summary>
6522
        </member>
6523
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
6524
            <summary>
6525
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
6526
            </summary>
6527
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
6528
        </member>
6529
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
6530
            <summary>
6531
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
6532
            </summary>
6533
            <param name="name">The property name.</param>
6534
            <param name="content">The property content.</param>
6535
        </member>
6536
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
6537
            <summary>
6538
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
6539
            </summary>
6540
            <param name="name">The property name.</param>
6541
            <param name="content">The property content.</param>
6542
        </member>
6543
        <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6544
            <summary>
6545
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6546
            </summary>
6547
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6548
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6549
        </member>
6550
        <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
6551
            <summary>
6552
            Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6553
            </summary>
6554
            <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>
6555
            <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>
6556
        </member>
6557
        <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
6558
            <summary>
6559
            Gets the container's children tokens.
6560
            </summary>
6561
            <value>The container's children tokens.</value>
6562
        </member>
6563
        <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
6564
            <summary>
6565
            Gets the property name.
6566
            </summary>
6567
            <value>The property name.</value>
6568
        </member>
6569
        <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
6570
            <summary>
6571
            Gets or sets the property value.
6572
            </summary>
6573
            <value>The property value.</value>
6574
        </member>
6575
        <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
6576
            <summary>
6577
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6578
            </summary>
6579
            <value>The type.</value>
6580
        </member>
6581
        <member name="T:Newtonsoft.Json.Linq.JTokenType">
6582
            <summary>
6583
            Specifies the type of token.
6584
            </summary>
6585
        </member>
6586
        <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
6587
            <summary>
6588
            No token type has been set.
6589
            </summary>
6590
        </member>
6591
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
6592
            <summary>
6593
            A JSON object.
6594
            </summary>
6595
        </member>
6596
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
6597
            <summary>
6598
            A JSON array.
6599
            </summary>
6600
        </member>
6601
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
6602
            <summary>
6603
            A JSON constructor.
6604
            </summary>
6605
        </member>
6606
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
6607
            <summary>
6608
            A JSON object property.
6609
            </summary>
6610
        </member>
6611
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
6612
            <summary>
6613
            A comment.
6614
            </summary>
6615
        </member>
6616
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
6617
            <summary>
6618
            An integer value.
6619
            </summary>
6620
        </member>
6621
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
6622
            <summary>
6623
            A float value.
6624
            </summary>
6625
        </member>
6626
        <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
6627
            <summary>
6628
            A string value.
6629
            </summary>
6630
        </member>
6631
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
6632
            <summary>
6633
            A boolean value.
6634
            </summary>
6635
        </member>
6636
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
6637
            <summary>
6638
            A null value.
6639
            </summary>
6640
        </member>
6641
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
6642
            <summary>
6643
            An undefined value.
6644
            </summary>
6645
        </member>
6646
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
6647
            <summary>
6648
            A date value.
6649
            </summary>
6650
        </member>
6651
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
6652
            <summary>
6653
            A raw JSON value.
6654
            </summary>
6655
        </member>
6656
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
6657
            <summary>
6658
            A collection of bytes value.
6659
            </summary>
6660
        </member>
6661
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
6662
            <summary>
6663
            A Guid value.
6664
            </summary>
6665
        </member>
6666
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
6667
            <summary>
6668
            A Uri value.
6669
            </summary>
6670
        </member>
6671
        <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
6672
            <summary>
6673
            A TimeSpan value.
6674
            </summary>
6675
        </member>
6676
        <member name="T:Newtonsoft.Json.Schema.Extensions">
6677
            <summary>
6678
            Contains the JSON schema extension methods.
6679
            </summary>
6680
        </member>
6681
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
6682
            <summary>
6683
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
6684
            </summary>
6685
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6686
            <param name="schema">The schema to test with.</param>
6687
            <returns>
6688
                    <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
6689
            </returns>
6690
        </member>
6691
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
6692
            <summary>
6693
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
6694
            </summary>
6695
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6696
            <param name="schema">The schema to test with.</param>
6697
            <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
6698
            <returns>
6699
                    <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
6700
            </returns>
6701
        </member>
6702
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
6703
            <summary>
6704
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6705
            </summary>
6706
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6707
            <param name="schema">The schema to test with.</param>
6708
        </member>
6709
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
6710
            <summary>
6711
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6712
            </summary>
6713
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6714
            <param name="schema">The schema to test with.</param>
6715
            <param name="validationEventHandler">The validation event handler.</param>
6716
        </member>
6717
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
6718
            <summary>
6719
            Returns detailed information about the schema exception.
6720
            </summary>
6721
        </member>
6722
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
6723
            <summary>
6724
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
6725
            </summary>
6726
        </member>
6727
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
6728
            <summary>
6729
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
6730
            with a specified error message.
6731
            </summary>
6732
            <param name="message">The error message that explains the reason for the exception.</param>
6733
        </member>
6734
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
6735
            <summary>
6736
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
6737
            with a specified error message and a reference to the inner exception that is the cause of this exception.
6738
            </summary>
6739
            <param name="message">The error message that explains the reason for the exception.</param>
6740
            <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>
6741
        </member>
6742
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
6743
            <summary>
6744
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
6745
            </summary>
6746
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
6747
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
6748
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
6749
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
6750
        </member>
6751
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
6752
            <summary>
6753
            Gets the line number indicating where the error occurred.
6754
            </summary>
6755
            <value>The line number indicating where the error occurred.</value>
6756
        </member>
6757
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
6758
            <summary>
6759
            Gets the line position indicating where the error occurred.
6760
            </summary>
6761
            <value>The line position indicating where the error occurred.</value>
6762
        </member>
6763
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
6764
            <summary>
6765
            Gets the path to the JSON where the error occurred.
6766
            </summary>
6767
            <value>The path to the JSON where the error occurred.</value>
6768
        </member>
6769
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
6770
            <summary>
6771
            Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
6772
            </summary>
6773
        </member>
6774
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
6775
            <summary>
6776
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
6777
            </summary>
6778
        </member>
6779
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
6780
            <summary>
6781
            Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.
6782
            </summary>
6783
            <param name="reference">The id.</param>
6784
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>
6785
        </member>
6786
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
6787
            <summary>
6788
            Gets or sets the loaded schemas.
6789
            </summary>
6790
            <value>The loaded schemas.</value>
6791
        </member>
6792
        <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
6793
            <summary>
6794
            Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
6795
            </summary>
6796
        </member>
6797
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
6798
            <summary>
6799
            Do not infer a schema Id.
6800
            </summary>
6801
        </member>
6802
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
6803
            <summary>
6804
            Use the .NET type name as the schema Id.
6805
            </summary>
6806
        </member>
6807
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
6808
            <summary>
6809
            Use the assembly qualified .NET type name as the schema Id.
6810
            </summary>
6811
        </member>
6812
        <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
6813
            <summary>
6814
            Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
6815
            </summary>
6816
        </member>
6817
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
6818
            <summary>
6819
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.
6820
            </summary>
6821
            <value>The JsonSchemaException associated with the validation error.</value>
6822
        </member>
6823
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
6824
            <summary>
6825
            Gets the path of the JSON location where the validation error occurred.
6826
            </summary>
6827
            <value>The path of the JSON location where the validation error occurred.</value>
6828
        </member>
6829
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
6830
            <summary>
6831
            Gets the text description corresponding to the validation error.
6832
            </summary>
6833
            <value>The text description.</value>
6834
        </member>
6835
        <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
6836
            <summary>
6837
            Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
6838
            </summary>
6839
        </member>
6840
        <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
6841
            <summary>
6842
            Resolves member mappings for a type, camel casing property names.
6843
            </summary>
6844
        </member>
6845
        <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
6846
            <summary>
6847
            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"/>.
6848
            </summary>
6849
        </member>
6850
        <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
6851
            <summary>
6852
            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"/>.
6853
            </summary>
6854
            <example>
6855
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class"/>
6856
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example"/>
6857
            </example>
6858
        </member>
6859
        <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
6860
            <summary>
6861
            Resolves the contract for a given type.
6862
            </summary>
6863
            <param name="type">The type to resolve a contract for.</param>
6864
            <returns>The contract for a given type.</returns>
6865
        </member>
6866
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
6867
            <summary>
6868
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
6869
            </summary>
6870
        </member>
6871
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)">
6872
            <summary>
6873
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
6874
            </summary>
6875
            <param name="shareCache">
6876
            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.
6877
            Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected
6878
            behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly
6879
            recommended to reuse <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> instances with the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6880
            </param>
6881
        </member>
6882
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
6883
            <summary>
6884
            Resolves the contract for a given type.
6885
            </summary>
6886
            <param name="type">The type to resolve a contract for.</param>
6887
            <returns>The contract for a given type.</returns>
6888
        </member>
6889
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
6890
            <summary>
6891
            Gets the serializable members for the type.
6892
            </summary>
6893
            <param name="objectType">The type to get serializable members for.</param>
6894
            <returns>The serializable members for the type.</returns>
6895
        </member>
6896
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
6897
            <summary>
6898
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
6899
            </summary>
6900
            <param name="objectType">Type of the object.</param>
6901
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
6902
        </member>
6903
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
6904
            <summary>
6905
            Creates the constructor parameters.
6906
            </summary>
6907
            <param name="constructor">The constructor to create properties for.</param>
6908
            <param name="memberProperties">The type's member properties.</param>
6909
            <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
6910
        </member>
6911
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
6912
            <summary>
6913
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
6914
            </summary>
6915
            <param name="matchingMemberProperty">The matching member property.</param>
6916
            <param name="parameterInfo">The constructor parameter.</param>
6917
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
6918
        </member>
6919
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
6920
            <summary>
6921
            Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for the contract.
6922
            </summary>
6923
            <param name="objectType">Type of the object.</param>
6924
            <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter"/>.</returns>
6925
        </member>
6926
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
6927
            <summary>
6928
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
6929
            </summary>
6930
            <param name="objectType">Type of the object.</param>
6931
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
6932
        </member>
6933
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
6934
            <summary>
6935
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
6936
            </summary>
6937
            <param name="objectType">Type of the object.</param>
6938
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
6939
        </member>
6940
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
6941
            <summary>
6942
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
6943
            </summary>
6944
            <param name="objectType">Type of the object.</param>
6945
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
6946
        </member>
6947
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
6948
            <summary>
6949
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
6950
            </summary>
6951
            <param name="objectType">Type of the object.</param>
6952
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
6953
        </member>
6954
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
6955
            <summary>
6956
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
6957
            </summary>
6958
            <param name="objectType">Type of the object.</param>
6959
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
6960
        </member>
6961
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
6962
            <summary>
6963
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
6964
            </summary>
6965
            <param name="objectType">Type of the object.</param>
6966
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
6967
        </member>
6968
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
6969
            <summary>
6970
            Determines which contract type is created for the given type.
6971
            </summary>
6972
            <param name="objectType">Type of the object.</param>
6973
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
6974
        </member>
6975
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
6976
            <summary>
6977
            Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
6978
            </summary>
6979
            <param name="type">The type to create properties for.</param>
6980
            /// <param name="memberSerialization">The member serialization mode for the type.</param>
6981
            <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
6982
        </member>
6983
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
6984
            <summary>
6985
            Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
6986
            </summary>
6987
            <param name="member">The member.</param>
6988
            <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
6989
        </member>
6990
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
6991
            <summary>
6992
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
6993
            </summary>
6994
            <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
6995
            <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
6996
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
6997
        </member>
6998
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
6999
            <summary>
7000
            Resolves the name of the property.
7001
            </summary>
7002
            <param name="propertyName">Name of the property.</param>
7003
            <returns>Name of the property.</returns>
7004
        </member>
7005
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
7006
            <summary>
7007
            Gets the resolved name of the property.
7008
            </summary>
7009
            <param name="propertyName">Name of the property.</param>
7010
            <returns>Name of the property.</returns>
7011
        </member>
7012
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
7013
            <summary>
7014
            Gets a value indicating whether members are being get and set using dynamic code generation.
7015
            This value is determined by the runtime permissions available.
7016
            </summary>
7017
            <value>
7018
                    <c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
7019
            </value>
7020
        </member>
7021
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
7022
            <summary>
7023
            Gets or sets the default members search flags.
7024
            </summary>
7025
            <value>The default members search flags.</value>
7026
        </member>
7027
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
7028
            <summary>
7029
            Gets or sets a value indicating whether compiler generated members should be serialized.
7030
            </summary>
7031
            <value>
7032
                    <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
7033
            </value>
7034
        </member>
7035
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
7036
            <summary>
7037
            Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.
7038
            </summary>
7039
            <value>
7040
                    <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>.
7041
            </value>
7042
        </member>
7043
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
7044
            <summary>
7045
            Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.
7046
            </summary>
7047
            <value>
7048
                    <c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
7049
            </value>
7050
        </member>
7051
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
7052
            <summary>
7053
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
7054
            </summary>
7055
        </member>
7056
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)">
7057
            <summary>
7058
            Resolves the name of the property.
7059
            </summary>
7060
            <param name="propertyName">Name of the property.</param>
7061
            <returns>The property name camel cased.</returns>
7062
        </member>
7063
        <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
7064
            <summary>
7065
            The default serialization binder used when resolving and loading classes from type names.
7066
            </summary>
7067
        </member>
7068
        <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
7069
            <summary>
7070
            When overridden in a derived class, controls the binding of a serialized object to a type.
7071
            </summary>
7072
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
7073
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
7074
            <returns>
7075
            The type of the object the formatter creates a new instance of.
7076
            </returns>
7077
        </member>
7078
        <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
7079
            <summary>
7080
            Provides information surrounding an error.
7081
            </summary>
7082
        </member>
7083
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
7084
            <summary>
7085
            Gets the error.
7086
            </summary>
7087
            <value>The error.</value>
7088
        </member>
7089
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
7090
            <summary>
7091
            Gets the original object that caused the error.
7092
            </summary>
7093
            <value>The original object that caused the error.</value>
7094
        </member>
7095
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
7096
            <summary>
7097
            Gets the member that caused the error.
7098
            </summary>
7099
            <value>The member that caused the error.</value>
7100
        </member>
7101
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
7102
            <summary>
7103
            Gets the path of the JSON location where the error occurred.
7104
            </summary>
7105
            <value>The path of the JSON location where the error occurred.</value>
7106
        </member>
7107
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
7108
            <summary>
7109
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
7110
            </summary>
7111
            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
7112
        </member>
7113
        <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
7114
            <summary>
7115
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7116
            </summary>
7117
        </member>
7118
        <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
7119
            <summary>
7120
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
7121
            </summary>
7122
            <param name="underlyingType">The underlying type for the contract.</param>
7123
        </member>
7124
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
7125
            <summary>
7126
            Gets the <see cref="T:System.Type"/> of the collection items.
7127
            </summary>
7128
            <value>The <see cref="T:System.Type"/> of the collection items.</value>
7129
        </member>
7130
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
7131
            <summary>
7132
            Gets a value indicating whether the collection type is a multidimensional array.
7133
            </summary>
7134
            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
7135
        </member>
7136
        <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">
7137
            <summary>
7138
            Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.
7139
            </summary>
7140
            <param name="o">The object that raised the callback event.</param>
7141
            <param name="context">The streaming context.</param>
7142
        </member>
7143
        <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">
7144
            <summary>
7145
            Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.
7146
            </summary>
7147
            <param name="o">The object that raised the callback event.</param>
7148
            <param name="context">The streaming context.</param>
7149
            <param name="errorContext">The error context.</param>
7150
        </member>
7151
        <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">
7152
            <summary>
7153
            Sets extension data for an object during deserialization.
7154
            </summary>
7155
            <param name="o">The object to set extension data on.</param>
7156
            <param name="key">The extension data key.</param>
7157
            <param name="value">The extension data value.</param>
7158
        </member>
7159
        <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">
7160
            <summary>
7161
            Gets extension data for an object during serialization.
7162
            </summary>
7163
            <param name="o">The object to set extension data on.</param>
7164
        </member>
7165
        <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
7166
            <summary>
7167
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7168
            </summary>
7169
        </member>
7170
        <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
7171
            <summary>
7172
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
7173
            </summary>
7174
            <param name="underlyingType">The underlying type for the contract.</param>
7175
        </member>
7176
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver">
7177
            <summary>
7178
            Gets or sets the property name resolver.
7179
            </summary>
7180
            <value>The property name resolver.</value>
7181
        </member>
7182
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
7183
            <summary>
7184
            Gets the <see cref="T:System.Type"/> of the dictionary keys.
7185
            </summary>
7186
            <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
7187
        </member>
7188
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
7189
            <summary>
7190
            Gets the <see cref="T:System.Type"/> of the dictionary values.
7191
            </summary>
7192
            <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
7193
        </member>
7194
        <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
7195
            <summary>
7196
            Maps a JSON property to a .NET member or constructor parameter.
7197
            </summary>
7198
        </member>
7199
        <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
7200
            <summary>
7201
            Returns a <see cref="T:System.String"/> that represents this instance.
7202
            </summary>
7203
            <returns>
7204
            A <see cref="T:System.String"/> that represents this instance.
7205
            </returns>
7206
        </member>
7207
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
7208
            <summary>
7209
            Gets or sets the name of the property.
7210
            </summary>
7211
            <value>The name of the property.</value>
7212
        </member>
7213
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
7214
            <summary>
7215
            Gets or sets the type that declared this property.
7216
            </summary>
7217
            <value>The type that declared this property.</value>
7218
        </member>
7219
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
7220
            <summary>
7221
            Gets or sets the order of serialization and deserialization of a member.
7222
            </summary>
7223
            <value>The numeric order of serialization or deserialization.</value>
7224
        </member>
7225
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
7226
            <summary>
7227
            Gets or sets the name of the underlying member or parameter.
7228
            </summary>
7229
            <value>The name of the underlying member or parameter.</value>
7230
        </member>
7231
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
7232
            <summary>
7233
            Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
7234
            </summary>
7235
            <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>
7236
        </member>
7237
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
7238
            <summary>
7239
            Gets or sets the type of the property.
7240
            </summary>
7241
            <value>The type of the property.</value>
7242
        </member>
7243
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
7244
            <summary>
7245
            Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> for the property.
7246
            If set this converter takes presidence over the contract converter for the property type.
7247
            </summary>
7248
            <value>The converter.</value>
7249
        </member>
7250
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
7251
            <summary>
7252
            Gets or sets the member converter.
7253
            </summary>
7254
            <value>The member converter.</value>
7255
        </member>
7256
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
7257
            <summary>
7258
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
7259
            </summary>
7260
            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
7261
        </member>
7262
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
7263
            <summary>
7264
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
7265
            </summary>
7266
            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
7267
        </member>
7268
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
7269
            <summary>
7270
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
7271
            </summary>
7272
            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
7273
        </member>
7274
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
7275
            <summary>
7276
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
7277
            </summary>
7278
            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
7279
        </member>
7280
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
7281
            <summary>
7282
            Gets the default value.
7283
            </summary>
7284
            <value>The default value.</value>
7285
        </member>
7286
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
7287
            <summary>
7288
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
7289
            </summary>
7290
            <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
7291
        </member>
7292
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
7293
            <summary>
7294
            Gets or sets a value indicating whether this property preserves object references.
7295
            </summary>
7296
            <value>
7297
                    <c>true</c> if this instance is reference; otherwise, <c>false</c>.
7298
            </value>
7299
        </member>
7300
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
7301
            <summary>
7302
            Gets or sets the property null value handling.
7303
            </summary>
7304
            <value>The null value handling.</value>
7305
        </member>
7306
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
7307
            <summary>
7308
            Gets or sets the property default value handling.
7309
            </summary>
7310
            <value>The default value handling.</value>
7311
        </member>
7312
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
7313
            <summary>
7314
            Gets or sets the property reference loop handling.
7315
            </summary>
7316
            <value>The reference loop handling.</value>
7317
        </member>
7318
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
7319
            <summary>
7320
            Gets or sets the property object creation handling.
7321
            </summary>
7322
            <value>The object creation handling.</value>
7323
        </member>
7324
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
7325
            <summary>
7326
            Gets or sets or sets the type name handling.
7327
            </summary>
7328
            <value>The type name handling.</value>
7329
        </member>
7330
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
7331
            <summary>
7332
            Gets or sets a predicate used to determine whether the property should be serialize.
7333
            </summary>
7334
            <value>A predicate used to determine whether the property should be serialize.</value>
7335
        </member>
7336
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
7337
            <summary>
7338
            Gets or sets a predicate used to determine whether the property should be serialized.
7339
            </summary>
7340
            <value>A predicate used to determine whether the property should be serialized.</value>
7341
        </member>
7342
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
7343
            <summary>
7344
            Gets or sets an action used to set whether the property has been deserialized.
7345
            </summary>
7346
            <value>An action used to set whether the property has been deserialized.</value>
7347
        </member>
7348
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
7349
            <summary>
7350
            Gets or sets the converter used when serializing the property's collection items.
7351
            </summary>
7352
            <value>The collection's items converter.</value>
7353
        </member>
7354
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
7355
            <summary>
7356
            Gets or sets whether this property's collection items are serialized as a reference.
7357
            </summary>
7358
            <value>Whether this property's collection items are serialized as a reference.</value>
7359
        </member>
7360
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
7361
            <summary>
7362
            Gets or sets the the type name handling used when serializing the property's collection items.
7363
            </summary>
7364
            <value>The collection's items type name handling.</value>
7365
        </member>
7366
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
7367
            <summary>
7368
            Gets or sets the the reference loop handling used when serializing the property's collection items.
7369
            </summary>
7370
            <value>The collection's items reference loop handling.</value>
7371
        </member>
7372
        <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
7373
            <summary>
7374
            A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
7375
            </summary>
7376
        </member>
7377
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
7378
            <summary>
7379
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
7380
            </summary>
7381
            <param name="type">The type.</param>
7382
        </member>
7383
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
7384
            <summary>
7385
            When implemented in a derived class, extracts the key from the specified element.
7386
            </summary>
7387
            <param name="item">The element from which to extract the key.</param>
7388
            <returns>The key for the specified element.</returns>
7389
        </member>
7390
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
7391
            <summary>
7392
            Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
7393
            </summary>
7394
            <param name="property">The property to add to the collection.</param>
7395
        </member>
7396
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
7397
            <summary>
7398
            Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
7399
            First attempts to get an exact case match of propertyName and then
7400
            a case insensitive match.
7401
            </summary>
7402
            <param name="propertyName">Name of the property.</param>
7403
            <returns>A matching property if found.</returns>
7404
        </member>
7405
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
7406
            <summary>
7407
            Gets a property by property name.
7408
            </summary>
7409
            <param name="propertyName">The name of the property to get.</param>
7410
            <param name="comparisonType">Type property name string comparison.</param>
7411
            <returns>A matching property if found.</returns>
7412
        </member>
7413
        <member name="T:Newtonsoft.Json.MissingMemberHandling">
7414
            <summary>
7415
            Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7416
            </summary>
7417
        </member>
7418
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
7419
            <summary>
7420
            Ignore a missing member and do not attempt to deserialize it.
7421
            </summary>
7422
        </member>
7423
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
7424
            <summary>
7425
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
7426
            </summary>
7427
        </member>
7428
        <member name="T:Newtonsoft.Json.NullValueHandling">
7429
            <summary>
7430
            Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7431
            </summary>
7432
            <example>
7433
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class"/>
7434
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example"/>
7435
            </example>
7436
        </member>
7437
        <member name="F:Newtonsoft.Json.NullValueHandling.Include">
7438
            <summary>
7439
            Include null values when serializing and deserializing objects.
7440
            </summary>
7441
        </member>
7442
        <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
7443
            <summary>
7444
            Ignore null values when serializing and deserializing objects.
7445
            </summary>
7446
        </member>
7447
        <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
7448
            <summary>
7449
            Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7450
            </summary>
7451
        </member>
7452
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
7453
            <summary>
7454
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
7455
            </summary>
7456
        </member>
7457
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
7458
            <summary>
7459
            Ignore loop references and do not serialize.
7460
            </summary>
7461
        </member>
7462
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
7463
            <summary>
7464
            Serialize loop references.
7465
            </summary>
7466
        </member>
7467
        <member name="T:Newtonsoft.Json.Schema.JsonSchema">
7468
            <summary>
7469
            An in-memory representation of a JSON Schema.
7470
            </summary>
7471
        </member>
7472
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
7473
            <summary>
7474
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
7475
            </summary>
7476
        </member>
7477
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
7478
            <summary>
7479
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7480
            </summary>
7481
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
7482
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
7483
        </member>
7484
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7485
            <summary>
7486
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7487
            </summary>
7488
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
7489
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
7490
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
7491
        </member>
7492
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
7493
            <summary>
7494
            Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON.
7495
            </summary>
7496
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
7497
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
7498
        </member>
7499
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7500
            <summary>
7501
            Parses the specified json.
7502
            </summary>
7503
            <param name="json">The json.</param>
7504
            <param name="resolver">The resolver.</param>
7505
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
7506
        </member>
7507
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
7508
            <summary>
7509
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
7510
            </summary>
7511
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7512
        </member>
7513
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7514
            <summary>
7515
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
7516
            </summary>
7517
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7518
            <param name="resolver">The resolver used.</param>
7519
        </member>
7520
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
7521
            <summary>
7522
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
7523
            </summary>
7524
            <returns>
7525
            A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
7526
            </returns>
7527
        </member>
7528
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
7529
            <summary>
7530
            Gets or sets the id.
7531
            </summary>
7532
        </member>
7533
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
7534
            <summary>
7535
            Gets or sets the title.
7536
            </summary>
7537
        </member>
7538
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
7539
            <summary>
7540
            Gets or sets whether the object is required.
7541
            </summary>
7542
        </member>
7543
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
7544
            <summary>
7545
            Gets or sets whether the object is read only.
7546
            </summary>
7547
        </member>
7548
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
7549
            <summary>
7550
            Gets or sets whether the object is visible to users.
7551
            </summary>
7552
        </member>
7553
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
7554
            <summary>
7555
            Gets or sets whether the object is transient.
7556
            </summary>
7557
        </member>
7558
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
7559
            <summary>
7560
            Gets or sets the description of the object.
7561
            </summary>
7562
        </member>
7563
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
7564
            <summary>
7565
            Gets or sets the types of values allowed by the object.
7566
            </summary>
7567
            <value>The type.</value>
7568
        </member>
7569
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
7570
            <summary>
7571
            Gets or sets the pattern.
7572
            </summary>
7573
            <value>The pattern.</value>
7574
        </member>
7575
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
7576
            <summary>
7577
            Gets or sets the minimum length.
7578
            </summary>
7579
            <value>The minimum length.</value>
7580
        </member>
7581
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
7582
            <summary>
7583
            Gets or sets the maximum length.
7584
            </summary>
7585
            <value>The maximum length.</value>
7586
        </member>
7587
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
7588
            <summary>
7589
            Gets or sets a number that the value should be divisble by.
7590
            </summary>
7591
            <value>A number that the value should be divisble by.</value>
7592
        </member>
7593
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
7594
            <summary>
7595
            Gets or sets the minimum.
7596
            </summary>
7597
            <value>The minimum.</value>
7598
        </member>
7599
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
7600
            <summary>
7601
            Gets or sets the maximum.
7602
            </summary>
7603
            <value>The maximum.</value>
7604
        </member>
7605
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
7606
            <summary>
7607
            Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.
7608
            </summary>
7609
            <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value>
7610
        </member>
7611
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
7612
            <summary>
7613
            Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.
7614
            </summary>
7615
            <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>
7616
        </member>
7617
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
7618
            <summary>
7619
            Gets or sets the minimum number of items.
7620
            </summary>
7621
            <value>The minimum number of items.</value>
7622
        </member>
7623
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
7624
            <summary>
7625
            Gets or sets the maximum number of items.
7626
            </summary>
7627
            <value>The maximum number of items.</value>
7628
        </member>
7629
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
7630
            <summary>
7631
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
7632
            </summary>
7633
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
7634
        </member>
7635
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">
7636
            <summary>
7637
            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"/>.
7638
            </summary>
7639
            <value>
7640
                    <c>true</c> if items are validated using their array position; otherwise, <c>false</c>.
7641
            </value>
7642
        </member>
7643
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">
7644
            <summary>
7645
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.
7646
            </summary>
7647
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value>
7648
        </member>
7649
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">
7650
            <summary>
7651
            Gets or sets a value indicating whether additional items are allowed.
7652
            </summary>
7653
            <value>
7654
                    <c>true</c> if additional items are allowed; otherwise, <c>false</c>.
7655
            </value>
7656
        </member>
7657
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">
7658
            <summary>
7659
            Gets or sets whether the array items must be unique.
7660
            </summary>
7661
        </member>
7662
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
7663
            <summary>
7664
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
7665
            </summary>
7666
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
7667
        </member>
7668
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
7669
            <summary>
7670
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
7671
            </summary>
7672
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
7673
        </member>
7674
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
7675
            <summary>
7676
            Gets or sets the pattern properties.
7677
            </summary>
7678
            <value>The pattern properties.</value>
7679
        </member>
7680
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
7681
            <summary>
7682
            Gets or sets a value indicating whether additional properties are allowed.
7683
            </summary>
7684
            <value>
7685
                    <c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
7686
            </value>
7687
        </member>
7688
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
7689
            <summary>
7690
            Gets or sets the required property if this property is present.
7691
            </summary>
7692
            <value>The required property if this property is present.</value>
7693
        </member>
7694
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
7695
            <summary>
7696
            Gets or sets the a collection of valid enum values allowed.
7697
            </summary>
7698
            <value>A collection of valid enum values allowed.</value>
7699
        </member>
7700
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
7701
            <summary>
7702
            Gets or sets disallowed types.
7703
            </summary>
7704
            <value>The disallow types.</value>
7705
        </member>
7706
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
7707
            <summary>
7708
            Gets or sets the default value.
7709
            </summary>
7710
            <value>The default value.</value>
7711
        </member>
7712
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
7713
            <summary>
7714
            Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.
7715
            </summary>
7716
            <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value>
7717
        </member>
7718
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
7719
            <summary>
7720
            Gets or sets the format.
7721
            </summary>
7722
            <value>The format.</value>
7723
        </member>
7724
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
7725
            <summary>
7726
            Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
7727
            </summary>
7728
        </member>
7729
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
7730
            <summary>
7731
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7732
            </summary>
7733
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7734
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7735
        </member>
7736
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7737
            <summary>
7738
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7739
            </summary>
7740
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7741
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
7742
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7743
        </member>
7744
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
7745
            <summary>
7746
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7747
            </summary>
7748
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7749
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
7750
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7751
        </member>
7752
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
7753
            <summary>
7754
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7755
            </summary>
7756
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7757
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
7758
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
7759
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7760
        </member>
7761
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
7762
            <summary>
7763
            Gets or sets how undefined schemas are handled by the serializer.
7764
            </summary>
7765
        </member>
7766
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
7767
            <summary>
7768
            Gets or sets the contract resolver.
7769
            </summary>
7770
            <value>The contract resolver.</value>
7771
        </member>
7772
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
7773
            <summary>
7774
            The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
7775
            </summary>
7776
        </member>
7777
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
7778
            <summary>
7779
            No type specified.
7780
            </summary>
7781
        </member>
7782
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
7783
            <summary>
7784
            String type.
7785
            </summary>
7786
        </member>
7787
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
7788
            <summary>
7789
            Float type.
7790
            </summary>
7791
        </member>
7792
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
7793
            <summary>
7794
            Integer type.
7795
            </summary>
7796
        </member>
7797
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
7798
            <summary>
7799
            Boolean type.
7800
            </summary>
7801
        </member>
7802
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
7803
            <summary>
7804
            Object type.
7805
            </summary>
7806
        </member>
7807
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
7808
            <summary>
7809
            Array type.
7810
            </summary>
7811
        </member>
7812
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
7813
            <summary>
7814
            Null type.
7815
            </summary>
7816
        </member>
7817
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
7818
            <summary>
7819
            Any type.
7820
            </summary>
7821
        </member>
7822
        <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
7823
            <summary>
7824
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7825
            </summary>
7826
        </member>
7827
        <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
7828
            <summary>
7829
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
7830
            </summary>
7831
            <param name="underlyingType">The underlying type for the contract.</param>
7832
        </member>
7833
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
7834
            <summary>
7835
            Gets or sets the object member serialization.
7836
            </summary>
7837
            <value>The member object serialization.</value>
7838
        </member>
7839
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
7840
            <summary>
7841
            Gets or sets a value that indicates whether the object's properties are required.
7842
            </summary>
7843
            <value>
7844
                    A value indicating whether the object's properties are required.
7845
            </value>
7846
        </member>
7847
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
7848
            <summary>
7849
            Gets the object's properties.
7850
            </summary>
7851
            <value>The object's properties.</value>
7852
        </member>
7853
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters">
7854
            <summary>
7855
            Gets the constructor parameters required for any non-default constructor
7856
            </summary>
7857
        </member>
7858
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">
7859
            <summary>
7860
            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"/>.
7861
            </summary>
7862
        </member>
7863
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor">
7864
            <summary>
7865
            Gets or sets the override constructor used to create the object.
7866
            This is set when a constructor is marked up using the
7867
            JsonConstructor attribute.
7868
            </summary>
7869
            <value>The override constructor.</value>
7870
        </member>
7871
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor">
7872
            <summary>
7873
            Gets or sets the parametrized constructor used to create the object.
7874
            </summary>
7875
            <value>The parametrized constructor.</value>
7876
        </member>
7877
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">
7878
            <summary>
7879
            Gets or sets the function used to create the object. When set this function will override <see cref="P:DefaultCreator"/>.
7880
            This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection.
7881
            </summary>
7882
            <value>The function used to create the object.</value>
7883
        </member>
7884
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">
7885
            <summary>
7886
            Gets or sets the extension data setter.
7887
            </summary>
7888
        </member>
7889
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">
7890
            <summary>
7891
            Gets or sets the extension data getter.
7892
            </summary>
7893
        </member>
7894
        <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
7895
            <summary>
7896
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7897
            </summary>
7898
        </member>
7899
        <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
7900
            <summary>
7901
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
7902
            </summary>
7903
            <param name="underlyingType">The underlying type for the contract.</param>
7904
        </member>
7905
        <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
7906
            <summary>
7907
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
7908
            </summary>
7909
        </member>
7910
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
7911
            <summary>
7912
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
7913
            </summary>
7914
            <param name="memberInfo">The member info.</param>
7915
        </member>
7916
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
7917
            <summary>
7918
            Sets the value.
7919
            </summary>
7920
            <param name="target">The target to set the value on.</param>
7921
            <param name="value">The value to set on the target.</param>
7922
        </member>
7923
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
7924
            <summary>
7925
            Gets the value.
7926
            </summary>
7927
            <param name="target">The target to get the value from.</param>
7928
            <returns>The value.</returns>
7929
        </member>
7930
        <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
7931
            <summary>
7932
            When applied to a method, specifies that the method is called when an error occurs serializing an object.
7933
            </summary>
7934
        </member>
7935
        <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
7936
            <summary>
7937
            Represents a method that constructs an object.
7938
            </summary>
7939
            <typeparam name="T">The object type to create.</typeparam>
7940
        </member>
7941
        <member name="T:Newtonsoft.Json.TypeNameHandling">
7942
            <summary>
7943
            Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7944
            </summary>
7945
        </member>
7946
        <member name="F:Newtonsoft.Json.TypeNameHandling.None">
7947
            <summary>
7948
            Do not include the .NET type name when serializing types.
7949
            </summary>
7950
        </member>
7951
        <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
7952
            <summary>
7953
            Include the .NET type name when serializing into a JSON object structure.
7954
            </summary>
7955
        </member>
7956
        <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
7957
            <summary>
7958
            Include the .NET type name when serializing into a JSON array structure.
7959
            </summary>
7960
        </member>
7961
        <member name="F:Newtonsoft.Json.TypeNameHandling.All">
7962
            <summary>
7963
            Always include the .NET type name when serializing.
7964
            </summary>
7965
        </member>
7966
        <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
7967
            <summary>
7968
            Include the .NET type name when the type of the object being serialized is not the same as its declared type.
7969
            </summary>
7970
        </member>
7971
        <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
7972
            <summary>
7973
            Converts the value to the specified type. If the value is unable to be converted, the
7974
            value is checked whether it assignable to the specified type.
7975
            </summary>
7976
            <param name="initialValue">The value to convert.</param>
7977
            <param name="culture">The culture to use when converting.</param>
7978
            <param name="targetType">The type to convert or cast the value to.</param>
7979
            <returns>
7980
            The converted type. If conversion was unsuccessful, the initial value
7981
            is returned if assignable to the target type.
7982
            </returns>
7983
        </member>
7984
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
7985
            <summary>
7986
            Gets a dictionary of the names and values of an Enum type.
7987
            </summary>
7988
            <returns></returns>
7989
        </member>
7990
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
7991
            <summary>
7992
            Gets a dictionary of the names and values of an Enum type.
7993
            </summary>
7994
            <param name="enumType">The enum type to get names and values for.</param>
7995
            <returns></returns>
7996
        </member>
7997
        <member name="T:Newtonsoft.Json.JsonToken">
7998
            <summary>
7999
            Specifies the type of Json token.
8000
            </summary>
8001
        </member>
8002
        <member name="F:Newtonsoft.Json.JsonToken.None">
8003
            <summary>
8004
            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. 
8005
            </summary>
8006
        </member>
8007
        <member name="F:Newtonsoft.Json.JsonToken.StartObject">
8008
            <summary>
8009
            An object start token.
8010
            </summary>
8011
        </member>
8012
        <member name="F:Newtonsoft.Json.JsonToken.StartArray">
8013
            <summary>
8014
            An array start token.
8015
            </summary>
8016
        </member>
8017
        <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
8018
            <summary>
8019
            A constructor start token.
8020
            </summary>
8021
        </member>
8022
        <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
8023
            <summary>
8024
            An object property name.
8025
            </summary>
8026
        </member>
8027
        <member name="F:Newtonsoft.Json.JsonToken.Comment">
8028
            <summary>
8029
            A comment.
8030
            </summary>
8031
        </member>
8032
        <member name="F:Newtonsoft.Json.JsonToken.Raw">
8033
            <summary>
8034
            Raw JSON.
8035
            </summary>
8036
        </member>
8037
        <member name="F:Newtonsoft.Json.JsonToken.Integer">
8038
            <summary>
8039
            An integer.
8040
            </summary>
8041
        </member>
8042
        <member name="F:Newtonsoft.Json.JsonToken.Float">
8043
            <summary>
8044
            A float.
8045
            </summary>
8046
        </member>
8047
        <member name="F:Newtonsoft.Json.JsonToken.String">
8048
            <summary>
8049
            A string.
8050
            </summary>
8051
        </member>
8052
        <member name="F:Newtonsoft.Json.JsonToken.Boolean">
8053
            <summary>
8054
            A boolean.
8055
            </summary>
8056
        </member>
8057
        <member name="F:Newtonsoft.Json.JsonToken.Null">
8058
            <summary>
8059
            A null token.
8060
            </summary>
8061
        </member>
8062
        <member name="F:Newtonsoft.Json.JsonToken.Undefined">
8063
            <summary>
8064
            An undefined token.
8065
            </summary>
8066
        </member>
8067
        <member name="F:Newtonsoft.Json.JsonToken.EndObject">
8068
            <summary>
8069
            An object end token.
8070
            </summary>
8071
        </member>
8072
        <member name="F:Newtonsoft.Json.JsonToken.EndArray">
8073
            <summary>
8074
            An array end token.
8075
            </summary>
8076
        </member>
8077
        <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
8078
            <summary>
8079
            A constructor end token.
8080
            </summary>
8081
        </member>
8082
        <member name="F:Newtonsoft.Json.JsonToken.Date">
8083
            <summary>
8084
            A Date.
8085
            </summary>
8086
        </member>
8087
        <member name="F:Newtonsoft.Json.JsonToken.Bytes">
8088
            <summary>
8089
            Byte data.
8090
            </summary>
8091
        </member>
8092
        <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
8093
            <summary>
8094
            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
8095
            </summary>
8096
        </member>
8097
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
8098
            <summary>
8099
            Determines whether the collection is null or empty.
8100
            </summary>
8101
            <param name="collection">The collection.</param>
8102
            <returns>
8103
                    <c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
8104
            </returns>
8105
        </member>
8106
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
8107
            <summary>
8108
            Adds the elements of the specified collection to the specified generic IList.
8109
            </summary>
8110
            <param name="initial">The list to add to.</param>
8111
            <param name="collection">The collection of elements to add.</param>
8112
        </member>
8113
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
8114
            <summary>
8115
            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
8116
            </summary>
8117
            <typeparam name="TSource">The type of the elements of source.</typeparam>
8118
            <param name="list">A sequence in which to locate a value.</param>
8119
            <param name="value">The object to locate in the sequence</param>
8120
            <param name="comparer">An equality comparer to compare values.</param>
8121
            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
8122
        </member>
8123
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
8124
            <summary>
8125
            Gets the type of the typed collection's items.
8126
            </summary>
8127
            <param name="type">The type.</param>
8128
            <returns>The type of the typed collection's items.</returns>
8129
        </member>
8130
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
8131
            <summary>
8132
            Gets the member's underlying type.
8133
            </summary>
8134
            <param name="member">The member.</param>
8135
            <returns>The underlying type of the member.</returns>
8136
        </member>
8137
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
8138
            <summary>
8139
            Determines whether the member is an indexed property.
8140
            </summary>
8141
            <param name="member">The member.</param>
8142
            <returns>
8143
                    <c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
8144
            </returns>
8145
        </member>
8146
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
8147
            <summary>
8148
            Determines whether the property is an indexed property.
8149
            </summary>
8150
            <param name="property">The property.</param>
8151
            <returns>
8152
                    <c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
8153
            </returns>
8154
        </member>
8155
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
8156
            <summary>
8157
            Gets the member's value on the object.
8158
            </summary>
8159
            <param name="member">The member.</param>
8160
            <param name="target">The target object.</param>
8161
            <returns>The member's value on the object.</returns>
8162
        </member>
8163
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
8164
            <summary>
8165
            Sets the member's value on the target object.
8166
            </summary>
8167
            <param name="member">The member.</param>
8168
            <param name="target">The target.</param>
8169
            <param name="value">The value.</param>
8170
        </member>
8171
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
8172
            <summary>
8173
            Determines whether the specified MemberInfo can be read.
8174
            </summary>
8175
            <param name="member">The MemberInfo to determine whether can be read.</param>
8176
            /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
8177
            <returns>
8178
                    <c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
8179
            </returns>
8180
        </member>
8181
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
8182
            <summary>
8183
            Determines whether the specified MemberInfo can be set.
8184
            </summary>
8185
            <param name="member">The MemberInfo to determine whether can be set.</param>
8186
            <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
8187
            <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
8188
            <returns>
8189
                    <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
8190
            </returns>
8191
        </member>
8192
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
8193
            <summary>
8194
            Determines whether the string is all white space. Empty string will return false.
8195
            </summary>
8196
            <param name="s">The string to test whether it is all white space.</param>
8197
            <returns>
8198
                    <c>true</c> if the string is all white space; otherwise, <c>false</c>.
8199
            </returns>
8200
        </member>
8201
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
8202
            <summary>
8203
            Nulls an empty string.
8204
            </summary>
8205
            <param name="s">The string.</param>
8206
            <returns>Null if the string was null, otherwise the string unchanged.</returns>
8207
        </member>
8208
        <member name="T:Newtonsoft.Json.WriteState">
8209
            <summary>
8210
            Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
8211
            </summary>
8212
        </member>
8213
        <member name="F:Newtonsoft.Json.WriteState.Error">
8214
            <summary>
8215
            An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
8216
            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.
8217
            Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown. 
8218
            </summary>
8219
        </member>
8220
        <member name="F:Newtonsoft.Json.WriteState.Closed">
8221
            <summary>
8222
            The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called. 
8223
            </summary>
8224
        </member>
8225
        <member name="F:Newtonsoft.Json.WriteState.Object">
8226
            <summary>
8227
            An object is being written. 
8228
            </summary>
8229
        </member>
8230
        <member name="F:Newtonsoft.Json.WriteState.Array">
8231
            <summary>
8232
            A array is being written.
8233
            </summary>
8234
        </member>
8235
        <member name="F:Newtonsoft.Json.WriteState.Constructor">
8236
            <summary>
8237
            A constructor is being written.
8238
            </summary>
8239
        </member>
8240
        <member name="F:Newtonsoft.Json.WriteState.Property">
8241
            <summary>
8242
            A property is being written.
8243
            </summary>
8244
        </member>
8245
        <member name="F:Newtonsoft.Json.WriteState.Start">
8246
            <summary>
8247
            A write method has not been called.
8248
            </summary>
8249
        </member>
8250
    </members>
8251
</doc>
클립보드 이미지 추가 (최대 크기: 500 MB)