프로젝트

일반

사용자정보

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

markus / packages / Newtonsoft.Json.6.0.4 / lib / net20 / Newtonsoft.Json.xml @ b2d0f316

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

1
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>Newtonsoft.Json</name>
5
    </assembly>
6
    <members>
7
        <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
8
            <summary>
9
            Represents a BSON Oid (object id).
10
            </summary>
11
        </member>
12
        <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">
13
            <summary>
14
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.
15
            </summary>
16
            <param name="value">The Oid value.</param>
17
        </member>
18
        <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
19
            <summary>
20
            Gets or sets the value of the Oid.
21
            </summary>
22
            <value>The value of the Oid.</value>
23
        </member>
24
        <member name="T:Newtonsoft.Json.Bson.BsonReader">
25
            <summary>
26
            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
27
            </summary>
28
        </member>
29
        <member name="T:Newtonsoft.Json.JsonReader">
30
            <summary>
31
            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
32
            </summary>
33
        </member>
34
        <member name="M:Newtonsoft.Json.JsonReader.#ctor">
35
            <summary>
36
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
37
            </summary>
38
        </member>
39
        <member name="M:Newtonsoft.Json.JsonReader.Read">
40
            <summary>
41
            Reads the next JSON token from the stream.
42
            </summary>
43
            <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
44
        </member>
45
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
46
            <summary>
47
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
48
            </summary>
49
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
50
        </member>
51
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
52
            <summary>
53
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
54
            </summary>
55
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
56
        </member>
57
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
58
            <summary>
59
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
60
            </summary>
61
            <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>
62
        </member>
63
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
64
            <summary>
65
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
66
            </summary>
67
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
68
        </member>
69
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
70
            <summary>
71
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
72
            </summary>
73
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
74
        </member>
75
        <member name="M:Newtonsoft.Json.JsonReader.Skip">
76
            <summary>
77
            Skips the children of the current token.
78
            </summary>
79
        </member>
80
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
81
            <summary>
82
            Sets the current token.
83
            </summary>
84
            <param name="newToken">The new token.</param>
85
        </member>
86
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
87
            <summary>
88
            Sets the current token and value.
89
            </summary>
90
            <param name="newToken">The new token.</param>
91
            <param name="value">The value.</param>
92
        </member>
93
        <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
94
            <summary>
95
            Sets the state based on current token type.
96
            </summary>
97
        </member>
98
        <member name="M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose">
99
            <summary>
100
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
101
            </summary>
102
        </member>
103
        <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
104
            <summary>
105
            Releases unmanaged and - optionally - managed resources
106
            </summary>
107
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
108
        </member>
109
        <member name="M:Newtonsoft.Json.JsonReader.Close">
110
            <summary>
111
            Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed. 
112
            </summary>
113
        </member>
114
        <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
115
            <summary>
116
            Gets the current reader state.
117
            </summary>
118
            <value>The current reader state.</value>
119
        </member>
120
        <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
121
            <summary>
122
            Gets or sets a value indicating whether the underlying stream or
123
            <see cref="T:System.IO.TextReader"/> should be closed when the reader is closed.
124
            </summary>
125
            <value>
126
            true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
127
            the reader is closed; otherwise false. The default is true.
128
            </value>
129
        </member>
130
        <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">
131
            <summary>
132
            Gets or sets a value indicating whether multiple pieces of JSON content can
133
            be read from a continuous stream without erroring.
134
            </summary>
135
            <value>
136
            true to support reading multiple pieces of JSON content; otherwise false. The default is false.
137
            </value>
138
        </member>
139
        <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
140
            <summary>
141
            Gets the quotation mark character used to enclose the value of a string.
142
            </summary>
143
        </member>
144
        <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
145
            <summary>
146
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when reading JSON.
147
            </summary>
148
        </member>
149
        <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
150
            <summary>
151
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
152
            </summary>
153
        </member>
154
        <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
155
            <summary>
156
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
157
            </summary>
158
        </member>
159
        <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
160
            <summary>
161
            Get or set how custom date formatted strings are parsed when reading JSON.
162
            </summary>
163
        </member>
164
        <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
165
            <summary>
166
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
167
            </summary>
168
        </member>
169
        <member name="P:Newtonsoft.Json.JsonReader.TokenType">
170
            <summary>
171
            Gets the type of the current JSON token. 
172
            </summary>
173
        </member>
174
        <member name="P:Newtonsoft.Json.JsonReader.Value">
175
            <summary>
176
            Gets the text value of the current JSON token.
177
            </summary>
178
        </member>
179
        <member name="P:Newtonsoft.Json.JsonReader.ValueType">
180
            <summary>
181
            Gets The Common Language Runtime (CLR) type for the current JSON token.
182
            </summary>
183
        </member>
184
        <member name="P:Newtonsoft.Json.JsonReader.Depth">
185
            <summary>
186
            Gets the depth of the current token in the JSON document.
187
            </summary>
188
            <value>The depth of the current token in the JSON document.</value>
189
        </member>
190
        <member name="P:Newtonsoft.Json.JsonReader.Path">
191
            <summary>
192
            Gets the path of the current JSON token. 
193
            </summary>
194
        </member>
195
        <member name="P:Newtonsoft.Json.JsonReader.Culture">
196
            <summary>
197
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
198
            </summary>
199
        </member>
200
        <member name="T:Newtonsoft.Json.JsonReader.State">
201
            <summary>
202
            Specifies the state of the reader.
203
            </summary>
204
        </member>
205
        <member name="F:Newtonsoft.Json.JsonReader.State.Start">
206
            <summary>
207
            The Read method has not been called.
208
            </summary>
209
        </member>
210
        <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
211
            <summary>
212
            The end of the file has been reached successfully.
213
            </summary>
214
        </member>
215
        <member name="F:Newtonsoft.Json.JsonReader.State.Property">
216
            <summary>
217
            Reader is at a property.
218
            </summary>
219
        </member>
220
        <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
221
            <summary>
222
            Reader is at the start of an object.
223
            </summary>
224
        </member>
225
        <member name="F:Newtonsoft.Json.JsonReader.State.Object">
226
            <summary>
227
            Reader is in an object.
228
            </summary>
229
        </member>
230
        <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
231
            <summary>
232
            Reader is at the start of an array.
233
            </summary>
234
        </member>
235
        <member name="F:Newtonsoft.Json.JsonReader.State.Array">
236
            <summary>
237
            Reader is in an array.
238
            </summary>
239
        </member>
240
        <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
241
            <summary>
242
            The Close method has been called.
243
            </summary>
244
        </member>
245
        <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
246
            <summary>
247
            Reader has just read a value.
248
            </summary>
249
        </member>
250
        <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
251
            <summary>
252
            Reader is at the start of a constructor.
253
            </summary>
254
        </member>
255
        <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
256
            <summary>
257
            Reader in a constructor.
258
            </summary>
259
        </member>
260
        <member name="F:Newtonsoft.Json.JsonReader.State.Error">
261
            <summary>
262
            An error occurred that prevents the read operation from continuing.
263
            </summary>
264
        </member>
265
        <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
266
            <summary>
267
            The end of the file has been reached successfully.
268
            </summary>
269
        </member>
270
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
271
            <summary>
272
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
273
            </summary>
274
            <param name="stream">The stream.</param>
275
        </member>
276
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
277
            <summary>
278
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
279
            </summary>
280
            <param name="reader">The reader.</param>
281
        </member>
282
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
283
            <summary>
284
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
285
            </summary>
286
            <param name="stream">The stream.</param>
287
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
288
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
289
        </member>
290
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
291
            <summary>
292
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
293
            </summary>
294
            <param name="reader">The reader.</param>
295
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
296
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
297
        </member>
298
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
299
            <summary>
300
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
301
            </summary>
302
            <returns>
303
            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.
304
            </returns>
305
        </member>
306
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal">
307
            <summary>
308
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
309
            </summary>
310
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
311
        </member>
312
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
313
            <summary>
314
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
315
            </summary>
316
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
317
        </member>
318
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsString">
319
            <summary>
320
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
321
            </summary>
322
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
323
        </member>
324
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime">
325
            <summary>
326
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
327
            </summary>
328
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
329
        </member>
330
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
331
            <summary>
332
            Reads the next JSON token from the stream.
333
            </summary>
334
            <returns>
335
            true if the next token was read successfully; false if there are no more tokens to read.
336
            </returns>
337
        </member>
338
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
339
            <summary>
340
            Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed.
341
            </summary>
342
        </member>
343
        <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
344
            <summary>
345
            Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.
346
            </summary>
347
            <value>
348
                    <c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
349
            </value>
350
        </member>
351
        <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
352
            <summary>
353
            Gets or sets a value indicating whether the root object will be read as a JSON array.
354
            </summary>
355
            <value>
356
                    <c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
357
            </value>
358
        </member>
359
        <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
360
            <summary>
361
            Gets or sets the <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.
362
            </summary>
363
            <value>The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
364
        </member>
365
        <member name="T:Newtonsoft.Json.Bson.BsonWriter">
366
            <summary>
367
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
368
            </summary>
369
        </member>
370
        <member name="T:Newtonsoft.Json.JsonWriter">
371
            <summary>
372
            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
373
            </summary>
374
        </member>
375
        <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
376
            <summary>
377
            Creates an instance of the <c>JsonWriter</c> class. 
378
            </summary>
379
        </member>
380
        <member name="M:Newtonsoft.Json.JsonWriter.Flush">
381
            <summary>
382
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
383
            </summary>
384
        </member>
385
        <member name="M:Newtonsoft.Json.JsonWriter.Close">
386
            <summary>
387
            Closes this stream and the underlying stream.
388
            </summary>
389
        </member>
390
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
391
            <summary>
392
            Writes the beginning of a Json object.
393
            </summary>
394
        </member>
395
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
396
            <summary>
397
            Writes the end of a Json object.
398
            </summary>
399
        </member>
400
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
401
            <summary>
402
            Writes the beginning of a Json array.
403
            </summary>
404
        </member>
405
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
406
            <summary>
407
            Writes the end of an array.
408
            </summary>
409
        </member>
410
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
411
            <summary>
412
            Writes the start of a constructor with the given name.
413
            </summary>
414
            <param name="name">The name of the constructor.</param>
415
        </member>
416
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
417
            <summary>
418
            Writes the end constructor.
419
            </summary>
420
        </member>
421
        <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
422
            <summary>
423
            Writes the property name of a name/value pair on a JSON object.
424
            </summary>
425
            <param name="name">The name of the property.</param>
426
        </member>
427
        <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">
428
            <summary>
429
            Writes the property name of a name/value pair on a JSON object.
430
            </summary>
431
            <param name="name">The name of the property.</param>
432
            <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
433
        </member>
434
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
435
            <summary>
436
            Writes the end of the current Json object or array.
437
            </summary>
438
        </member>
439
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
440
            <summary>
441
            Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.
442
            </summary>
443
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
444
        </member>
445
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">
446
            <summary>
447
            Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
448
            </summary>
449
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
450
            <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
451
        </member>
452
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
453
            <summary>
454
            Writes the specified end token.
455
            </summary>
456
            <param name="token">The end token to write.</param>
457
        </member>
458
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
459
            <summary>
460
            Writes indent characters.
461
            </summary>
462
        </member>
463
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
464
            <summary>
465
            Writes the JSON value delimiter.
466
            </summary>
467
        </member>
468
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
469
            <summary>
470
            Writes an indent space.
471
            </summary>
472
        </member>
473
        <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
474
            <summary>
475
            Writes a null value.
476
            </summary>
477
        </member>
478
        <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
479
            <summary>
480
            Writes an undefined value.
481
            </summary>
482
        </member>
483
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
484
            <summary>
485
            Writes raw JSON without changing the writer's state.
486
            </summary>
487
            <param name="json">The raw JSON to write.</param>
488
        </member>
489
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
490
            <summary>
491
            Writes raw JSON where a value is expected and updates the writer's state.
492
            </summary>
493
            <param name="json">The raw JSON to write.</param>
494
        </member>
495
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
496
            <summary>
497
            Writes a <see cref="T:System.String"/> value.
498
            </summary>
499
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
500
        </member>
501
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
502
            <summary>
503
            Writes a <see cref="T:System.Int32"/> value.
504
            </summary>
505
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
506
        </member>
507
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
508
            <summary>
509
            Writes a <see cref="T:System.UInt32"/> value.
510
            </summary>
511
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
512
        </member>
513
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
514
            <summary>
515
            Writes a <see cref="T:System.Int64"/> value.
516
            </summary>
517
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
518
        </member>
519
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
520
            <summary>
521
            Writes a <see cref="T:System.UInt64"/> value.
522
            </summary>
523
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
524
        </member>
525
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
526
            <summary>
527
            Writes a <see cref="T:System.Single"/> value.
528
            </summary>
529
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
530
        </member>
531
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
532
            <summary>
533
            Writes a <see cref="T:System.Double"/> value.
534
            </summary>
535
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
536
        </member>
537
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
538
            <summary>
539
            Writes a <see cref="T:System.Boolean"/> value.
540
            </summary>
541
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
542
        </member>
543
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
544
            <summary>
545
            Writes a <see cref="T:System.Int16"/> value.
546
            </summary>
547
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
548
        </member>
549
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
550
            <summary>
551
            Writes a <see cref="T:System.UInt16"/> value.
552
            </summary>
553
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
554
        </member>
555
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
556
            <summary>
557
            Writes a <see cref="T:System.Char"/> value.
558
            </summary>
559
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
560
        </member>
561
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
562
            <summary>
563
            Writes a <see cref="T:System.Byte"/> value.
564
            </summary>
565
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
566
        </member>
567
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
568
            <summary>
569
            Writes a <see cref="T:System.SByte"/> value.
570
            </summary>
571
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
572
        </member>
573
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
574
            <summary>
575
            Writes a <see cref="T:System.Decimal"/> value.
576
            </summary>
577
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
578
        </member>
579
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
580
            <summary>
581
            Writes a <see cref="T:System.DateTime"/> value.
582
            </summary>
583
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
584
        </member>
585
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
586
            <summary>
587
            Writes a <see cref="T:System.Guid"/> value.
588
            </summary>
589
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
590
        </member>
591
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
592
            <summary>
593
            Writes a <see cref="T:System.TimeSpan"/> value.
594
            </summary>
595
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
596
        </member>
597
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
598
            <summary>
599
            Writes a <see cref="T:System.Nullable`1"/> value.
600
            </summary>
601
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
602
        </member>
603
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
604
            <summary>
605
            Writes a <see cref="T:System.Nullable`1"/> value.
606
            </summary>
607
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
608
        </member>
609
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
610
            <summary>
611
            Writes a <see cref="T:System.Nullable`1"/> value.
612
            </summary>
613
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
614
        </member>
615
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
616
            <summary>
617
            Writes a <see cref="T:System.Nullable`1"/> value.
618
            </summary>
619
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
620
        </member>
621
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
622
            <summary>
623
            Writes a <see cref="T:System.Nullable`1"/> value.
624
            </summary>
625
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
626
        </member>
627
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
628
            <summary>
629
            Writes a <see cref="T:System.Nullable`1"/> value.
630
            </summary>
631
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
632
        </member>
633
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
634
            <summary>
635
            Writes a <see cref="T:System.Nullable`1"/> value.
636
            </summary>
637
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
638
        </member>
639
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
640
            <summary>
641
            Writes a <see cref="T:System.Nullable`1"/> value.
642
            </summary>
643
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
644
        </member>
645
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
646
            <summary>
647
            Writes a <see cref="T:System.Nullable`1"/> value.
648
            </summary>
649
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
650
        </member>
651
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
652
            <summary>
653
            Writes a <see cref="T:System.Nullable`1"/> value.
654
            </summary>
655
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
656
        </member>
657
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
658
            <summary>
659
            Writes a <see cref="T:System.Nullable`1"/> value.
660
            </summary>
661
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
662
        </member>
663
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
664
            <summary>
665
            Writes a <see cref="T:System.Nullable`1"/> value.
666
            </summary>
667
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
668
        </member>
669
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
670
            <summary>
671
            Writes a <see cref="T:System.Nullable`1"/> value.
672
            </summary>
673
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
674
        </member>
675
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
676
            <summary>
677
            Writes a <see cref="T:System.Nullable`1"/> value.
678
            </summary>
679
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
680
        </member>
681
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
682
            <summary>
683
            Writes a <see cref="T:System.Nullable`1"/> value.
684
            </summary>
685
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
686
        </member>
687
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
688
            <summary>
689
            Writes a <see cref="T:System.Nullable`1"/> value.
690
            </summary>
691
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
692
        </member>
693
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
694
            <summary>
695
            Writes a <see cref="T:Byte[]"/> value.
696
            </summary>
697
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
698
        </member>
699
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
700
            <summary>
701
            Writes a <see cref="T:System.Uri"/> value.
702
            </summary>
703
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
704
        </member>
705
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
706
            <summary>
707
            Writes a <see cref="T:System.Object"/> value.
708
            An error will raised if the value cannot be written as a single JSON token.
709
            </summary>
710
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
711
        </member>
712
        <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
713
            <summary>
714
            Writes out a comment <code>/*...*/</code> containing the specified text. 
715
            </summary>
716
            <param name="text">Text to place inside the comment.</param>
717
        </member>
718
        <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
719
            <summary>
720
            Writes out the given white space.
721
            </summary>
722
            <param name="ws">The string of white space characters.</param>
723
        </member>
724
        <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">
725
            <summary>
726
            Sets the state of the JsonWriter,
727
            </summary>
728
            <param name="token">The JsonToken being written.</param>
729
            <param name="value">The value being written.</param>
730
        </member>
731
        <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
732
            <summary>
733
            Gets or sets a value indicating whether the underlying stream or
734
            <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed.
735
            </summary>
736
            <value>
737
            true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
738
            the writer is closed; otherwise false. The default is true.
739
            </value>
740
        </member>
741
        <member name="P:Newtonsoft.Json.JsonWriter.Top">
742
            <summary>
743
            Gets the top.
744
            </summary>
745
            <value>The top.</value>
746
        </member>
747
        <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
748
            <summary>
749
            Gets the state of the writer.
750
            </summary>
751
        </member>
752
        <member name="P:Newtonsoft.Json.JsonWriter.Path">
753
            <summary>
754
            Gets the path of the writer. 
755
            </summary>
756
        </member>
757
        <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
758
            <summary>
759
            Indicates how JSON text output is formatted.
760
            </summary>
761
        </member>
762
        <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
763
            <summary>
764
            Get or set how dates are written to JSON text.
765
            </summary>
766
        </member>
767
        <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
768
            <summary>
769
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when writing JSON text.
770
            </summary>
771
        </member>
772
        <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
773
            <summary>
774
            Get or set how strings are escaped when writing JSON text.
775
            </summary>
776
        </member>
777
        <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
778
            <summary>
779
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
780
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
781
            are written to JSON text.
782
            </summary>
783
        </member>
784
        <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
785
            <summary>
786
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
787
            </summary>
788
        </member>
789
        <member name="P:Newtonsoft.Json.JsonWriter.Culture">
790
            <summary>
791
            Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
792
            </summary>
793
        </member>
794
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
795
            <summary>
796
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
797
            </summary>
798
            <param name="stream">The stream.</param>
799
        </member>
800
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
801
            <summary>
802
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
803
            </summary>
804
            <param name="writer">The writer.</param>
805
        </member>
806
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
807
            <summary>
808
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
809
            </summary>
810
        </member>
811
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
812
            <summary>
813
            Writes the end.
814
            </summary>
815
            <param name="token">The token.</param>
816
        </member>
817
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
818
            <summary>
819
            Writes out a comment <code>/*...*/</code> containing the specified text.
820
            </summary>
821
            <param name="text">Text to place inside the comment.</param>
822
        </member>
823
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
824
            <summary>
825
            Writes the start of a constructor with the given name.
826
            </summary>
827
            <param name="name">The name of the constructor.</param>
828
        </member>
829
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
830
            <summary>
831
            Writes raw JSON.
832
            </summary>
833
            <param name="json">The raw JSON to write.</param>
834
        </member>
835
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
836
            <summary>
837
            Writes raw JSON where a value is expected and updates the writer's state.
838
            </summary>
839
            <param name="json">The raw JSON to write.</param>
840
        </member>
841
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
842
            <summary>
843
            Writes the beginning of a Json array.
844
            </summary>
845
        </member>
846
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
847
            <summary>
848
            Writes the beginning of a Json object.
849
            </summary>
850
        </member>
851
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
852
            <summary>
853
            Writes the property name of a name/value pair on a Json object.
854
            </summary>
855
            <param name="name">The name of the property.</param>
856
        </member>
857
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
858
            <summary>
859
            Closes this stream and the underlying stream.
860
            </summary>
861
        </member>
862
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">
863
            <summary>
864
            Writes a <see cref="T:System.Object"/> value.
865
            An error will raised if the value cannot be written as a single JSON token.
866
            </summary>
867
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
868
        </member>
869
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
870
            <summary>
871
            Writes a null value.
872
            </summary>
873
        </member>
874
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
875
            <summary>
876
            Writes an undefined value.
877
            </summary>
878
        </member>
879
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
880
            <summary>
881
            Writes a <see cref="T:System.String"/> value.
882
            </summary>
883
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
884
        </member>
885
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
886
            <summary>
887
            Writes a <see cref="T:System.Int32"/> value.
888
            </summary>
889
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
890
        </member>
891
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
892
            <summary>
893
            Writes a <see cref="T:System.UInt32"/> value.
894
            </summary>
895
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
896
        </member>
897
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
898
            <summary>
899
            Writes a <see cref="T:System.Int64"/> value.
900
            </summary>
901
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
902
        </member>
903
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
904
            <summary>
905
            Writes a <see cref="T:System.UInt64"/> value.
906
            </summary>
907
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
908
        </member>
909
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
910
            <summary>
911
            Writes a <see cref="T:System.Single"/> value.
912
            </summary>
913
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
914
        </member>
915
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
916
            <summary>
917
            Writes a <see cref="T:System.Double"/> value.
918
            </summary>
919
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
920
        </member>
921
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
922
            <summary>
923
            Writes a <see cref="T:System.Boolean"/> value.
924
            </summary>
925
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
926
        </member>
927
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
928
            <summary>
929
            Writes a <see cref="T:System.Int16"/> value.
930
            </summary>
931
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
932
        </member>
933
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
934
            <summary>
935
            Writes a <see cref="T:System.UInt16"/> value.
936
            </summary>
937
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
938
        </member>
939
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
940
            <summary>
941
            Writes a <see cref="T:System.Char"/> value.
942
            </summary>
943
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
944
        </member>
945
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
946
            <summary>
947
            Writes a <see cref="T:System.Byte"/> value.
948
            </summary>
949
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
950
        </member>
951
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
952
            <summary>
953
            Writes a <see cref="T:System.SByte"/> value.
954
            </summary>
955
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
956
        </member>
957
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
958
            <summary>
959
            Writes a <see cref="T:System.Decimal"/> value.
960
            </summary>
961
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
962
        </member>
963
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
964
            <summary>
965
            Writes a <see cref="T:System.DateTime"/> value.
966
            </summary>
967
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
968
        </member>
969
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
970
            <summary>
971
            Writes a <see cref="T:Byte[]"/> value.
972
            </summary>
973
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
974
        </member>
975
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
976
            <summary>
977
            Writes a <see cref="T:System.Guid"/> value.
978
            </summary>
979
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
980
        </member>
981
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
982
            <summary>
983
            Writes a <see cref="T:System.TimeSpan"/> value.
984
            </summary>
985
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
986
        </member>
987
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
988
            <summary>
989
            Writes a <see cref="T:System.Uri"/> value.
990
            </summary>
991
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
992
        </member>
993
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
994
            <summary>
995
            Writes a <see cref="T:Byte[]"/> value that represents a BSON object id.
996
            </summary>
997
            <param name="value">The Object ID value to write.</param>
998
        </member>
999
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
1000
            <summary>
1001
            Writes a BSON regex.
1002
            </summary>
1003
            <param name="pattern">The regex pattern.</param>
1004
            <param name="options">The regex options.</param>
1005
        </member>
1006
        <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
1007
            <summary>
1008
            Gets or sets the <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.
1009
            When set to <see cref="F:System.DateTimeKind.Unspecified"/> no conversion will occur.
1010
            </summary>
1011
            <value>The <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
1012
        </member>
1013
        <member name="T:Newtonsoft.Json.ConstructorHandling">
1014
            <summary>
1015
            Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1016
            </summary>
1017
        </member>
1018
        <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
1019
            <summary>
1020
            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.
1021
            </summary>
1022
        </member>
1023
        <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
1024
            <summary>
1025
            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.
1026
            </summary>
1027
        </member>
1028
        <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
1029
            <summary>
1030
            Converts a binary value to and from a base 64 string value.
1031
            </summary>
1032
        </member>
1033
        <member name="T:Newtonsoft.Json.JsonConverter">
1034
            <summary>
1035
            Converts an object to and from JSON.
1036
            </summary>
1037
        </member>
1038
        <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1039
            <summary>
1040
            Writes the JSON representation of the object.
1041
            </summary>
1042
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1043
            <param name="value">The value.</param>
1044
            <param name="serializer">The calling serializer.</param>
1045
        </member>
1046
        <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1047
            <summary>
1048
            Reads the JSON representation of the object.
1049
            </summary>
1050
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1051
            <param name="objectType">Type of the object.</param>
1052
            <param name="existingValue">The existing value of object being read.</param>
1053
            <param name="serializer">The calling serializer.</param>
1054
            <returns>The object value.</returns>
1055
        </member>
1056
        <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
1057
            <summary>
1058
            Determines whether this instance can convert the specified object type.
1059
            </summary>
1060
            <param name="objectType">Type of the object.</param>
1061
            <returns>
1062
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1063
            </returns>
1064
        </member>
1065
        <member name="M:Newtonsoft.Json.JsonConverter.GetSchema">
1066
            <summary>
1067
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.
1068
            </summary>
1069
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns>
1070
        </member>
1071
        <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
1072
            <summary>
1073
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
1074
            </summary>
1075
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
1076
        </member>
1077
        <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
1078
            <summary>
1079
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1080
            </summary>
1081
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
1082
        </member>
1083
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1084
            <summary>
1085
            Writes the JSON representation of the object.
1086
            </summary>
1087
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1088
            <param name="value">The value.</param>
1089
            <param name="serializer">The calling serializer.</param>
1090
        </member>
1091
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1092
            <summary>
1093
            Reads the JSON representation of the object.
1094
            </summary>
1095
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1096
            <param name="objectType">Type of the object.</param>
1097
            <param name="existingValue">The existing value of object being read.</param>
1098
            <param name="serializer">The calling serializer.</param>
1099
            <returns>The object value.</returns>
1100
        </member>
1101
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
1102
            <summary>
1103
            Determines whether this instance can convert the specified object type.
1104
            </summary>
1105
            <param name="objectType">Type of the object.</param>
1106
            <returns>
1107
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1108
            </returns>
1109
        </member>
1110
        <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
1111
            <summary>
1112
            Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
1113
            </summary>
1114
        </member>
1115
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1116
            <summary>
1117
            Writes the JSON representation of the object.
1118
            </summary>
1119
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1120
            <param name="value">The value.</param>
1121
            <param name="serializer">The calling serializer.</param>
1122
        </member>
1123
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1124
            <summary>
1125
            Reads the JSON representation of the object.
1126
            </summary>
1127
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1128
            <param name="objectType">Type of the object.</param>
1129
            <param name="existingValue">The existing value of object being read.</param>
1130
            <param name="serializer">The calling serializer.</param>
1131
            <returns>The object value.</returns>
1132
        </member>
1133
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
1134
            <summary>
1135
            Determines whether this instance can convert the specified object type.
1136
            </summary>
1137
            <param name="objectType">Type of the object.</param>
1138
            <returns>
1139
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1140
            </returns>
1141
        </member>
1142
        <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
1143
            <summary>
1144
            Create a custom object
1145
            </summary>
1146
            <typeparam name="T">The object type to convert.</typeparam>
1147
        </member>
1148
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1149
            <summary>
1150
            Writes the JSON representation of the object.
1151
            </summary>
1152
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1153
            <param name="value">The value.</param>
1154
            <param name="serializer">The calling serializer.</param>
1155
        </member>
1156
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1157
            <summary>
1158
            Reads the JSON representation of the object.
1159
            </summary>
1160
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1161
            <param name="objectType">Type of the object.</param>
1162
            <param name="existingValue">The existing value of object being read.</param>
1163
            <param name="serializer">The calling serializer.</param>
1164
            <returns>The object value.</returns>
1165
        </member>
1166
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
1167
            <summary>
1168
            Creates an object which will then be populated by the serializer.
1169
            </summary>
1170
            <param name="objectType">Type of the object.</param>
1171
            <returns>The created object.</returns>
1172
        </member>
1173
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
1174
            <summary>
1175
            Determines whether this instance can convert the specified object type.
1176
            </summary>
1177
            <param name="objectType">Type of the object.</param>
1178
            <returns>
1179
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1180
            </returns>
1181
        </member>
1182
        <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
1183
            <summary>
1184
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1185
            </summary>
1186
            <value>
1187
                    <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
1188
            </value>
1189
        </member>
1190
        <member name="T:Newtonsoft.Json.Converters.DataSetConverter">
1191
            <summary>
1192
            Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.
1193
            </summary>
1194
        </member>
1195
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1196
            <summary>
1197
            Writes the JSON representation of the object.
1198
            </summary>
1199
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1200
            <param name="value">The value.</param>
1201
            <param name="serializer">The calling serializer.</param>
1202
        </member>
1203
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1204
            <summary>
1205
            Reads the JSON representation of the object.
1206
            </summary>
1207
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1208
            <param name="objectType">Type of the object.</param>
1209
            <param name="existingValue">The existing value of object being read.</param>
1210
            <param name="serializer">The calling serializer.</param>
1211
            <returns>The object value.</returns>
1212
        </member>
1213
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
1214
            <summary>
1215
            Determines whether this instance can convert the specified value type.
1216
            </summary>
1217
            <param name="valueType">Type of the value.</param>
1218
            <returns>
1219
                    <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1220
            </returns>
1221
        </member>
1222
        <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
1223
            <summary>
1224
            Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
1225
            </summary>
1226
        </member>
1227
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1228
            <summary>
1229
            Writes the JSON representation of the object.
1230
            </summary>
1231
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1232
            <param name="value">The value.</param>
1233
            <param name="serializer">The calling serializer.</param>
1234
        </member>
1235
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1236
            <summary>
1237
            Reads the JSON representation of the object.
1238
            </summary>
1239
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1240
            <param name="objectType">Type of the object.</param>
1241
            <param name="existingValue">The existing value of object being read.</param>
1242
            <param name="serializer">The calling serializer.</param>
1243
            <returns>The object value.</returns>
1244
        </member>
1245
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
1246
            <summary>
1247
            Determines whether this instance can convert the specified value type.
1248
            </summary>
1249
            <param name="valueType">Type of the value.</param>
1250
            <returns>
1251
                    <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1252
            </returns>
1253
        </member>
1254
        <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
1255
            <summary>
1256
            Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
1257
            </summary>
1258
        </member>
1259
        <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">
1260
            <summary>
1261
            Determines whether this instance can convert the specified object type.
1262
            </summary>
1263
            <param name="objectType">Type of the object.</param>
1264
            <returns>
1265
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1266
            </returns>
1267
        </member>
1268
        <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
1269
            <summary>
1270
            Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
1271
            </summary>
1272
        </member>
1273
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1274
            <summary>
1275
            Writes the JSON representation of the object.
1276
            </summary>
1277
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1278
            <param name="value">The value.</param>
1279
            <param name="serializer">The calling serializer.</param>
1280
        </member>
1281
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1282
            <summary>
1283
            Reads the JSON representation of the object.
1284
            </summary>
1285
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1286
            <param name="objectType">Type of the object.</param>
1287
            <param name="existingValue">The existing value of object being read.</param>
1288
            <param name="serializer">The calling serializer.</param>
1289
            <returns>The object value.</returns>
1290
        </member>
1291
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
1292
            <summary>
1293
            Determines whether this instance can convert the specified object type.
1294
            </summary>
1295
            <param name="objectType">Type of the object.</param>
1296
            <returns>
1297
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1298
            </returns>
1299
        </member>
1300
        <member name="T:Newtonsoft.Json.Converters.RegexConverter">
1301
            <summary>
1302
            Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
1303
            </summary>
1304
        </member>
1305
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1306
            <summary>
1307
            Writes the JSON representation of the object.
1308
            </summary>
1309
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1310
            <param name="value">The value.</param>
1311
            <param name="serializer">The calling serializer.</param>
1312
        </member>
1313
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1314
            <summary>
1315
            Reads the JSON representation of the object.
1316
            </summary>
1317
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1318
            <param name="objectType">Type of the object.</param>
1319
            <param name="existingValue">The existing value of object being read.</param>
1320
            <param name="serializer">The calling serializer.</param>
1321
            <returns>The object value.</returns>
1322
        </member>
1323
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
1324
            <summary>
1325
            Determines whether this instance can convert the specified object type.
1326
            </summary>
1327
            <param name="objectType">Type of the object.</param>
1328
            <returns>
1329
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1330
            </returns>
1331
        </member>
1332
        <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
1333
            <summary>
1334
            Converts an <see cref="T:System.Enum"/> to and from its name string value.
1335
            </summary>
1336
        </member>
1337
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
1338
            <summary>
1339
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
1340
            </summary>
1341
        </member>
1342
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1343
            <summary>
1344
            Writes the JSON representation of the object.
1345
            </summary>
1346
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1347
            <param name="value">The value.</param>
1348
            <param name="serializer">The calling serializer.</param>
1349
        </member>
1350
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1351
            <summary>
1352
            Reads the JSON representation of the object.
1353
            </summary>
1354
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1355
            <param name="objectType">Type of the object.</param>
1356
            <param name="existingValue">The existing value of object being read.</param>
1357
            <param name="serializer">The calling serializer.</param>
1358
            <returns>The object value.</returns>
1359
        </member>
1360
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
1361
            <summary>
1362
            Determines whether this instance can convert the specified object type.
1363
            </summary>
1364
            <param name="objectType">Type of the object.</param>
1365
            <returns>
1366
            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1367
            </returns>
1368
        </member>
1369
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
1370
            <summary>
1371
            Gets or sets a value indicating whether the written enum text should be camel case.
1372
            </summary>
1373
            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
1374
        </member>
1375
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
1376
            <summary>
1377
            Gets or sets a value indicating whether integer values are allowed.
1378
            </summary>
1379
            <value><c>true</c> if integers are allowed; otherwise, <c>false</c>.</value>
1380
        </member>
1381
        <member name="T:Newtonsoft.Json.Converters.VersionConverter">
1382
            <summary>
1383
            Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4").
1384
            </summary>
1385
        </member>
1386
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1387
            <summary>
1388
            Writes the JSON representation of the object.
1389
            </summary>
1390
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1391
            <param name="value">The value.</param>
1392
            <param name="serializer">The calling serializer.</param>
1393
        </member>
1394
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1395
            <summary>
1396
            Reads the JSON representation of the object.
1397
            </summary>
1398
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1399
            <param name="objectType">Type of the object.</param>
1400
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
1401
            <param name="serializer">The calling serializer.</param>
1402
            <returns>The object value.</returns>
1403
        </member>
1404
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
1405
            <summary>
1406
            Determines whether this instance can convert the specified object type.
1407
            </summary>
1408
            <param name="objectType">Type of the object.</param>
1409
            <returns>
1410
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1411
            </returns>
1412
        </member>
1413
        <member name="T:Newtonsoft.Json.DateFormatHandling">
1414
            <summary>
1415
            Specifies how dates are formatted when writing JSON text.
1416
            </summary>
1417
        </member>
1418
        <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
1419
            <summary>
1420
            Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
1421
            </summary>
1422
        </member>
1423
        <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
1424
            <summary>
1425
            Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
1426
            </summary>
1427
        </member>
1428
        <member name="T:Newtonsoft.Json.DateParseHandling">
1429
            <summary>
1430
            Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
1431
            </summary>
1432
        </member>
1433
        <member name="F:Newtonsoft.Json.DateParseHandling.None">
1434
            <summary>
1435
            Date formatted strings are not parsed to a date type and are read as strings.
1436
            </summary>
1437
        </member>
1438
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
1439
            <summary>
1440
            Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.
1441
            </summary>
1442
        </member>
1443
        <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
1444
            <summary>
1445
            Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
1446
            </summary>
1447
        </member>
1448
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
1449
            <summary>
1450
            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.
1451
            </summary>
1452
        </member>
1453
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
1454
            <summary>
1455
            Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
1456
            </summary>
1457
        </member>
1458
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
1459
            <summary>
1460
            Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
1461
            If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
1462
            </summary>
1463
        </member>
1464
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
1465
            <summary>
1466
            Time zone information should be preserved when converting.
1467
            </summary>
1468
        </member>
1469
        <member name="T:Newtonsoft.Json.FloatFormatHandling">
1470
            <summary>
1471
            Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
1472
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1473
            </summary>
1474
        </member>
1475
        <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
1476
            <summary>
1477
            Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".
1478
            </summary>
1479
        </member>
1480
        <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
1481
            <summary>
1482
            Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity.
1483
            Note that this will produce non-valid JSON.
1484
            </summary>
1485
        </member>
1486
        <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
1487
            <summary>
1488
            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.
1489
            </summary>
1490
        </member>
1491
        <member name="T:Newtonsoft.Json.FloatParseHandling">
1492
            <summary>
1493
            Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
1494
            </summary>
1495
        </member>
1496
        <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
1497
            <summary>
1498
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
1499
            </summary>
1500
        </member>
1501
        <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
1502
            <summary>
1503
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
1504
            </summary>
1505
        </member>
1506
        <member name="T:Newtonsoft.Json.Formatting">
1507
            <summary>
1508
            Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
1509
            </summary>
1510
        </member>
1511
        <member name="F:Newtonsoft.Json.Formatting.None">
1512
            <summary>
1513
            No special formatting is applied. This is the default.
1514
            </summary>
1515
        </member>
1516
        <member name="F:Newtonsoft.Json.Formatting.Indented">
1517
            <summary>
1518
            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.
1519
            </summary>
1520
        </member>
1521
        <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1522
            <summary>
1523
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1524
            </summary>
1525
        </member>
1526
        <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
1527
            <summary>
1528
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
1529
            </summary>
1530
        </member>
1531
        <member name="T:Newtonsoft.Json.JsonContainerAttribute">
1532
            <summary>
1533
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
1534
            </summary>
1535
        </member>
1536
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
1537
            <summary>
1538
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
1539
            </summary>
1540
        </member>
1541
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
1542
            <summary>
1543
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
1544
            </summary>
1545
            <param name="id">The container Id.</param>
1546
        </member>
1547
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
1548
            <summary>
1549
            Gets or sets the id.
1550
            </summary>
1551
            <value>The id.</value>
1552
        </member>
1553
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
1554
            <summary>
1555
            Gets or sets the title.
1556
            </summary>
1557
            <value>The title.</value>
1558
        </member>
1559
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
1560
            <summary>
1561
            Gets or sets the description.
1562
            </summary>
1563
            <value>The description.</value>
1564
        </member>
1565
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
1566
            <summary>
1567
            Gets the collection's items converter.
1568
            </summary>
1569
            <value>The collection's items converter.</value>
1570
        </member>
1571
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
1572
            <summary>
1573
            Gets or sets a value that indicates whether to preserve object references.
1574
            </summary>
1575
            <value>
1576
                    <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
1577
            </value>
1578
        </member>
1579
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
1580
            <summary>
1581
            Gets or sets a value that indicates whether to preserve collection's items references.
1582
            </summary>
1583
            <value>
1584
                    <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
1585
            </value>
1586
        </member>
1587
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
1588
            <summary>
1589
            Gets or sets the reference loop handling used when serializing the collection's items.
1590
            </summary>
1591
            <value>The reference loop handling.</value>
1592
        </member>
1593
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
1594
            <summary>
1595
            Gets or sets the type name handling used when serializing the collection's items.
1596
            </summary>
1597
            <value>The type name handling.</value>
1598
        </member>
1599
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
1600
            <summary>
1601
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
1602
            </summary>
1603
        </member>
1604
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
1605
            <summary>
1606
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
1607
            </summary>
1608
            <param name="id">The container Id.</param>
1609
        </member>
1610
        <member name="T:Newtonsoft.Json.JsonException">
1611
            <summary>
1612
            The exception thrown when an error occurs during Json serialization or deserialization.
1613
            </summary>
1614
        </member>
1615
        <member name="M:Newtonsoft.Json.JsonException.#ctor">
1616
            <summary>
1617
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1618
            </summary>
1619
        </member>
1620
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
1621
            <summary>
1622
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1623
            with a specified error message.
1624
            </summary>
1625
            <param name="message">The error message that explains the reason for the exception.</param>
1626
        </member>
1627
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
1628
            <summary>
1629
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1630
            with a specified error message and a reference to the inner exception that is the cause of this exception.
1631
            </summary>
1632
            <param name="message">The error message that explains the reason for the exception.</param>
1633
            <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>
1634
        </member>
1635
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1636
            <summary>
1637
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1638
            </summary>
1639
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
1640
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
1641
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
1642
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
1643
        </member>
1644
        <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
1645
            <summary>
1646
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection
1647
            and write values during serialization.
1648
            </summary>
1649
        </member>
1650
        <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
1651
            <summary>
1652
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.
1653
            </summary>
1654
        </member>
1655
        <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
1656
            <summary>
1657
            Gets or sets a value that indicates whether to write extension data when serializing the object.
1658
            </summary>
1659
            <value>
1660
                    <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1661
            </value>
1662
        </member>
1663
        <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
1664
            <summary>
1665
            Gets or sets a value that indicates whether to read extension data when deserializing the object.
1666
            </summary>
1667
            <value>
1668
                    <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1669
            </value>
1670
        </member>
1671
        <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">
1672
            <summary>
1673
            Specifies the settings used when merging JSON.
1674
            </summary>
1675
        </member>
1676
        <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">
1677
            <summary>
1678
            Gets or sets the method used when merging JSON arrays.
1679
            </summary>
1680
            <value>The method used when merging JSON arrays.</value>
1681
        </member>
1682
        <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
1683
            <summary>
1684
            Specifies how JSON arrays are merged together.
1685
            </summary>
1686
        </member>
1687
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">
1688
            <summary>Concatenate arrays.</summary>
1689
        </member>
1690
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">
1691
            <summary>Union arrays, skipping items that already exist.</summary>
1692
        </member>
1693
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">
1694
            <summary>Replace all array items.</summary>
1695
        </member>
1696
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">
1697
            <summary>Merge array items together, matched by index.</summary>
1698
        </member>
1699
        <member name="T:Newtonsoft.Json.MetadataPropertyHandling">
1700
            <summary>
1701
            Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1702
            </summary>
1703
        </member>
1704
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">
1705
            <summary>
1706
            Read metadata properties located at the start of a JSON object.
1707
            </summary>
1708
        </member>
1709
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">
1710
            <summary>
1711
            Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
1712
            </summary>
1713
        </member>
1714
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">
1715
            <summary>
1716
            Do not try to read metadata properties.
1717
            </summary>
1718
        </member>
1719
        <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">
1720
            <summary>
1721
            Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.
1722
            </summary>
1723
        </member>
1724
        <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
1725
            <summary>
1726
            Represents a trace writer.
1727
            </summary>
1728
        </member>
1729
        <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1730
            <summary>
1731
            Writes the specified trace level, message and optional exception.
1732
            </summary>
1733
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1734
            <param name="message">The trace message.</param>
1735
            <param name="ex">The trace exception. This parameter is optional.</param>
1736
        </member>
1737
        <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
1738
            <summary>
1739
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1740
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1741
            <code>Warning</code> and <code>Error</code> messages.
1742
            </summary>
1743
            <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>
1744
        </member>
1745
        <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1746
            <summary>
1747
            Writes the specified trace level, message and optional exception.
1748
            </summary>
1749
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1750
            <param name="message">The trace message.</param>
1751
            <param name="ex">The trace exception. This parameter is optional.</param>
1752
        </member>
1753
        <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">
1754
            <summary>
1755
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1756
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1757
            <code>Warning</code> and <code>Error</code> messages.
1758
            </summary>
1759
            <value>
1760
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1761
            </value>
1762
        </member>
1763
        <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
1764
            <summary>
1765
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1766
            </summary>
1767
        </member>
1768
        <member name="T:Newtonsoft.Json.Serialization.JsonContract">
1769
            <summary>
1770
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1771
            </summary>
1772
        </member>
1773
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
1774
            <summary>
1775
            Gets the underlying type for the contract.
1776
            </summary>
1777
            <value>The underlying type for the contract.</value>
1778
        </member>
1779
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
1780
            <summary>
1781
            Gets or sets the type created during deserialization.
1782
            </summary>
1783
            <value>The type created during deserialization.</value>
1784
        </member>
1785
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
1786
            <summary>
1787
            Gets or sets whether this type contract is serialized as a reference.
1788
            </summary>
1789
            <value>Whether this type contract is serialized as a reference.</value>
1790
        </member>
1791
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
1792
            <summary>
1793
            Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for this contract.
1794
            </summary>
1795
            <value>The converter.</value>
1796
        </member>
1797
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">
1798
            <summary>
1799
            Gets or sets all methods called immediately after deserialization of the object.
1800
            </summary>
1801
            <value>The methods called immediately after deserialization of the object.</value>
1802
        </member>
1803
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">
1804
            <summary>
1805
            Gets or sets all methods called during deserialization of the object.
1806
            </summary>
1807
            <value>The methods called during deserialization of the object.</value>
1808
        </member>
1809
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">
1810
            <summary>
1811
            Gets or sets all methods called after serialization of the object graph.
1812
            </summary>
1813
            <value>The methods called after serialization of the object graph.</value>
1814
        </member>
1815
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">
1816
            <summary>
1817
            Gets or sets all methods called before serialization of the object.
1818
            </summary>
1819
            <value>The methods called before serialization of the object.</value>
1820
        </member>
1821
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">
1822
            <summary>
1823
            Gets or sets all method called when an error is thrown during the serialization of the object.
1824
            </summary>
1825
            <value>The methods called when an error is thrown during the serialization of the object.</value>
1826
        </member>
1827
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized">
1828
            <summary>
1829
            Gets or sets the method called immediately after deserialization of the object.
1830
            </summary>
1831
            <value>The method called immediately after deserialization of the object.</value>
1832
        </member>
1833
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing">
1834
            <summary>
1835
            Gets or sets the method called during deserialization of the object.
1836
            </summary>
1837
            <value>The method called during deserialization of the object.</value>
1838
        </member>
1839
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized">
1840
            <summary>
1841
            Gets or sets the method called after serialization of the object graph.
1842
            </summary>
1843
            <value>The method called after serialization of the object graph.</value>
1844
        </member>
1845
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing">
1846
            <summary>
1847
            Gets or sets the method called before serialization of the object.
1848
            </summary>
1849
            <value>The method called before serialization of the object.</value>
1850
        </member>
1851
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError">
1852
            <summary>
1853
            Gets or sets the method called when an error is thrown during the serialization of the object.
1854
            </summary>
1855
            <value>The method called when an error is thrown during the serialization of the object.</value>
1856
        </member>
1857
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
1858
            <summary>
1859
            Gets or sets the default creator method used to create the object.
1860
            </summary>
1861
            <value>The default creator method used to create the object.</value>
1862
        </member>
1863
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
1864
            <summary>
1865
            Gets or sets a value indicating whether the default creator is non public.
1866
            </summary>
1867
            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
1868
        </member>
1869
        <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
1870
            <summary>
1871
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
1872
            </summary>
1873
            <param name="underlyingType">The underlying type for the contract.</param>
1874
        </member>
1875
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
1876
            <summary>
1877
            Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1878
            </summary>
1879
            <value>The converter.</value>
1880
        </member>
1881
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
1882
            <summary>
1883
            Gets or sets a value indicating whether the collection items preserve object references.
1884
            </summary>
1885
            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
1886
        </member>
1887
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
1888
            <summary>
1889
            Gets or sets the collection item reference loop handling.
1890
            </summary>
1891
            <value>The reference loop handling.</value>
1892
        </member>
1893
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
1894
            <summary>
1895
            Gets or sets the collection item type name handling.
1896
            </summary>
1897
            <value>The type name handling.</value>
1898
        </member>
1899
        <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
1900
            <summary>
1901
            Represents a trace writer that writes to memory. When the trace message limit is
1902
            reached then old trace messages will be removed as new messages are added.
1903
            </summary>
1904
        </member>
1905
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
1906
            <summary>
1907
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.
1908
            </summary>
1909
        </member>
1910
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1911
            <summary>
1912
            Writes the specified trace level, message and optional exception.
1913
            </summary>
1914
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1915
            <param name="message">The trace message.</param>
1916
            <param name="ex">The trace exception. This parameter is optional.</param>
1917
        </member>
1918
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
1919
            <summary>
1920
            Returns an enumeration of the most recent trace messages.
1921
            </summary>
1922
            <returns>An enumeration of the most recent trace messages.</returns>
1923
        </member>
1924
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
1925
            <summary>
1926
            Returns a <see cref="T:System.String"/> of the most recent trace messages.
1927
            </summary>
1928
            <returns>
1929
            A <see cref="T:System.String"/> of the most recent trace messages.
1930
            </returns>
1931
        </member>
1932
        <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
1933
            <summary>
1934
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1935
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1936
            <code>Warning</code> and <code>Error</code> messages.
1937
            </summary>
1938
            <value>
1939
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1940
            </value>
1941
        </member>
1942
        <member name="T:Newtonsoft.Json.IJsonLineInfo">
1943
            <summary>
1944
            Provides an interface to enable a class to return line and position information.
1945
            </summary>
1946
        </member>
1947
        <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
1948
            <summary>
1949
            Gets a value indicating whether the class can return line information.
1950
            </summary>
1951
            <returns>
1952
                    <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
1953
            </returns>
1954
        </member>
1955
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
1956
            <summary>
1957
            Gets the current line number.
1958
            </summary>
1959
            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>
1960
        </member>
1961
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
1962
            <summary>
1963
            Gets the current line position.
1964
            </summary>
1965
            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>
1966
        </member>
1967
        <member name="T:Newtonsoft.Json.StringEscapeHandling">
1968
            <summary>
1969
            Specifies how strings are escaped when writing JSON text.
1970
            </summary>
1971
        </member>
1972
        <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
1973
            <summary>
1974
            Only control characters (e.g. newline) are escaped.
1975
            </summary>
1976
        </member>
1977
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
1978
            <summary>
1979
            All non-ASCII and control characters (e.g. newline) are escaped.
1980
            </summary>
1981
        </member>
1982
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
1983
            <summary>
1984
            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.
1985
            </summary>
1986
        </member>
1987
        <member name="T:Newtonsoft.Json.Utilities.LinqBridge.Enumerable">
1988
            <summary>
1989
            Provides a set of static (Shared in Visual Basic) methods for 
1990
            querying objects that implement <see cref="T:System.Collections.Generic.IEnumerable`1"/>.
1991
            </summary>
1992
        </member>
1993
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.AsEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
1994
            <summary>
1995
            Returns the input typed as <see cref="T:System.Collections.Generic.IEnumerable`1"/>.
1996
            </summary>
1997
        </member>
1998
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Empty``1">
1999
            <summary>
2000
            Returns an empty <see cref="T:System.Collections.Generic.IEnumerable`1"/> that has the 
2001
            specified type argument.
2002
            </summary>
2003
        </member>
2004
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Cast``1(System.Collections.IEnumerable)">
2005
            <summary>
2006
            Converts the elements of an <see cref="T:System.Collections.IEnumerable"/> to the 
2007
            specified type.
2008
            </summary>
2009
        </member>
2010
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OfType``1(System.Collections.IEnumerable)">
2011
            <summary>
2012
            Filters the elements of an <see cref="T:System.Collections.IEnumerable"/> based on a specified type.
2013
            </summary>
2014
        </member>
2015
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Range(System.Int32,System.Int32)">
2016
            <summary>
2017
            Generates a sequence of integral numbers within a specified range.
2018
            </summary>
2019
            <param name="start">The value of the first integer in the sequence.</param>
2020
            <param name="count">The number of sequential integers to generate.</param>
2021
        </member>
2022
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Repeat``1(``0,System.Int32)">
2023
            <summary>
2024
            Generates a sequence that contains one repeated value.
2025
            </summary>
2026
        </member>
2027
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Where``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2028
            <summary>
2029
            Filters a sequence of values based on a predicate.
2030
            </summary>
2031
        </member>
2032
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Where``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Boolean})">
2033
            <summary>
2034
            Filters a sequence of values based on a predicate. 
2035
            Each element's index is used in the logic of the predicate function.
2036
            </summary>
2037
        </member>
2038
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Select``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2039
            <summary>
2040
            Projects each element of a sequence into a new form.
2041
            </summary>
2042
        </member>
2043
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Select``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,``1})">
2044
            <summary>
2045
            Projects each element of a sequence into a new form by 
2046
            incorporating the element's index.
2047
            </summary>
2048
        </member>
2049
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SelectMany``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Collections.Generic.IEnumerable{``1}})">
2050
            <summary>
2051
            Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1"/> 
2052
            and flattens the resulting sequences into one sequence.
2053
            </summary>
2054
        </member>
2055
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SelectMany``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}})">
2056
            <summary>
2057
            Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1"/>, 
2058
            and flattens the resulting sequences into one sequence. The 
2059
            index of each source element is used in the projected form of 
2060
            that element.
2061
            </summary>
2062
        </member>
2063
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SelectMany``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Collections.Generic.IEnumerable{``1}},Newtonsoft.Json.Serialization.Func{``0,``1,``2})">
2064
            <summary>
2065
            Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1"/>, 
2066
            flattens the resulting sequences into one sequence, and invokes 
2067
            a result selector function on each element therein.
2068
            </summary>
2069
        </member>
2070
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SelectMany``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}},Newtonsoft.Json.Serialization.Func{``0,``1,``2})">
2071
            <summary>
2072
            Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1"/>, 
2073
            flattens the resulting sequences into one sequence, and invokes 
2074
            a result selector function on each element therein. The index of 
2075
            each source element is used in the intermediate projected form 
2076
            of that element.
2077
            </summary>
2078
        </member>
2079
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.TakeWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2080
            <summary>
2081
            Returns elements from a sequence as long as a specified condition is true.
2082
            </summary>
2083
        </member>
2084
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.TakeWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Boolean})">
2085
            <summary>
2086
            Returns elements from a sequence as long as a specified condition is true.
2087
            The element's index is used in the logic of the predicate function.
2088
            </summary>
2089
        </member>
2090
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.FirstImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0})">
2091
            <summary>
2092
            Base implementation of First operator.
2093
            </summary>
2094
        </member>
2095
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.First``1(System.Collections.Generic.IEnumerable{``0})">
2096
            <summary>
2097
            Returns the first element of a sequence.
2098
            </summary>
2099
        </member>
2100
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.First``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2101
            <summary>
2102
            Returns the first element in a sequence that satisfies a specified condition.
2103
            </summary>
2104
        </member>
2105
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0})">
2106
            <summary>
2107
            Returns the first element of a sequence, or a default value if 
2108
            the sequence contains no elements.
2109
            </summary>
2110
        </member>
2111
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2112
            <summary>
2113
            Returns the first element of the sequence that satisfies a 
2114
            condition or a default value if no such element is found.
2115
            </summary>
2116
        </member>
2117
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LastImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0})">
2118
            <summary>
2119
            Base implementation of Last operator.
2120
            </summary>
2121
        </member>
2122
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Last``1(System.Collections.Generic.IEnumerable{``0})">
2123
            <summary>
2124
            Returns the last element of a sequence.
2125
            </summary>
2126
        </member>
2127
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Last``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2128
            <summary>
2129
            Returns the last element of a sequence that satisfies a 
2130
            specified condition.
2131
            </summary>
2132
        </member>
2133
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0})">
2134
            <summary>
2135
            Returns the last element of a sequence, or a default value if 
2136
            the sequence contains no elements.
2137
            </summary>
2138
        </member>
2139
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2140
            <summary>
2141
            Returns the last element of a sequence that satisfies a 
2142
            condition or a default value if no such element is found.
2143
            </summary>
2144
        </member>
2145
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SingleImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0})">
2146
            <summary>
2147
            Base implementation of Single operator.
2148
            </summary>
2149
        </member>
2150
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Single``1(System.Collections.Generic.IEnumerable{``0})">
2151
            <summary>
2152
            Returns the only element of a sequence, and throws an exception 
2153
            if there is not exactly one element in the sequence.
2154
            </summary>
2155
        </member>
2156
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Single``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2157
            <summary>
2158
            Returns the only element of a sequence that satisfies a 
2159
            specified condition, and throws an exception if more than one 
2160
            such element exists.
2161
            </summary>
2162
        </member>
2163
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0})">
2164
            <summary>
2165
            Returns the only element of a sequence, or a default value if 
2166
            the sequence is empty; this method throws an exception if there 
2167
            is more than one element in the sequence.
2168
            </summary>
2169
        </member>
2170
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2171
            <summary>
2172
            Returns the only element of a sequence that satisfies a 
2173
            specified condition or a default value if no such element 
2174
            exists; this method throws an exception if more than one element 
2175
            satisfies the condition.
2176
            </summary>
2177
        </member>
2178
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ElementAt``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
2179
            <summary>
2180
            Returns the element at a specified index in a sequence.
2181
            </summary>
2182
        </member>
2183
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ElementAtOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
2184
            <summary>
2185
            Returns the element at a specified index in a sequence or a 
2186
            default value if the index is out of range.
2187
            </summary>
2188
        </member>
2189
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Reverse``1(System.Collections.Generic.IEnumerable{``0})">
2190
            <summary>
2191
            Inverts the order of the elements in a sequence.
2192
            </summary>
2193
        </member>
2194
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Take``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
2195
            <summary>
2196
            Returns a specified number of contiguous elements from the start 
2197
            of a sequence.
2198
            </summary>
2199
        </member>
2200
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Skip``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
2201
            <summary>
2202
            Bypasses a specified number of elements in a sequence and then 
2203
            returns the remaining elements.
2204
            </summary>
2205
        </member>
2206
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SkipWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2207
            <summary>
2208
            Bypasses elements in a sequence as long as a specified condition 
2209
            is true and then returns the remaining elements.
2210
            </summary>
2211
        </member>
2212
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SkipWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Boolean})">
2213
            <summary>
2214
            Bypasses elements in a sequence as long as a specified condition 
2215
            is true and then returns the remaining elements. The element's 
2216
            index is used in the logic of the predicate function.
2217
            </summary>
2218
        </member>
2219
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Count``1(System.Collections.Generic.IEnumerable{``0})">
2220
            <summary>
2221
            Returns the number of elements in a sequence.
2222
            </summary>
2223
        </member>
2224
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Count``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2225
            <summary>
2226
            Returns a number that represents how many elements in the 
2227
            specified sequence satisfy a condition.
2228
            </summary>
2229
        </member>
2230
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LongCount``1(System.Collections.Generic.IEnumerable{``0})">
2231
            <summary>
2232
            Returns an <see cref="T:System.Int64"/> that represents the total number 
2233
            of elements in a sequence.
2234
            </summary>
2235
        </member>
2236
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LongCount``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2237
            <summary>
2238
            Returns an <see cref="T:System.Int64"/> that represents how many elements 
2239
            in a sequence satisfy a condition.
2240
            </summary>
2241
        </member>
2242
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Concat``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
2243
            <summary>
2244
            Concatenates two sequences.
2245
            </summary>
2246
        </member>
2247
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToList``1(System.Collections.Generic.IEnumerable{``0})">
2248
            <summary>
2249
            Creates a <see cref="T:System.Collections.Generic.List`1"/> from an <see cref="T:System.Collections.Generic.IEnumerable`1"/>.
2250
            </summary>
2251
        </member>
2252
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToArray``1(System.Collections.Generic.IEnumerable{``0})">
2253
            <summary>
2254
            Creates an array from an <see cref="T:System.Collections.Generic.IEnumerable`1"/>.
2255
            </summary>
2256
        </member>
2257
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Distinct``1(System.Collections.Generic.IEnumerable{``0})">
2258
            <summary>
2259
            Returns distinct elements from a sequence by using the default 
2260
            equality comparer to compare values.
2261
            </summary>
2262
        </member>
2263
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Distinct``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
2264
            <summary>
2265
            Returns distinct elements from a sequence by using a specified 
2266
            <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> to compare values.
2267
            </summary>
2268
        </member>
2269
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2270
            <summary>
2271
            Creates a <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/> from an 
2272
            <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key 
2273
            selector function.
2274
            </summary>
2275
        </member>
2276
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
2277
            <summary>
2278
            Creates a <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/> from an 
2279
            <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key 
2280
            selector function and a key comparer.
2281
            </summary>
2282
        </member>
2283
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2})">
2284
            <summary>
2285
            Creates a <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/> from an 
2286
            <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to specified key 
2287
            and element selector functions.
2288
            </summary>
2289
        </member>
2290
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">
2291
            <summary>
2292
            Creates a <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/> from an 
2293
            <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key 
2294
            selector function, a comparer and an element selector function.
2295
            </summary>
2296
        </member>
2297
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2298
            <summary>
2299
            Groups the elements of a sequence according to a specified key 
2300
            selector function.
2301
            </summary>
2302
        </member>
2303
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
2304
            <summary>
2305
            Groups the elements of a sequence according to a specified key 
2306
            selector function and compares the keys by using a specified 
2307
            comparer.
2308
            </summary>
2309
        </member>
2310
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2})">
2311
            <summary>
2312
            Groups the elements of a sequence according to a specified key 
2313
            selector function and projects the elements for each group by 
2314
            using a specified function.
2315
            </summary>
2316
        </member>
2317
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">
2318
            <summary>
2319
            Groups the elements of a sequence according to a specified key 
2320
            selector function and creates a result value from each group and 
2321
            its key.
2322
            </summary>
2323
        </member>
2324
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``1,System.Collections.Generic.IEnumerable{``0},``2})">
2325
            <summary>
2326
            Groups the elements of a sequence according to a key selector 
2327
            function. The keys are compared by using a comparer and each 
2328
            group's elements are projected by using a specified function.
2329
            </summary>
2330
        </member>
2331
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``1,System.Collections.Generic.IEnumerable{``0},``2},System.Collections.Generic.IEqualityComparer{``1})">
2332
            <summary>
2333
            Groups the elements of a sequence according to a specified key 
2334
            selector function and creates a result value from each group and 
2335
            its key. The elements of each group are projected by using a 
2336
            specified function.
2337
            </summary>
2338
        </member>
2339
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``4(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,System.Collections.Generic.IEnumerable{``2},``3})">
2340
            <summary>
2341
            Groups the elements of a sequence according to a specified key 
2342
            selector function and creates a result value from each group and 
2343
            its key. The keys are compared by using a specified comparer.
2344
            </summary>
2345
        </member>
2346
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``4(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,System.Collections.Generic.IEnumerable{``2},``3},System.Collections.Generic.IEqualityComparer{``1})">
2347
            <summary>
2348
            Groups the elements of a sequence according to a specified key 
2349
            selector function and creates a result value from each group and 
2350
            its key. Key values are compared by using a specified comparer, 
2351
            and the elements of each group are projected by using a 
2352
            specified function.
2353
            </summary>
2354
        </member>
2355
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Aggregate``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``0,``0})">
2356
            <summary>
2357
            Applies an accumulator function over a sequence.
2358
            </summary>
2359
        </member>
2360
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Aggregate``2(System.Collections.Generic.IEnumerable{``0},``1,Newtonsoft.Json.Serialization.Func{``1,``0,``1})">
2361
            <summary>
2362
            Applies an accumulator function over a sequence. The specified 
2363
            seed value is used as the initial accumulator value.
2364
            </summary>
2365
        </member>
2366
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Aggregate``3(System.Collections.Generic.IEnumerable{``0},``1,Newtonsoft.Json.Serialization.Func{``1,``0,``1},Newtonsoft.Json.Serialization.Func{``1,``2})">
2367
            <summary>
2368
            Applies an accumulator function over a sequence. The specified 
2369
            seed value is used as the initial accumulator value, and the 
2370
            specified function is used to select the result value.
2371
            </summary>
2372
        </member>
2373
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Union``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
2374
            <summary>
2375
            Produces the set union of two sequences by using the default 
2376
            equality comparer.
2377
            </summary>
2378
        </member>
2379
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Union``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
2380
            <summary>
2381
            Produces the set union of two sequences by using a specified 
2382
            <see cref="T:System.Collections.Generic.IEqualityComparer`1"/>.
2383
            </summary>
2384
        </member>
2385
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.DefaultIfEmpty``1(System.Collections.Generic.IEnumerable{``0})">
2386
            <summary>
2387
            Returns the elements of the specified sequence or the type 
2388
            parameter's default value in a singleton collection if the 
2389
            sequence is empty.
2390
            </summary>
2391
        </member>
2392
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.DefaultIfEmpty``1(System.Collections.Generic.IEnumerable{``0},``0)">
2393
            <summary>
2394
            Returns the elements of the specified sequence or the specified 
2395
            value in a singleton collection if the sequence is empty.
2396
            </summary>
2397
        </member>
2398
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.All``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2399
            <summary>
2400
            Determines whether all elements of a sequence satisfy a condition.
2401
            </summary>
2402
        </member>
2403
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Any``1(System.Collections.Generic.IEnumerable{``0})">
2404
            <summary>
2405
            Determines whether a sequence contains any elements.
2406
            </summary>
2407
        </member>
2408
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Any``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2409
            <summary>
2410
            Determines whether any element of a sequence satisfies a 
2411
            condition.
2412
            </summary>
2413
        </member>
2414
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Contains``1(System.Collections.Generic.IEnumerable{``0},``0)">
2415
            <summary>
2416
            Determines whether a sequence contains a specified element by 
2417
            using the default equality comparer.
2418
            </summary>
2419
        </member>
2420
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Contains``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
2421
            <summary>
2422
            Determines whether a sequence contains a specified element by 
2423
            using a specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/>.
2424
            </summary>
2425
        </member>
2426
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SequenceEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
2427
            <summary>
2428
            Determines whether two sequences are equal by comparing the 
2429
            elements by using the default equality comparer for their type.
2430
            </summary>
2431
        </member>
2432
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SequenceEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
2433
            <summary>
2434
            Determines whether two sequences are equal by comparing their 
2435
            elements by using a specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/>.
2436
            </summary>
2437
        </member>
2438
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.MinMaxImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``0,System.Boolean})">
2439
            <summary>
2440
            Base implementation for Min/Max operator.
2441
            </summary>
2442
        </member>
2443
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.MinMaxImpl``1(System.Collections.Generic.IEnumerable{System.Nullable{``0}},System.Nullable{``0},Newtonsoft.Json.Serialization.Func{System.Nullable{``0},System.Nullable{``0},System.Boolean})">
2444
            <summary>
2445
            Base implementation for Min/Max operator for nullable types.
2446
            </summary>
2447
        </member>
2448
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0})">
2449
            <summary>
2450
            Returns the minimum value in a generic sequence.
2451
            </summary>
2452
        </member>
2453
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2454
            <summary>
2455
            Invokes a transform function on each element of a generic 
2456
            sequence and returns the minimum resulting value.
2457
            </summary>
2458
        </member>
2459
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0})">
2460
            <summary>
2461
            Returns the maximum value in a generic sequence.
2462
            </summary>
2463
        </member>
2464
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2465
            <summary>
2466
            Invokes a transform function on each element of a generic 
2467
            sequence and returns the maximum resulting value.
2468
            </summary>
2469
        </member>
2470
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Renumerable``1(System.Collections.Generic.IEnumerator{``0})">
2471
            <summary>
2472
            Makes an enumerator seen as enumerable once more.
2473
            </summary>
2474
            <remarks>
2475
            The supplied enumerator must have been started. The first element
2476
            returned is the element the enumerator was on when passed in.
2477
            DO NOT use this method if the caller must be a generator. It is
2478
            mostly safe among aggregate operations.
2479
            </remarks>
2480
        </member>
2481
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2482
            <summary>
2483
            Sorts the elements of a sequence in ascending order according to a key.
2484
            </summary>
2485
        </member>
2486
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
2487
            <summary>
2488
            Sorts the elements of a sequence in ascending order by using a 
2489
            specified comparer.
2490
            </summary>
2491
        </member>
2492
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderByDescending``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2493
            <summary>
2494
            Sorts the elements of a sequence in descending order according to a key.
2495
            </summary>
2496
        </member>
2497
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderByDescending``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
2498
            <summary>
2499
             Sorts the elements of a sequence in descending order by using a 
2500
            specified comparer. 
2501
            </summary>
2502
        </member>
2503
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenBy``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2504
            <summary>
2505
            Performs a subsequent ordering of the elements in a sequence in 
2506
            ascending order according to a key.
2507
            </summary>
2508
        </member>
2509
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenBy``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
2510
            <summary>
2511
            Performs a subsequent ordering of the elements in a sequence in 
2512
            ascending order by using a specified comparer.
2513
            </summary>
2514
        </member>
2515
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenByDescending``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2516
            <summary>
2517
            Performs a subsequent ordering of the elements in a sequence in 
2518
            descending order, according to a key.
2519
            </summary>
2520
        </member>
2521
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenByDescending``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
2522
            <summary>
2523
            Performs a subsequent ordering of the elements in a sequence in 
2524
            descending order by using a specified comparer.
2525
            </summary>
2526
        </member>
2527
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.IntersectExceptImpl``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0},System.Boolean)">
2528
            <summary>
2529
            Base implementation for Intersect and Except operators.
2530
            </summary>
2531
        </member>
2532
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Intersect``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
2533
            <summary>
2534
            Produces the set intersection of two sequences by using the 
2535
            default equality comparer to compare values.
2536
            </summary>
2537
        </member>
2538
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Intersect``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
2539
            <summary>
2540
            Produces the set intersection of two sequences by using the 
2541
            specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> to compare values.
2542
            </summary>
2543
        </member>
2544
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Except``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
2545
            <summary>
2546
            Produces the set difference of two sequences by using the 
2547
            default equality comparer to compare values.
2548
            </summary>
2549
        </member>
2550
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Except``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
2551
            <summary>
2552
            Produces the set difference of two sequences by using the 
2553
            specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> to compare values.
2554
            </summary>
2555
        </member>
2556
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2557
            <summary>
2558
            Creates a <see cref="T:System.Collections.Generic.Dictionary`2"/> from an 
2559
            <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key 
2560
            selector function.
2561
            </summary>
2562
        </member>
2563
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
2564
            <summary>
2565
            Creates a <see cref="T:System.Collections.Generic.Dictionary`2"/> from an 
2566
            <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key 
2567
            selector function and key comparer.
2568
            </summary>
2569
        </member>
2570
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2})">
2571
            <summary>
2572
            Creates a <see cref="T:System.Collections.Generic.Dictionary`2"/> from an 
2573
            <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to specified key 
2574
            selector and element selector functions.
2575
            </summary>
2576
        </member>
2577
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">
2578
            <summary>
2579
            Creates a <see cref="T:System.Collections.Generic.Dictionary`2"/> from an 
2580
            <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key 
2581
            selector function, a comparer, and an element selector function.
2582
            </summary>
2583
        </member>
2584
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Join``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,``2},Newtonsoft.Json.Serialization.Func{``0,``1,``3})">
2585
            <summary>
2586
            Correlates the elements of two sequences based on matching keys. 
2587
            The default equality comparer is used to compare keys.
2588
            </summary>
2589
        </member>
2590
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Join``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,``2},Newtonsoft.Json.Serialization.Func{``0,``1,``3},System.Collections.Generic.IEqualityComparer{``2})">
2591
            <summary>
2592
            Correlates the elements of two sequences based on matching keys. 
2593
            The default equality comparer is used to compare keys. A 
2594
            specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> is used to compare keys.
2595
            </summary>
2596
        </member>
2597
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,``2},Newtonsoft.Json.Serialization.Func{``0,System.Collections.Generic.IEnumerable{``1},``3})">
2598
            <summary>
2599
            Correlates the elements of two sequences based on equality of 
2600
            keys and groups the results. The default equality comparer is 
2601
            used to compare keys.
2602
            </summary>
2603
        </member>
2604
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,``2},Newtonsoft.Json.Serialization.Func{``0,System.Collections.Generic.IEnumerable{``1},``3},System.Collections.Generic.IEqualityComparer{``2})">
2605
            <summary>
2606
            Correlates the elements of two sequences based on equality of 
2607
            keys and groups the results. The default equality comparer is 
2608
            used to compare keys. A specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> 
2609
            is used to compare keys.
2610
            </summary>
2611
        </member>
2612
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Int32})">
2613
            <summary>
2614
            Computes the sum of a sequence of nullable <see cref="T:System.Int32"/> values.
2615
            </summary>
2616
        </member>
2617
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32})">
2618
            <summary>
2619
            Computes the sum of a sequence of nullable <see cref="T:System.Int32"/> 
2620
            values that are obtained by invoking a transform function on 
2621
            each element of the input sequence.
2622
            </summary>
2623
        </member>
2624
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Int32})">
2625
            <summary>
2626
            Computes the average of a sequence of nullable <see cref="T:System.Int32"/> values.
2627
            </summary>
2628
        </member>
2629
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32})">
2630
            <summary>
2631
            Computes the average of a sequence of nullable <see cref="T:System.Int32"/> values 
2632
            that are obtained by invoking a transform function on each 
2633
            element of the input sequence.
2634
            </summary>
2635
        </member>
2636
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
2637
            <summary>
2638
            Computes the sum of a sequence of <see cref="T:System.Int32"/> values.
2639
            </summary>
2640
        </member>
2641
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})">
2642
            <summary>
2643
            Computes the sum of a sequence of <see cref="T:System.Int32"/> 
2644
            values that are obtained by invoking a transform function on 
2645
            each element of the input sequence.
2646
            </summary>
2647
        </member>
2648
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
2649
            <summary>
2650
            Computes the average of a sequence of <see cref="T:System.Int32"/> values.
2651
            </summary>
2652
        </member>
2653
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})">
2654
            <summary>
2655
            Computes the average of a sequence of <see cref="T:System.Int32"/> values 
2656
            that are obtained by invoking a transform function on each 
2657
            element of the input sequence.
2658
            </summary>
2659
        </member>
2660
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
2661
            <summary>
2662
            Returns the minimum value in a sequence of nullable 
2663
            <see cref="T:System.Int32"/> values.
2664
            </summary>
2665
        </member>
2666
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})">
2667
            <summary>
2668
            Invokes a transform function on each element of a sequence and 
2669
            returns the minimum nullable <see cref="T:System.Int32"/> value.
2670
            </summary>
2671
        </member>
2672
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
2673
            <summary>
2674
            Returns the maximum value in a sequence of nullable 
2675
            <see cref="T:System.Int32"/> values.
2676
            </summary>
2677
        </member>
2678
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})">
2679
            <summary>
2680
            Invokes a transform function on each element of a sequence and 
2681
            returns the maximum nullable <see cref="T:System.Int32"/> value.
2682
            </summary>
2683
        </member>
2684
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Int64})">
2685
            <summary>
2686
            Computes the sum of a sequence of nullable <see cref="T:System.Int64"/> values.
2687
            </summary>
2688
        </member>
2689
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int64})">
2690
            <summary>
2691
            Computes the sum of a sequence of nullable <see cref="T:System.Int64"/> 
2692
            values that are obtained by invoking a transform function on 
2693
            each element of the input sequence.
2694
            </summary>
2695
        </member>
2696
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Int64})">
2697
            <summary>
2698
            Computes the average of a sequence of nullable <see cref="T:System.Int64"/> values.
2699
            </summary>
2700
        </member>
2701
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int64})">
2702
            <summary>
2703
            Computes the average of a sequence of nullable <see cref="T:System.Int64"/> values 
2704
            that are obtained by invoking a transform function on each 
2705
            element of the input sequence.
2706
            </summary>
2707
        </member>
2708
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">
2709
            <summary>
2710
            Computes the sum of a sequence of <see cref="T:System.Int64"/> values.
2711
            </summary>
2712
        </member>
2713
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})">
2714
            <summary>
2715
            Computes the sum of a sequence of <see cref="T:System.Int64"/> 
2716
            values that are obtained by invoking a transform function on 
2717
            each element of the input sequence.
2718
            </summary>
2719
        </member>
2720
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">
2721
            <summary>
2722
            Computes the average of a sequence of <see cref="T:System.Int64"/> values.
2723
            </summary>
2724
        </member>
2725
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})">
2726
            <summary>
2727
            Computes the average of a sequence of <see cref="T:System.Int64"/> values 
2728
            that are obtained by invoking a transform function on each 
2729
            element of the input sequence.
2730
            </summary>
2731
        </member>
2732
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">
2733
            <summary>
2734
            Returns the minimum value in a sequence of nullable 
2735
            <see cref="T:System.Int64"/> values.
2736
            </summary>
2737
        </member>
2738
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})">
2739
            <summary>
2740
            Invokes a transform function on each element of a sequence and 
2741
            returns the minimum nullable <see cref="T:System.Int64"/> value.
2742
            </summary>
2743
        </member>
2744
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">
2745
            <summary>
2746
            Returns the maximum value in a sequence of nullable 
2747
            <see cref="T:System.Int64"/> values.
2748
            </summary>
2749
        </member>
2750
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})">
2751
            <summary>
2752
            Invokes a transform function on each element of a sequence and 
2753
            returns the maximum nullable <see cref="T:System.Int64"/> value.
2754
            </summary>
2755
        </member>
2756
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Single})">
2757
            <summary>
2758
            Computes the sum of a sequence of nullable <see cref="T:System.Single"/> values.
2759
            </summary>
2760
        </member>
2761
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Single})">
2762
            <summary>
2763
            Computes the sum of a sequence of nullable <see cref="T:System.Single"/> 
2764
            values that are obtained by invoking a transform function on 
2765
            each element of the input sequence.
2766
            </summary>
2767
        </member>
2768
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Single})">
2769
            <summary>
2770
            Computes the average of a sequence of nullable <see cref="T:System.Single"/> values.
2771
            </summary>
2772
        </member>
2773
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Single})">
2774
            <summary>
2775
            Computes the average of a sequence of nullable <see cref="T:System.Single"/> values 
2776
            that are obtained by invoking a transform function on each 
2777
            element of the input sequence.
2778
            </summary>
2779
        </member>
2780
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">
2781
            <summary>
2782
            Computes the sum of a sequence of <see cref="T:System.Single"/> values.
2783
            </summary>
2784
        </member>
2785
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})">
2786
            <summary>
2787
            Computes the sum of a sequence of <see cref="T:System.Single"/> 
2788
            values that are obtained by invoking a transform function on 
2789
            each element of the input sequence.
2790
            </summary>
2791
        </member>
2792
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">
2793
            <summary>
2794
            Computes the average of a sequence of <see cref="T:System.Single"/> values.
2795
            </summary>
2796
        </member>
2797
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})">
2798
            <summary>
2799
            Computes the average of a sequence of <see cref="T:System.Single"/> values 
2800
            that are obtained by invoking a transform function on each 
2801
            element of the input sequence.
2802
            </summary>
2803
        </member>
2804
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">
2805
            <summary>
2806
            Returns the minimum value in a sequence of nullable 
2807
            <see cref="T:System.Single"/> values.
2808
            </summary>
2809
        </member>
2810
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})">
2811
            <summary>
2812
            Invokes a transform function on each element of a sequence and 
2813
            returns the minimum nullable <see cref="T:System.Single"/> value.
2814
            </summary>
2815
        </member>
2816
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">
2817
            <summary>
2818
            Returns the maximum value in a sequence of nullable 
2819
            <see cref="T:System.Single"/> values.
2820
            </summary>
2821
        </member>
2822
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})">
2823
            <summary>
2824
            Invokes a transform function on each element of a sequence and 
2825
            returns the maximum nullable <see cref="T:System.Single"/> value.
2826
            </summary>
2827
        </member>
2828
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Double})">
2829
            <summary>
2830
            Computes the sum of a sequence of nullable <see cref="T:System.Double"/> values.
2831
            </summary>
2832
        </member>
2833
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Double})">
2834
            <summary>
2835
            Computes the sum of a sequence of nullable <see cref="T:System.Double"/> 
2836
            values that are obtained by invoking a transform function on 
2837
            each element of the input sequence.
2838
            </summary>
2839
        </member>
2840
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Double})">
2841
            <summary>
2842
            Computes the average of a sequence of nullable <see cref="T:System.Double"/> values.
2843
            </summary>
2844
        </member>
2845
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Double})">
2846
            <summary>
2847
            Computes the average of a sequence of nullable <see cref="T:System.Double"/> values 
2848
            that are obtained by invoking a transform function on each 
2849
            element of the input sequence.
2850
            </summary>
2851
        </member>
2852
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">
2853
            <summary>
2854
            Computes the sum of a sequence of <see cref="T:System.Double"/> values.
2855
            </summary>
2856
        </member>
2857
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})">
2858
            <summary>
2859
            Computes the sum of a sequence of <see cref="T:System.Double"/> 
2860
            values that are obtained by invoking a transform function on 
2861
            each element of the input sequence.
2862
            </summary>
2863
        </member>
2864
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">
2865
            <summary>
2866
            Computes the average of a sequence of <see cref="T:System.Double"/> values.
2867
            </summary>
2868
        </member>
2869
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})">
2870
            <summary>
2871
            Computes the average of a sequence of <see cref="T:System.Double"/> values 
2872
            that are obtained by invoking a transform function on each 
2873
            element of the input sequence.
2874
            </summary>
2875
        </member>
2876
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">
2877
            <summary>
2878
            Returns the minimum value in a sequence of nullable 
2879
            <see cref="T:System.Double"/> values.
2880
            </summary>
2881
        </member>
2882
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})">
2883
            <summary>
2884
            Invokes a transform function on each element of a sequence and 
2885
            returns the minimum nullable <see cref="T:System.Double"/> value.
2886
            </summary>
2887
        </member>
2888
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">
2889
            <summary>
2890
            Returns the maximum value in a sequence of nullable 
2891
            <see cref="T:System.Double"/> values.
2892
            </summary>
2893
        </member>
2894
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})">
2895
            <summary>
2896
            Invokes a transform function on each element of a sequence and 
2897
            returns the maximum nullable <see cref="T:System.Double"/> value.
2898
            </summary>
2899
        </member>
2900
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Decimal})">
2901
            <summary>
2902
            Computes the sum of a sequence of nullable <see cref="T:System.Decimal"/> values.
2903
            </summary>
2904
        </member>
2905
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Decimal})">
2906
            <summary>
2907
            Computes the sum of a sequence of nullable <see cref="T:System.Decimal"/> 
2908
            values that are obtained by invoking a transform function on 
2909
            each element of the input sequence.
2910
            </summary>
2911
        </member>
2912
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Decimal})">
2913
            <summary>
2914
            Computes the average of a sequence of nullable <see cref="T:System.Decimal"/> values.
2915
            </summary>
2916
        </member>
2917
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Decimal})">
2918
            <summary>
2919
            Computes the average of a sequence of nullable <see cref="T:System.Decimal"/> values 
2920
            that are obtained by invoking a transform function on each 
2921
            element of the input sequence.
2922
            </summary>
2923
        </member>
2924
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">
2925
            <summary>
2926
            Computes the sum of a sequence of <see cref="T:System.Decimal"/> values.
2927
            </summary>
2928
        </member>
2929
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})">
2930
            <summary>
2931
            Computes the sum of a sequence of <see cref="T:System.Decimal"/> 
2932
            values that are obtained by invoking a transform function on 
2933
            each element of the input sequence.
2934
            </summary>
2935
        </member>
2936
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">
2937
            <summary>
2938
            Computes the average of a sequence of <see cref="T:System.Decimal"/> values.
2939
            </summary>
2940
        </member>
2941
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})">
2942
            <summary>
2943
            Computes the average of a sequence of <see cref="T:System.Decimal"/> values 
2944
            that are obtained by invoking a transform function on each 
2945
            element of the input sequence.
2946
            </summary>
2947
        </member>
2948
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">
2949
            <summary>
2950
            Returns the minimum value in a sequence of nullable 
2951
            <see cref="T:System.Decimal"/> values.
2952
            </summary>
2953
        </member>
2954
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})">
2955
            <summary>
2956
            Invokes a transform function on each element of a sequence and 
2957
            returns the minimum nullable <see cref="T:System.Decimal"/> value.
2958
            </summary>
2959
        </member>
2960
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">
2961
            <summary>
2962
            Returns the maximum value in a sequence of nullable 
2963
            <see cref="T:System.Decimal"/> values.
2964
            </summary>
2965
        </member>
2966
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})">
2967
            <summary>
2968
            Invokes a transform function on each element of a sequence and 
2969
            returns the maximum nullable <see cref="T:System.Decimal"/> value.
2970
            </summary>
2971
        </member>
2972
        <member name="T:Newtonsoft.Json.Utilities.LinqBridge.IGrouping`2">
2973
            <summary>
2974
            Represents a collection of objects that have a common key.
2975
            </summary>
2976
        </member>
2977
        <member name="P:Newtonsoft.Json.Utilities.LinqBridge.IGrouping`2.Key">
2978
            <summary>
2979
            Gets the key of the <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.IGrouping`2"/>.
2980
            </summary>
2981
        </member>
2982
        <member name="T:Newtonsoft.Json.Utilities.LinqBridge.ILookup`2">
2983
            <summary>
2984
            Defines an indexer, size property, and Boolean search method for 
2985
            data structures that map keys to <see cref="T:System.Collections.Generic.IEnumerable`1"/> 
2986
            sequences of values.
2987
            </summary>
2988
        </member>
2989
        <member name="T:Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable`1">
2990
            <summary>
2991
            Represents a sorted sequence.
2992
            </summary>
2993
        </member>
2994
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable`1.CreateOrderedEnumerable``1(Newtonsoft.Json.Serialization.Func{`0,``0},System.Collections.Generic.IComparer{``0},System.Boolean)">
2995
            <summary>
2996
            Performs a subsequent ordering on the elements of an 
2997
            <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable`1"/> according to a key.
2998
            </summary>
2999
        </member>
3000
        <member name="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2">
3001
            <summary>
3002
            Represents a collection of keys each mapped to one or more values.
3003
            </summary>
3004
        </member>
3005
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.Contains(`0)">
3006
            <summary>
3007
            Determines whether a specified key is in the <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/>.
3008
            </summary>
3009
        </member>
3010
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.ApplyResultSelector``1(Newtonsoft.Json.Serialization.Func{`0,System.Collections.Generic.IEnumerable{`1},``0})">
3011
            <summary>
3012
            Applies a transform function to each key and its associated 
3013
            values and returns the results.
3014
            </summary>
3015
        </member>
3016
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.GetEnumerator">
3017
            <summary>
3018
            Returns a generic enumerator that iterates through the <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/>.
3019
            </summary>
3020
        </member>
3021
        <member name="P:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.Count">
3022
            <summary>
3023
            Gets the number of key/value collection pairs in the <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/>.
3024
            </summary>
3025
        </member>
3026
        <member name="P:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.Item(`0)">
3027
            <summary>
3028
            Gets the collection of values indexed by the specified key.
3029
            </summary>
3030
        </member>
3031
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.OrderedEnumerable`2.TagPosition(`0,System.Int32)">
3032
            <remarks>
3033
            See <a href="http://code.google.com/p/linqbridge/issues/detail?id=11">issue #11</a>
3034
            for why this method is needed and cannot be expressed as a 
3035
            lambda at the call site.
3036
            </remarks>
3037
        </member>
3038
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.OrderedEnumerable`2.GetFirst(Newtonsoft.Json.Utilities.LinqBridge.Tuple{`0,System.Int32})">
3039
            <remarks>
3040
            See <a href="http://code.google.com/p/linqbridge/issues/detail?id=11">issue #11</a>
3041
            for why this method is needed and cannot be expressed as a 
3042
            lambda at the call site.
3043
            </remarks>
3044
        </member>
3045
        <member name="T:System.Runtime.CompilerServices.ExtensionAttribute">
3046
            <remarks>
3047
            This attribute allows us to define extension methods without 
3048
            requiring .NET Framework 3.5. For more information, see the section,
3049
            <a href="http://msdn.microsoft.com/en-us/magazine/cc163317.aspx#S7">Extension Methods in .NET Framework 2.0 Apps</a>,
3050
            of <a href="http://msdn.microsoft.com/en-us/magazine/cc163317.aspx">Basic Instincts: Extension Methods</a>
3051
            column in <a href="http://msdn.microsoft.com/msdnmag/">MSDN Magazine</a>, 
3052
            issue <a href="http://msdn.microsoft.com/en-us/magazine/cc135410.aspx">Nov 2007</a>.
3053
            </remarks>
3054
        </member>
3055
        <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
3056
            <summary>
3057
            Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
3058
            </summary>
3059
        </member>
3060
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">
3061
            <summary>
3062
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
3063
            </summary>
3064
            <param name="name">The name.</param>
3065
        </member>
3066
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
3067
            <summary>
3068
            When overridden in a derived class, returns whether resetting an object changes its value.
3069
            </summary>
3070
            <returns>
3071
            true if resetting the component changes its value; otherwise, false.
3072
            </returns>
3073
            <param name="component">The component to test for reset capability. 
3074
                            </param>
3075
        </member>
3076
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
3077
            <summary>
3078
            When overridden in a derived class, gets the current value of the property on a component.
3079
            </summary>
3080
            <returns>
3081
            The value of a property for a given component.
3082
            </returns>
3083
            <param name="component">The component with the property for which to retrieve the value. 
3084
                            </param>
3085
        </member>
3086
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
3087
            <summary>
3088
            When overridden in a derived class, resets the value for this property of the component to the default value.
3089
            </summary>
3090
            <param name="component">The component with the property value that is to be reset to the default value. 
3091
                            </param>
3092
        </member>
3093
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
3094
            <summary>
3095
            When overridden in a derived class, sets the value of the component to a different value.
3096
            </summary>
3097
            <param name="component">The component with the property value that is to be set. 
3098
                            </param><param name="value">The new value. 
3099
                            </param>
3100
        </member>
3101
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
3102
            <summary>
3103
            When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
3104
            </summary>
3105
            <returns>
3106
            true if the property should be persisted; otherwise, false.
3107
            </returns>
3108
            <param name="component">The component with the property to be examined for persistence. 
3109
                            </param>
3110
        </member>
3111
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
3112
            <summary>
3113
            When overridden in a derived class, gets the type of the component this property is bound to.
3114
            </summary>
3115
            <returns>
3116
            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.
3117
            </returns>
3118
        </member>
3119
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
3120
            <summary>
3121
            When overridden in a derived class, gets a value indicating whether this property is read-only.
3122
            </summary>
3123
            <returns>
3124
            true if the property is read-only; otherwise, false.
3125
            </returns>
3126
        </member>
3127
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
3128
            <summary>
3129
            When overridden in a derived class, gets the type of the property.
3130
            </summary>
3131
            <returns>
3132
            A <see cref="T:System.Type"/> that represents the type of the property.
3133
            </returns>
3134
        </member>
3135
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
3136
            <summary>
3137
            Gets the hash code for the name of the member.
3138
            </summary>
3139
            <value></value>
3140
            <returns>
3141
            The hash code for the name of the member.
3142
            </returns>
3143
        </member>
3144
        <member name="T:Newtonsoft.Json.Linq.JRaw">
3145
            <summary>
3146
            Represents a raw JSON string.
3147
            </summary>
3148
        </member>
3149
        <member name="T:Newtonsoft.Json.Linq.JValue">
3150
            <summary>
3151
            Represents a value in JSON (string, integer, date, etc).
3152
            </summary>
3153
        </member>
3154
        <member name="T:Newtonsoft.Json.Linq.JToken">
3155
            <summary>
3156
            Represents an abstract JSON token.
3157
            </summary>
3158
        </member>
3159
        <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
3160
            <summary>
3161
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
3162
            </summary>
3163
            <typeparam name="T">The type of token</typeparam>
3164
        </member>
3165
        <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
3166
            <summary>
3167
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
3168
            </summary>
3169
            <value></value>
3170
        </member>
3171
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
3172
            <summary>
3173
            Compares the values of two tokens, including the values of all descendant tokens.
3174
            </summary>
3175
            <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
3176
            <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
3177
            <returns>true if the tokens are equal; otherwise false.</returns>
3178
        </member>
3179
        <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
3180
            <summary>
3181
            Adds the specified content immediately after this token.
3182
            </summary>
3183
            <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
3184
        </member>
3185
        <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
3186
            <summary>
3187
            Adds the specified content immediately before this token.
3188
            </summary>
3189
            <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
3190
        </member>
3191
        <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
3192
            <summary>
3193
            Returns a collection of the ancestor tokens of this token.
3194
            </summary>
3195
            <returns>A collection of the ancestor tokens of this token.</returns>
3196
        </member>
3197
        <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
3198
            <summary>
3199
            Returns a collection of the sibling tokens after this token, in document order.
3200
            </summary>
3201
            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
3202
        </member>
3203
        <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
3204
            <summary>
3205
            Returns a collection of the sibling tokens before this token, in document order.
3206
            </summary>
3207
            <returns>A collection of the sibling tokens before this token, in document order.</returns>
3208
        </member>
3209
        <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
3210
            <summary>
3211
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
3212
            </summary>
3213
            <typeparam name="T">The type to convert the token to.</typeparam>
3214
            <param name="key">The token key.</param>
3215
            <returns>The converted token value.</returns>
3216
        </member>
3217
        <member name="M:Newtonsoft.Json.Linq.JToken.Children">
3218
            <summary>
3219
            Returns a collection of the child tokens of this token, in document order.
3220
            </summary>
3221
            <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>
3222
        </member>
3223
        <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
3224
            <summary>
3225
            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
3226
            </summary>
3227
            <typeparam name="T">The type to filter the child tokens on.</typeparam>
3228
            <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>
3229
        </member>
3230
        <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
3231
            <summary>
3232
            Returns a collection of the child values of this token, in document order.
3233
            </summary>
3234
            <typeparam name="T">The type to convert the values to.</typeparam>
3235
            <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>
3236
        </member>
3237
        <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
3238
            <summary>
3239
            Removes this token from its parent.
3240
            </summary>
3241
        </member>
3242
        <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
3243
            <summary>
3244
            Replaces this token with the specified token.
3245
            </summary>
3246
            <param name="value">The value.</param>
3247
        </member>
3248
        <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
3249
            <summary>
3250
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3251
            </summary>
3252
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
3253
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
3254
        </member>
3255
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
3256
            <summary>
3257
            Returns the indented JSON for this token.
3258
            </summary>
3259
            <returns>
3260
            The indented JSON for this token.
3261
            </returns>
3262
        </member>
3263
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
3264
            <summary>
3265
            Returns the JSON for this token using the given formatting and converters.
3266
            </summary>
3267
            <param name="formatting">Indicates how the output is formatted.</param>
3268
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
3269
            <returns>The JSON for this token using the given formatting and converters.</returns>
3270
        </member>
3271
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
3272
            <summary>
3273
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
3274
            </summary>
3275
            <param name="value">The value.</param>
3276
            <returns>The result of the conversion.</returns>
3277
        </member>
3278
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
3279
            <summary>
3280
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3281
            </summary>
3282
            <param name="value">The value.</param>
3283
            <returns>The result of the conversion.</returns>
3284
        </member>
3285
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
3286
            <summary>
3287
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>.
3288
            </summary>
3289
            <param name="value">The value.</param>
3290
            <returns>The result of the conversion.</returns>
3291
        </member>
3292
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
3293
            <summary>
3294
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3295
            </summary>
3296
            <param name="value">The value.</param>
3297
            <returns>The result of the conversion.</returns>
3298
        </member>
3299
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
3300
            <summary>
3301
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3302
            </summary>
3303
            <param name="value">The value.</param>
3304
            <returns>The result of the conversion.</returns>
3305
        </member>
3306
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
3307
            <summary>
3308
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3309
            </summary>
3310
            <param name="value">The value.</param>
3311
            <returns>The result of the conversion.</returns>
3312
        </member>
3313
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
3314
            <summary>
3315
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3316
            </summary>
3317
            <param name="value">The value.</param>
3318
            <returns>The result of the conversion.</returns>
3319
        </member>
3320
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
3321
            <summary>
3322
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
3323
            </summary>
3324
            <param name="value">The value.</param>
3325
            <returns>The result of the conversion.</returns>
3326
        </member>
3327
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
3328
            <summary>
3329
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
3330
            </summary>
3331
            <param name="value">The value.</param>
3332
            <returns>The result of the conversion.</returns>
3333
        </member>
3334
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
3335
            <summary>
3336
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
3337
            </summary>
3338
            <param name="value">The value.</param>
3339
            <returns>The result of the conversion.</returns>
3340
        </member>
3341
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
3342
            <summary>
3343
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.
3344
            </summary>
3345
            <param name="value">The value.</param>
3346
            <returns>The result of the conversion.</returns>
3347
        </member>
3348
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
3349
            <summary>
3350
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.
3351
            </summary>
3352
            <param name="value">The value.</param>
3353
            <returns>The result of the conversion.</returns>
3354
        </member>
3355
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">
3356
            <summary>
3357
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.
3358
            </summary>
3359
            <param name="value">The value.</param>
3360
            <returns>The result of the conversion.</returns>
3361
        </member>
3362
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
3363
            <summary>
3364
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3365
            </summary>
3366
            <param name="value">The value.</param>
3367
            <returns>The result of the conversion.</returns>
3368
        </member>
3369
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
3370
            <summary>
3371
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3372
            </summary>
3373
            <param name="value">The value.</param>
3374
            <returns>The result of the conversion.</returns>
3375
        </member>
3376
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
3377
            <summary>
3378
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3379
            </summary>
3380
            <param name="value">The value.</param>
3381
            <returns>The result of the conversion.</returns>
3382
        </member>
3383
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
3384
            <summary>
3385
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3386
            </summary>
3387
            <param name="value">The value.</param>
3388
            <returns>The result of the conversion.</returns>
3389
        </member>
3390
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">
3391
            <summary>
3392
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3393
            </summary>
3394
            <param name="value">The value.</param>
3395
            <returns>The result of the conversion.</returns>
3396
        </member>
3397
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
3398
            <summary>
3399
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>.
3400
            </summary>
3401
            <param name="value">The value.</param>
3402
            <returns>The result of the conversion.</returns>
3403
        </member>
3404
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
3405
            <summary>
3406
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3407
            </summary>
3408
            <param name="value">The value.</param>
3409
            <returns>The result of the conversion.</returns>
3410
        </member>
3411
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
3412
            <summary>
3413
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3414
            </summary>
3415
            <param name="value">The value.</param>
3416
            <returns>The result of the conversion.</returns>
3417
        </member>
3418
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
3419
            <summary>
3420
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
3421
            </summary>
3422
            <param name="value">The value.</param>
3423
            <returns>The result of the conversion.</returns>
3424
        </member>
3425
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
3426
            <summary>
3427
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3428
            </summary>
3429
            <param name="value">The value.</param>
3430
            <returns>The result of the conversion.</returns>
3431
        </member>
3432
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
3433
            <summary>
3434
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3435
            </summary>
3436
            <param name="value">The value.</param>
3437
            <returns>The result of the conversion.</returns>
3438
        </member>
3439
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
3440
            <summary>
3441
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
3442
            </summary>
3443
            <param name="value">The value.</param>
3444
            <returns>The result of the conversion.</returns>
3445
        </member>
3446
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
3447
            <summary>
3448
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
3449
            </summary>
3450
            <param name="value">The value.</param>
3451
            <returns>The result of the conversion.</returns>
3452
        </member>
3453
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
3454
            <summary>
3455
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
3456
            </summary>
3457
            <param name="value">The value.</param>
3458
            <returns>The result of the conversion.</returns>
3459
        </member>
3460
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
3461
            <summary>
3462
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
3463
            </summary>
3464
            <param name="value">The value.</param>
3465
            <returns>The result of the conversion.</returns>
3466
        </member>
3467
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
3468
            <summary>
3469
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
3470
            </summary>
3471
            <param name="value">The value.</param>
3472
            <returns>The result of the conversion.</returns>
3473
        </member>
3474
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
3475
            <summary>
3476
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte[]"/>.
3477
            </summary>
3478
            <param name="value">The value.</param>
3479
            <returns>The result of the conversion.</returns>
3480
        </member>
3481
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
3482
            <summary>
3483
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
3484
            </summary>
3485
            <param name="value">The value.</param>
3486
            <returns>The result of the conversion.</returns>
3487
        </member>
3488
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
3489
            <summary>
3490
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
3491
            </summary>
3492
            <param name="value">The value.</param>
3493
            <returns>The result of the conversion.</returns>
3494
        </member>
3495
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
3496
            <summary>
3497
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
3498
            </summary>
3499
            <param name="value">The value.</param>
3500
            <returns>The result of the conversion.</returns>
3501
        </member>
3502
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
3503
            <summary>
3504
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
3505
            </summary>
3506
            <param name="value">The value.</param>
3507
            <returns>The result of the conversion.</returns>
3508
        </member>
3509
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
3510
            <summary>
3511
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.
3512
            </summary>
3513
            <param name="value">The value.</param>
3514
            <returns>The result of the conversion.</returns>
3515
        </member>
3516
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
3517
            <summary>
3518
            Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3519
            </summary>
3520
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3521
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3522
        </member>
3523
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">
3524
            <summary>
3525
            Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3526
            </summary>
3527
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3528
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3529
        </member>
3530
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">
3531
            <summary>
3532
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3533
            </summary>
3534
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3535
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3536
        </member>
3537
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">
3538
            <summary>
3539
            Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3540
            </summary>
3541
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3542
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3543
        </member>
3544
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">
3545
            <summary>
3546
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3547
            </summary>
3548
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3549
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3550
        </member>
3551
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
3552
            <summary>
3553
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3554
            </summary>
3555
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3556
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3557
        </member>
3558
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
3559
            <summary>
3560
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3561
            </summary>
3562
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3563
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3564
        </member>
3565
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
3566
            <summary>
3567
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3568
            </summary>
3569
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3570
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3571
        </member>
3572
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
3573
            <summary>
3574
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3575
            </summary>
3576
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3577
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3578
        </member>
3579
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
3580
            <summary>
3581
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3582
            </summary>
3583
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3584
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3585
        </member>
3586
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
3587
            <summary>
3588
            Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3589
            </summary>
3590
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3591
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3592
        </member>
3593
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
3594
            <summary>
3595
            Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3596
            </summary>
3597
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3598
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3599
        </member>
3600
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
3601
            <summary>
3602
            Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3603
            </summary>
3604
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3605
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3606
        </member>
3607
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
3608
            <summary>
3609
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3610
            </summary>
3611
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3612
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3613
        </member>
3614
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
3615
            <summary>
3616
            Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3617
            </summary>
3618
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3619
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3620
        </member>
3621
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
3622
            <summary>
3623
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3624
            </summary>
3625
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3626
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3627
        </member>
3628
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
3629
            <summary>
3630
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3631
            </summary>
3632
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3633
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3634
        </member>
3635
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
3636
            <summary>
3637
            Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3638
            </summary>
3639
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3640
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3641
        </member>
3642
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
3643
            <summary>
3644
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3645
            </summary>
3646
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3647
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3648
        </member>
3649
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
3650
            <summary>
3651
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3652
            </summary>
3653
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3654
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3655
        </member>
3656
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
3657
            <summary>
3658
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3659
            </summary>
3660
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3661
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3662
        </member>
3663
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
3664
            <summary>
3665
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3666
            </summary>
3667
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3668
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3669
        </member>
3670
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
3671
            <summary>
3672
            Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3673
            </summary>
3674
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3675
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3676
        </member>
3677
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
3678
            <summary>
3679
            Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3680
            </summary>
3681
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3682
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3683
        </member>
3684
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
3685
            <summary>
3686
            Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3687
            </summary>
3688
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3689
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3690
        </member>
3691
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
3692
            <summary>
3693
            Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3694
            </summary>
3695
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3696
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3697
        </member>
3698
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
3699
            <summary>
3700
            Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3701
            </summary>
3702
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3703
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3704
        </member>
3705
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
3706
            <summary>
3707
            Performs an implicit conversion from <see cref="T:System.Byte[]"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3708
            </summary>
3709
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3710
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3711
        </member>
3712
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
3713
            <summary>
3714
            Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3715
            </summary>
3716
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3717
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3718
        </member>
3719
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
3720
            <summary>
3721
            Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3722
            </summary>
3723
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3724
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3725
        </member>
3726
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
3727
            <summary>
3728
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3729
            </summary>
3730
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3731
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3732
        </member>
3733
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
3734
            <summary>
3735
            Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3736
            </summary>
3737
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3738
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3739
        </member>
3740
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
3741
            <summary>
3742
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3743
            </summary>
3744
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3745
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3746
        </member>
3747
        <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
3748
            <summary>
3749
            Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
3750
            </summary>
3751
            <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
3752
        </member>
3753
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
3754
            <summary>
3755
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
3756
            </summary>
3757
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
3758
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
3759
        </member>
3760
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
3761
            <summary>
3762
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3763
            </summary>
3764
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
3765
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
3766
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
3767
        </member>
3768
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
3769
            <summary>
3770
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3771
            </summary>
3772
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
3773
            <returns>The new object created from the JSON value.</returns>
3774
        </member>
3775
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
3776
            <summary>
3777
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3778
            </summary>
3779
            <param name="objectType">The object type that the token will be deserialized to.</param>
3780
            <returns>The new object created from the JSON value.</returns>
3781
        </member>
3782
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
3783
            <summary>
3784
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3785
            </summary>
3786
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
3787
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
3788
            <returns>The new object created from the JSON value.</returns>
3789
        </member>
3790
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
3791
            <summary>
3792
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3793
            </summary>
3794
            <param name="objectType">The object type that the token will be deserialized to.</param>
3795
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
3796
            <returns>The new object created from the JSON value.</returns>
3797
        </member>
3798
        <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
3799
            <summary>
3800
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3801
            </summary>
3802
            <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>
3803
            <returns>
3804
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3805
            that were read from the reader. The runtime type of the token is determined
3806
            by the token type of the first token encountered in the reader.
3807
            </returns>
3808
        </member>
3809
        <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
3810
            <summary>
3811
            Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
3812
            </summary>
3813
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
3814
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
3815
        </member>
3816
        <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
3817
            <summary>
3818
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3819
            </summary>
3820
            <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>
3821
            <returns>
3822
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3823
            that were read from the reader. The runtime type of the token is determined
3824
            by the token type of the first token encountered in the reader.
3825
            </returns>
3826
        </member>
3827
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
3828
            <summary>
3829
            Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
3830
            </summary>
3831
            <param name="path">
3832
            A <see cref="T:System.String"/> that contains a JPath expression.
3833
            </param>
3834
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or null.</returns>
3835
        </member>
3836
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
3837
            <summary>
3838
            Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
3839
            </summary>
3840
            <param name="path">
3841
            A <see cref="T:System.String"/> that contains a JPath expression.
3842
            </param>
3843
            <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>
3844
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3845
        </member>
3846
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
3847
            <summary>
3848
            Selects a collection of elements using a JPath expression.
3849
            </summary>
3850
            <param name="path">
3851
            A <see cref="T:System.String"/> that contains a JPath expression.
3852
            </param>
3853
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
3854
        </member>
3855
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">
3856
            <summary>
3857
            Selects a collection of elements using a JPath expression.
3858
            </summary>
3859
            <param name="path">
3860
            A <see cref="T:System.String"/> that contains a JPath expression.
3861
            </param>
3862
            <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>
3863
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
3864
        </member>
3865
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
3866
            <summary>
3867
            Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
3868
            </summary>
3869
            <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3870
        </member>
3871
        <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
3872
            <summary>
3873
            Gets a comparer that can compare two tokens for value equality.
3874
            </summary>
3875
            <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
3876
        </member>
3877
        <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
3878
            <summary>
3879
            Gets or sets the parent.
3880
            </summary>
3881
            <value>The parent.</value>
3882
        </member>
3883
        <member name="P:Newtonsoft.Json.Linq.JToken.Root">
3884
            <summary>
3885
            Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3886
            </summary>
3887
            <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
3888
        </member>
3889
        <member name="P:Newtonsoft.Json.Linq.JToken.Type">
3890
            <summary>
3891
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3892
            </summary>
3893
            <value>The type.</value>
3894
        </member>
3895
        <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
3896
            <summary>
3897
            Gets a value indicating whether this token has child tokens.
3898
            </summary>
3899
            <value>
3900
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
3901
            </value>
3902
        </member>
3903
        <member name="P:Newtonsoft.Json.Linq.JToken.Next">
3904
            <summary>
3905
            Gets the next sibling token of this node.
3906
            </summary>
3907
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
3908
        </member>
3909
        <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
3910
            <summary>
3911
            Gets the previous sibling token of this node.
3912
            </summary>
3913
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
3914
        </member>
3915
        <member name="P:Newtonsoft.Json.Linq.JToken.Path">
3916
            <summary>
3917
            Gets the path of the JSON token. 
3918
            </summary>
3919
        </member>
3920
        <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
3921
            <summary>
3922
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
3923
            </summary>
3924
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
3925
        </member>
3926
        <member name="P:Newtonsoft.Json.Linq.JToken.First">
3927
            <summary>
3928
            Get the first child token of this token.
3929
            </summary>
3930
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
3931
        </member>
3932
        <member name="P:Newtonsoft.Json.Linq.JToken.Last">
3933
            <summary>
3934
            Get the last child token of this token.
3935
            </summary>
3936
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
3937
        </member>
3938
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
3939
            <summary>
3940
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
3941
            </summary>
3942
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
3943
        </member>
3944
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
3945
            <summary>
3946
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3947
            </summary>
3948
            <param name="value">The value.</param>
3949
        </member>
3950
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
3951
            <summary>
3952
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3953
            </summary>
3954
            <param name="value">The value.</param>
3955
        </member>
3956
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
3957
            <summary>
3958
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3959
            </summary>
3960
            <param name="value">The value.</param>
3961
        </member>
3962
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
3963
            <summary>
3964
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3965
            </summary>
3966
            <param name="value">The value.</param>
3967
        </member>
3968
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
3969
            <summary>
3970
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3971
            </summary>
3972
            <param name="value">The value.</param>
3973
        </member>
3974
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
3975
            <summary>
3976
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3977
            </summary>
3978
            <param name="value">The value.</param>
3979
        </member>
3980
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
3981
            <summary>
3982
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3983
            </summary>
3984
            <param name="value">The value.</param>
3985
        </member>
3986
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
3987
            <summary>
3988
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3989
            </summary>
3990
            <param name="value">The value.</param>
3991
        </member>
3992
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
3993
            <summary>
3994
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3995
            </summary>
3996
            <param name="value">The value.</param>
3997
        </member>
3998
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
3999
            <summary>
4000
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4001
            </summary>
4002
            <param name="value">The value.</param>
4003
        </member>
4004
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
4005
            <summary>
4006
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4007
            </summary>
4008
            <param name="value">The value.</param>
4009
        </member>
4010
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
4011
            <summary>
4012
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4013
            </summary>
4014
            <param name="value">The value.</param>
4015
        </member>
4016
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
4017
            <summary>
4018
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4019
            </summary>
4020
            <param name="value">The value.</param>
4021
        </member>
4022
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
4023
            <summary>
4024
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
4025
            </summary>
4026
            <param name="value">The value.</param>
4027
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
4028
        </member>
4029
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
4030
            <summary>
4031
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
4032
            </summary>
4033
            <param name="value">The value.</param>
4034
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
4035
        </member>
4036
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">
4037
            <summary>
4038
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
4039
            </summary>
4040
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
4041
        </member>
4042
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">
4043
            <summary>
4044
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
4045
            </summary>
4046
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
4047
        </member>
4048
        <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
4049
            <summary>
4050
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
4051
            </summary>
4052
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
4053
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
4054
        </member>
4055
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
4056
            <summary>
4057
            Indicates whether the current object is equal to another object of the same type.
4058
            </summary>
4059
            <returns>
4060
            true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.
4061
            </returns>
4062
            <param name="other">An object to compare with this object.</param>
4063
        </member>
4064
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
4065
            <summary>
4066
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
4067
            </summary>
4068
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
4069
            <returns>
4070
            true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
4071
            </returns>
4072
            <exception cref="T:System.NullReferenceException">
4073
            The <paramref name="obj"/> parameter is null.
4074
            </exception>
4075
        </member>
4076
        <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
4077
            <summary>
4078
            Serves as a hash function for a particular type.
4079
            </summary>
4080
            <returns>
4081
            A hash code for the current <see cref="T:System.Object"/>.
4082
            </returns>
4083
        </member>
4084
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
4085
            <summary>
4086
            Returns a <see cref="T:System.String"/> that represents this instance.
4087
            </summary>
4088
            <returns>
4089
            A <see cref="T:System.String"/> that represents this instance.
4090
            </returns>
4091
        </member>
4092
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
4093
            <summary>
4094
            Returns a <see cref="T:System.String"/> that represents this instance.
4095
            </summary>
4096
            <param name="format">The format.</param>
4097
            <returns>
4098
            A <see cref="T:System.String"/> that represents this instance.
4099
            </returns>
4100
        </member>
4101
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
4102
            <summary>
4103
            Returns a <see cref="T:System.String"/> that represents this instance.
4104
            </summary>
4105
            <param name="formatProvider">The format provider.</param>
4106
            <returns>
4107
            A <see cref="T:System.String"/> that represents this instance.
4108
            </returns>
4109
        </member>
4110
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
4111
            <summary>
4112
            Returns a <see cref="T:System.String"/> that represents this instance.
4113
            </summary>
4114
            <param name="format">The format.</param>
4115
            <param name="formatProvider">The format provider.</param>
4116
            <returns>
4117
            A <see cref="T:System.String"/> that represents this instance.
4118
            </returns>
4119
        </member>
4120
        <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
4121
            <summary>
4122
            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.
4123
            </summary>
4124
            <param name="obj">An object to compare with this instance.</param>
4125
            <returns>
4126
            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
4127
            Value
4128
            Meaning
4129
            Less than zero
4130
            This instance is less than <paramref name="obj"/>.
4131
            Zero
4132
            This instance is equal to <paramref name="obj"/>.
4133
            Greater than zero
4134
            This instance is greater than <paramref name="obj"/>.
4135
            </returns>
4136
            <exception cref="T:System.ArgumentException">
4137
                    <paramref name="obj"/> is not the same type as this instance.
4138
            </exception>
4139
        </member>
4140
        <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
4141
            <summary>
4142
            Gets a value indicating whether this token has child tokens.
4143
            </summary>
4144
            <value>
4145
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
4146
            </value>
4147
        </member>
4148
        <member name="P:Newtonsoft.Json.Linq.JValue.Type">
4149
            <summary>
4150
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4151
            </summary>
4152
            <value>The type.</value>
4153
        </member>
4154
        <member name="P:Newtonsoft.Json.Linq.JValue.Value">
4155
            <summary>
4156
            Gets or sets the underlying token value.
4157
            </summary>
4158
            <value>The underlying token value.</value>
4159
        </member>
4160
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
4161
            <summary>
4162
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
4163
            </summary>
4164
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
4165
        </member>
4166
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
4167
            <summary>
4168
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
4169
            </summary>
4170
            <param name="rawJson">The raw json.</param>
4171
        </member>
4172
        <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
4173
            <summary>
4174
            Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
4175
            </summary>
4176
            <param name="reader">The reader.</param>
4177
            <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
4178
        </member>
4179
        <member name="T:Newtonsoft.Json.Required">
4180
            <summary>
4181
            Indicating whether a property is required.
4182
            </summary>
4183
        </member>
4184
        <member name="F:Newtonsoft.Json.Required.Default">
4185
            <summary>
4186
            The property is not required. The default state.
4187
            </summary>
4188
        </member>
4189
        <member name="F:Newtonsoft.Json.Required.AllowNull">
4190
            <summary>
4191
            The property must be defined in JSON but can be a null value.
4192
            </summary>
4193
        </member>
4194
        <member name="F:Newtonsoft.Json.Required.Always">
4195
            <summary>
4196
            The property must be defined in JSON and cannot be a null value.
4197
            </summary>
4198
        </member>
4199
        <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
4200
            <summary>
4201
            Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4202
            </summary>
4203
        </member>
4204
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
4205
            <summary>
4206
            Resolves a reference to its object.
4207
            </summary>
4208
            <param name="context">The serialization context.</param>
4209
            <param name="reference">The reference to resolve.</param>
4210
            <returns>The object that</returns>
4211
        </member>
4212
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
4213
            <summary>
4214
            Gets the reference for the sepecified object.
4215
            </summary>
4216
            <param name="context">The serialization context.</param>
4217
            <param name="value">The object to get a reference for.</param>
4218
            <returns>The reference to the object.</returns>
4219
        </member>
4220
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
4221
            <summary>
4222
            Determines whether the specified object is referenced.
4223
            </summary>
4224
            <param name="context">The serialization context.</param>
4225
            <param name="value">The object to test for a reference.</param>
4226
            <returns>
4227
                    <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
4228
            </returns>
4229
        </member>
4230
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
4231
            <summary>
4232
            Adds a reference to the specified object.
4233
            </summary>
4234
            <param name="context">The serialization context.</param>
4235
            <param name="reference">The reference.</param>
4236
            <param name="value">The object to reference.</param>
4237
        </member>
4238
        <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
4239
            <summary>
4240
            Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4241
            Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable.
4242
            </summary>
4243
            <example>
4244
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References"/>       
4245
            </example>
4246
        </member>
4247
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
4248
            <summary>
4249
            Do not preserve references when serializing types.
4250
            </summary>
4251
        </member>
4252
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
4253
            <summary>
4254
            Preserve references when serializing into a JSON object structure.
4255
            </summary>
4256
        </member>
4257
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
4258
            <summary>
4259
            Preserve references when serializing into a JSON array structure.
4260
            </summary>
4261
        </member>
4262
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
4263
            <summary>
4264
            Preserve references when serializing.
4265
            </summary>
4266
        </member>
4267
        <member name="T:Newtonsoft.Json.JsonArrayAttribute">
4268
            <summary>
4269
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
4270
            </summary>
4271
        </member>
4272
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
4273
            <summary>
4274
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
4275
            </summary>
4276
        </member>
4277
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
4278
            <summary>
4279
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items
4280
            </summary>
4281
            <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
4282
        </member>
4283
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
4284
            <summary>
4285
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
4286
            </summary>
4287
            <param name="id">The container Id.</param>
4288
        </member>
4289
        <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
4290
            <summary>
4291
            Gets or sets a value indicating whether null items are allowed in the collection.
4292
            </summary>
4293
            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
4294
        </member>
4295
        <member name="T:Newtonsoft.Json.DefaultValueHandling">
4296
            <summary>
4297
            Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4298
            </summary>
4299
            <example>
4300
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class"/>
4301
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example"/>
4302
            </example>
4303
        </member>
4304
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
4305
            <summary>
4306
            Include members where the member value is the same as the member's default value when serializing objects.
4307
            Included members are written to JSON. Has no effect when deserializing.
4308
            </summary>
4309
        </member>
4310
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
4311
            <summary>
4312
            Ignore members where the member value is the same as the member's default value when serializing objects
4313
            so that is is not written to JSON.
4314
            This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,
4315
            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
4316
            placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
4317
            </summary>
4318
        </member>
4319
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
4320
            <summary>
4321
            Members with a default value but no JSON will be set to their default value when deserializing.
4322
            </summary>
4323
        </member>
4324
        <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
4325
            <summary>
4326
            Ignore members where the member value is the same as the member's default value when serializing objects
4327
            and sets members to their default value when deserializing.
4328
            </summary>
4329
        </member>
4330
        <member name="T:Newtonsoft.Json.JsonConverterAttribute">
4331
            <summary>
4332
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
4333
            </summary>
4334
        </member>
4335
        <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
4336
            <summary>
4337
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
4338
            </summary>
4339
            <param name="converterType">Type of the converter.</param>
4340
        </member>
4341
        <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
4342
            <summary>
4343
            Gets the type of the converter.
4344
            </summary>
4345
            <value>The type of the converter.</value>
4346
        </member>
4347
        <member name="T:Newtonsoft.Json.JsonObjectAttribute">
4348
            <summary>
4349
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
4350
            </summary>
4351
        </member>
4352
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
4353
            <summary>
4354
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
4355
            </summary>
4356
        </member>
4357
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
4358
            <summary>
4359
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
4360
            </summary>
4361
            <param name="memberSerialization">The member serialization.</param>
4362
        </member>
4363
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
4364
            <summary>
4365
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
4366
            </summary>
4367
            <param name="id">The container Id.</param>
4368
        </member>
4369
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
4370
            <summary>
4371
            Gets or sets the member serialization.
4372
            </summary>
4373
            <value>The member serialization.</value>
4374
        </member>
4375
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
4376
            <summary>
4377
            Gets or sets a value that indicates whether the object's properties are required.
4378
            </summary>
4379
            <value>
4380
                    A value indicating whether the object's properties are required.
4381
            </value>
4382
        </member>
4383
        <member name="T:Newtonsoft.Json.JsonSerializerSettings">
4384
            <summary>
4385
            Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
4386
            </summary>
4387
        </member>
4388
        <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
4389
            <summary>
4390
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
4391
            </summary>
4392
        </member>
4393
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
4394
            <summary>
4395
            Gets or sets how reference loops (e.g. a class referencing itself) is handled.
4396
            </summary>
4397
            <value>Reference loop handling.</value>
4398
        </member>
4399
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
4400
            <summary>
4401
            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
4402
            </summary>
4403
            <value>Missing member handling.</value>
4404
        </member>
4405
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
4406
            <summary>
4407
            Gets or sets how objects are created during deserialization.
4408
            </summary>
4409
            <value>The object creation handling.</value>
4410
        </member>
4411
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
4412
            <summary>
4413
            Gets or sets how null values are handled during serialization and deserialization.
4414
            </summary>
4415
            <value>Null value handling.</value>
4416
        </member>
4417
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
4418
            <summary>
4419
            Gets or sets how null default are handled during serialization and deserialization.
4420
            </summary>
4421
            <value>The default value handling.</value>
4422
        </member>
4423
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
4424
            <summary>
4425
            Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
4426
            </summary>
4427
            <value>The converters.</value>
4428
        </member>
4429
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
4430
            <summary>
4431
            Gets or sets how object references are preserved by the serializer.
4432
            </summary>
4433
            <value>The preserve references handling.</value>
4434
        </member>
4435
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
4436
            <summary>
4437
            Gets or sets how type name writing and reading is handled by the serializer.
4438
            </summary>
4439
            <value>The type name handling.</value>
4440
        </member>
4441
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">
4442
            <summary>
4443
            Gets or sets how metadata properties are used during deserialization.
4444
            </summary>
4445
            <value>The metadata properties handling.</value>
4446
        </member>
4447
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
4448
            <summary>
4449
            Gets or sets how a type name assembly is written and resolved by the serializer.
4450
            </summary>
4451
            <value>The type name assembly format.</value>
4452
        </member>
4453
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
4454
            <summary>
4455
            Gets or sets how constructors are used during deserialization.
4456
            </summary>
4457
            <value>The constructor handling.</value>
4458
        </member>
4459
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
4460
            <summary>
4461
            Gets or sets the contract resolver used by the serializer when
4462
            serializing .NET objects to JSON and vice versa.
4463
            </summary>
4464
            <value>The contract resolver.</value>
4465
        </member>
4466
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
4467
            <summary>
4468
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
4469
            </summary>
4470
            <value>The reference resolver.</value>
4471
        </member>
4472
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
4473
            <summary>
4474
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
4475
            </summary>
4476
            <value>The trace writer.</value>
4477
        </member>
4478
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
4479
            <summary>
4480
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
4481
            </summary>
4482
            <value>The binder.</value>
4483
        </member>
4484
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
4485
            <summary>
4486
            Gets or sets the error handler called during serialization and deserialization.
4487
            </summary>
4488
            <value>The error handler called during serialization and deserialization.</value>
4489
        </member>
4490
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
4491
            <summary>
4492
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
4493
            </summary>
4494
            <value>The context.</value>
4495
        </member>
4496
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
4497
            <summary>
4498
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
4499
            </summary>
4500
        </member>
4501
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
4502
            <summary>
4503
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
4504
            </summary>
4505
        </member>
4506
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
4507
            <summary>
4508
            Indicates how JSON text output is formatted.
4509
            </summary>
4510
        </member>
4511
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
4512
            <summary>
4513
            Get or set how dates are written to JSON text.
4514
            </summary>
4515
        </member>
4516
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
4517
            <summary>
4518
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
4519
            </summary>
4520
        </member>
4521
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
4522
            <summary>
4523
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
4524
            </summary>
4525
        </member>
4526
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
4527
            <summary>
4528
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
4529
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
4530
            are written as JSON.
4531
            </summary>
4532
        </member>
4533
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
4534
            <summary>
4535
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
4536
            </summary>
4537
        </member>
4538
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
4539
            <summary>
4540
            Get or set how strings are escaped when writing JSON text.
4541
            </summary>
4542
        </member>
4543
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
4544
            <summary>
4545
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
4546
            </summary>
4547
        </member>
4548
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
4549
            <summary>
4550
            Gets a value indicating whether there will be a check for additional content after deserializing an object.
4551
            </summary>
4552
            <value>
4553
                    <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
4554
            </value>
4555
        </member>
4556
        <member name="T:Newtonsoft.Json.JsonValidatingReader">
4557
            <summary>
4558
            Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
4559
            </summary>
4560
        </member>
4561
        <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
4562
            <summary>
4563
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
4564
            validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
4565
            </summary>
4566
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
4567
        </member>
4568
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
4569
            <summary>
4570
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4571
            </summary>
4572
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
4573
        </member>
4574
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
4575
            <summary>
4576
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
4577
            </summary>
4578
            <returns>
4579
            A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null.
4580
            </returns>
4581
        </member>
4582
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
4583
            <summary>
4584
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4585
            </summary>
4586
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
4587
        </member>
4588
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
4589
            <summary>
4590
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
4591
            </summary>
4592
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4593
        </member>
4594
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
4595
            <summary>
4596
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4597
            </summary>
4598
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4599
        </member>
4600
        <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
4601
            <summary>
4602
            Reads the next JSON token from the stream.
4603
            </summary>
4604
            <returns>
4605
            true if the next token was read successfully; false if there are no more tokens to read.
4606
            </returns>
4607
        </member>
4608
        <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
4609
            <summary>
4610
            Sets an event handler for receiving schema validation errors.
4611
            </summary>
4612
        </member>
4613
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
4614
            <summary>
4615
            Gets the text value of the current JSON token.
4616
            </summary>
4617
            <value></value>
4618
        </member>
4619
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
4620
            <summary>
4621
            Gets the depth of the current token in the JSON document.
4622
            </summary>
4623
            <value>The depth of the current token in the JSON document.</value>
4624
        </member>
4625
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
4626
            <summary>
4627
            Gets the path of the current JSON token. 
4628
            </summary>
4629
        </member>
4630
        <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
4631
            <summary>
4632
            Gets the quotation mark character used to enclose the value of a string.
4633
            </summary>
4634
            <value></value>
4635
        </member>
4636
        <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
4637
            <summary>
4638
            Gets the type of the current JSON token.
4639
            </summary>
4640
            <value></value>
4641
        </member>
4642
        <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
4643
            <summary>
4644
            Gets the Common Language Runtime (CLR) type for the current JSON token.
4645
            </summary>
4646
            <value></value>
4647
        </member>
4648
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
4649
            <summary>
4650
            Gets or sets the schema.
4651
            </summary>
4652
            <value>The schema.</value>
4653
        </member>
4654
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
4655
            <summary>
4656
            Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
4657
            </summary>
4658
            <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
4659
        </member>
4660
        <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
4661
            <summary>
4662
            Compares tokens to determine whether they are equal.
4663
            </summary>
4664
        </member>
4665
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
4666
            <summary>
4667
            Determines whether the specified objects are equal.
4668
            </summary>
4669
            <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
4670
            <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
4671
            <returns>
4672
            true if the specified objects are equal; otherwise, false.
4673
            </returns>
4674
        </member>
4675
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
4676
            <summary>
4677
            Returns a hash code for the specified object.
4678
            </summary>
4679
            <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
4680
            <returns>A hash code for the specified object.</returns>
4681
            <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception>
4682
        </member>
4683
        <member name="T:Newtonsoft.Json.MemberSerialization">
4684
            <summary>
4685
            Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4686
            </summary>
4687
        </member>
4688
        <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
4689
            <summary>
4690
            All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
4691
            This is the default member serialization mode.
4692
            </summary>
4693
        </member>
4694
        <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
4695
            <summary>
4696
            Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="!:DataMemberAttribute"/> are serialized.
4697
            This member serialization mode can also be set by marking the class with <see cref="!:DataContractAttribute"/>.
4698
            </summary>
4699
        </member>
4700
        <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
4701
            <summary>
4702
            All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
4703
            This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
4704
            and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to false.
4705
            </summary>
4706
        </member>
4707
        <member name="T:Newtonsoft.Json.ObjectCreationHandling">
4708
            <summary>
4709
            Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4710
            </summary>
4711
        </member>
4712
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
4713
            <summary>
4714
            Reuse existing objects, create new objects when needed.
4715
            </summary>
4716
        </member>
4717
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
4718
            <summary>
4719
            Only reuse existing objects.
4720
            </summary>
4721
        </member>
4722
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
4723
            <summary>
4724
            Always create new objects.
4725
            </summary>
4726
        </member>
4727
        <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
4728
            <summary>
4729
            Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).
4730
            </summary>
4731
        </member>
4732
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
4733
            <summary>
4734
            Writes the JSON representation of the object.
4735
            </summary>
4736
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
4737
            <param name="value">The value.</param>
4738
            <param name="serializer">The calling serializer.</param>
4739
        </member>
4740
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
4741
            <summary>
4742
            Reads the JSON representation of the object.
4743
            </summary>
4744
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
4745
            <param name="objectType">Type of the object.</param>
4746
            <param name="existingValue">The existing value of object being read.</param>
4747
            <param name="serializer">The calling serializer.</param>
4748
            <returns>The object value.</returns>
4749
        </member>
4750
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
4751
            <summary>
4752
            Gets or sets the date time styles used when converting a date to and from JSON.
4753
            </summary>
4754
            <value>The date time styles used when converting a date to and from JSON.</value>
4755
        </member>
4756
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
4757
            <summary>
4758
            Gets or sets the date time format used when converting a date to and from JSON.
4759
            </summary>
4760
            <value>The date time format used when converting a date to and from JSON.</value>
4761
        </member>
4762
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
4763
            <summary>
4764
            Gets or sets the culture used when converting a date to and from JSON.
4765
            </summary>
4766
            <value>The culture used when converting a date to and from JSON.</value>
4767
        </member>
4768
        <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
4769
            <summary>
4770
            Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).
4771
            </summary>
4772
        </member>
4773
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
4774
            <summary>
4775
            Writes the JSON representation of the object.
4776
            </summary>
4777
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
4778
            <param name="value">The value.</param>
4779
            <param name="serializer">The calling serializer.</param>
4780
        </member>
4781
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
4782
            <summary>
4783
            Reads the JSON representation of the object.
4784
            </summary>
4785
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
4786
            <param name="objectType">Type of the object.</param>
4787
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
4788
            <param name="serializer">The calling serializer.</param>
4789
            <returns>The object value.</returns>
4790
        </member>
4791
        <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
4792
            <summary>
4793
            Converts XML to and from JSON.
4794
            </summary>
4795
        </member>
4796
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
4797
            <summary>
4798
            Writes the JSON representation of the object.
4799
            </summary>
4800
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
4801
            <param name="serializer">The calling serializer.</param>
4802
            <param name="value">The value.</param>
4803
        </member>
4804
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
4805
            <summary>
4806
            Reads the JSON representation of the object.
4807
            </summary>
4808
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
4809
            <param name="objectType">Type of the object.</param>
4810
            <param name="existingValue">The existing value of object being read.</param>
4811
            <param name="serializer">The calling serializer.</param>
4812
            <returns>The object value.</returns>
4813
        </member>
4814
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
4815
            <summary>
4816
            Checks if the attributeName is a namespace attribute.
4817
            </summary>
4818
            <param name="attributeName">Attribute name to test.</param>
4819
            <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
4820
            <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>
4821
        </member>
4822
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
4823
            <summary>
4824
            Determines whether this instance can convert the specified value type.
4825
            </summary>
4826
            <param name="valueType">Type of the value.</param>
4827
            <returns>
4828
                    <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
4829
            </returns>
4830
        </member>
4831
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
4832
            <summary>
4833
            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.
4834
            </summary>
4835
            <value>The name of the deserialize root element.</value>
4836
        </member>
4837
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
4838
            <summary>
4839
            Gets or sets a flag to indicate whether to write the Json.NET array attribute.
4840
            This attribute helps preserve arrays when converting the written XML back to JSON.
4841
            </summary>
4842
            <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>
4843
        </member>
4844
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
4845
            <summary>
4846
            Gets or sets a value indicating whether to write the root JSON object.
4847
            </summary>
4848
            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
4849
        </member>
4850
        <member name="T:Newtonsoft.Json.JsonTextReader">
4851
            <summary>
4852
            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
4853
            </summary>
4854
        </member>
4855
        <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
4856
            <summary>
4857
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
4858
            </summary>
4859
            <param name="reader">The <c>TextReader</c> containing the XML data to read.</param>
4860
        </member>
4861
        <member name="M:Newtonsoft.Json.JsonTextReader.Read">
4862
            <summary>
4863
            Reads the next JSON token from the stream.
4864
            </summary>
4865
            <returns>
4866
            true if the next token was read successfully; false if there are no more tokens to read.
4867
            </returns>
4868
        </member>
4869
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
4870
            <summary>
4871
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
4872
            </summary>
4873
            <returns>
4874
            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.
4875
            </returns>
4876
        </member>
4877
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
4878
            <summary>
4879
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4880
            </summary>
4881
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
4882
        </member>
4883
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
4884
            <summary>
4885
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4886
            </summary>
4887
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
4888
        </member>
4889
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
4890
            <summary>
4891
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
4892
            </summary>
4893
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4894
        </member>
4895
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
4896
            <summary>
4897
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4898
            </summary>
4899
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4900
        </member>
4901
        <member name="M:Newtonsoft.Json.JsonTextReader.Close">
4902
            <summary>
4903
            Changes the state to closed. 
4904
            </summary>
4905
        </member>
4906
        <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
4907
            <summary>
4908
            Gets a value indicating whether the class can return line information.
4909
            </summary>
4910
            <returns>
4911
                    <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
4912
            </returns>
4913
        </member>
4914
        <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
4915
            <summary>
4916
            Gets the current line number.
4917
            </summary>
4918
            <value>
4919
            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
4920
            </value>
4921
        </member>
4922
        <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
4923
            <summary>
4924
            Gets the current line position.
4925
            </summary>
4926
            <value>
4927
            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
4928
            </value>
4929
        </member>
4930
        <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
4931
            <summary>
4932
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
4933
            </summary>
4934
        </member>
4935
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
4936
            <summary>
4937
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
4938
            </summary>
4939
        </member>
4940
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
4941
            <summary>
4942
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
4943
            </summary>
4944
            <param name="propertyName">Name of the property.</param>
4945
        </member>
4946
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
4947
            <summary>
4948
            Gets or sets the converter used when serializing the property's collection items.
4949
            </summary>
4950
            <value>The collection's items converter.</value>
4951
        </member>
4952
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
4953
            <summary>
4954
            Gets or sets the null value handling used when serializing this property.
4955
            </summary>
4956
            <value>The null value handling.</value>
4957
        </member>
4958
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
4959
            <summary>
4960
            Gets or sets the default value handling used when serializing this property.
4961
            </summary>
4962
            <value>The default value handling.</value>
4963
        </member>
4964
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
4965
            <summary>
4966
            Gets or sets the reference loop handling used when serializing this property.
4967
            </summary>
4968
            <value>The reference loop handling.</value>
4969
        </member>
4970
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
4971
            <summary>
4972
            Gets or sets the object creation handling used when deserializing this property.
4973
            </summary>
4974
            <value>The object creation handling.</value>
4975
        </member>
4976
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
4977
            <summary>
4978
            Gets or sets the type name handling used when serializing this property.
4979
            </summary>
4980
            <value>The type name handling.</value>
4981
        </member>
4982
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
4983
            <summary>
4984
            Gets or sets whether this property's value is serialized as a reference.
4985
            </summary>
4986
            <value>Whether this property's value is serialized as a reference.</value>
4987
        </member>
4988
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
4989
            <summary>
4990
            Gets or sets the order of serialization and deserialization of a member.
4991
            </summary>
4992
            <value>The numeric order of serialization or deserialization.</value>
4993
        </member>
4994
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
4995
            <summary>
4996
            Gets or sets a value indicating whether this property is required.
4997
            </summary>
4998
            <value>
4999
                    A value indicating whether this property is required.
5000
            </value>
5001
        </member>
5002
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
5003
            <summary>
5004
            Gets or sets the name of the property.
5005
            </summary>
5006
            <value>The name of the property.</value>
5007
        </member>
5008
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
5009
            <summary>
5010
            Gets or sets the the reference loop handling used when serializing the property's collection items.
5011
            </summary>
5012
            <value>The collection's items reference loop handling.</value>
5013
        </member>
5014
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
5015
            <summary>
5016
            Gets or sets the the type name handling used when serializing the property's collection items.
5017
            </summary>
5018
            <value>The collection's items type name handling.</value>
5019
        </member>
5020
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
5021
            <summary>
5022
            Gets or sets whether this property's collection items are serialized as a reference.
5023
            </summary>
5024
            <value>Whether this property's collection items are serialized as a reference.</value>
5025
        </member>
5026
        <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
5027
            <summary>
5028
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
5029
            </summary>
5030
        </member>
5031
        <member name="T:Newtonsoft.Json.JsonTextWriter">
5032
            <summary>
5033
            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
5034
            </summary>
5035
        </member>
5036
        <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
5037
            <summary>
5038
            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>. 
5039
            </summary>
5040
            <param name="textWriter">The <c>TextWriter</c> to write to.</param>
5041
        </member>
5042
        <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
5043
            <summary>
5044
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
5045
            </summary>
5046
        </member>
5047
        <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
5048
            <summary>
5049
            Closes this stream and the underlying stream.
5050
            </summary>
5051
        </member>
5052
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
5053
            <summary>
5054
            Writes the beginning of a Json object.
5055
            </summary>
5056
        </member>
5057
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
5058
            <summary>
5059
            Writes the beginning of a Json array.
5060
            </summary>
5061
        </member>
5062
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
5063
            <summary>
5064
            Writes the start of a constructor with the given name.
5065
            </summary>
5066
            <param name="name">The name of the constructor.</param>
5067
        </member>
5068
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
5069
            <summary>
5070
            Writes the specified end token.
5071
            </summary>
5072
            <param name="token">The end token to write.</param>
5073
        </member>
5074
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
5075
            <summary>
5076
            Writes the property name of a name/value pair on a Json object.
5077
            </summary>
5078
            <param name="name">The name of the property.</param>
5079
        </member>
5080
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">
5081
            <summary>
5082
            Writes the property name of a name/value pair on a JSON object.
5083
            </summary>
5084
            <param name="name">The name of the property.</param>
5085
            <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
5086
        </member>
5087
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
5088
            <summary>
5089
            Writes indent characters.
5090
            </summary>
5091
        </member>
5092
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
5093
            <summary>
5094
            Writes the JSON value delimiter.
5095
            </summary>
5096
        </member>
5097
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
5098
            <summary>
5099
            Writes an indent space.
5100
            </summary>
5101
        </member>
5102
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">
5103
            <summary>
5104
            Writes a <see cref="T:System.Object"/> value.
5105
            An error will raised if the value cannot be written as a single JSON token.
5106
            </summary>
5107
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
5108
        </member>
5109
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
5110
            <summary>
5111
            Writes a null value.
5112
            </summary>
5113
        </member>
5114
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
5115
            <summary>
5116
            Writes an undefined value.
5117
            </summary>
5118
        </member>
5119
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
5120
            <summary>
5121
            Writes raw JSON.
5122
            </summary>
5123
            <param name="json">The raw JSON to write.</param>
5124
        </member>
5125
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
5126
            <summary>
5127
            Writes a <see cref="T:System.String"/> value.
5128
            </summary>
5129
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
5130
        </member>
5131
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
5132
            <summary>
5133
            Writes a <see cref="T:System.Int32"/> value.
5134
            </summary>
5135
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
5136
        </member>
5137
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
5138
            <summary>
5139
            Writes a <see cref="T:System.UInt32"/> value.
5140
            </summary>
5141
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
5142
        </member>
5143
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
5144
            <summary>
5145
            Writes a <see cref="T:System.Int64"/> value.
5146
            </summary>
5147
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
5148
        </member>
5149
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
5150
            <summary>
5151
            Writes a <see cref="T:System.UInt64"/> value.
5152
            </summary>
5153
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
5154
        </member>
5155
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
5156
            <summary>
5157
            Writes a <see cref="T:System.Single"/> value.
5158
            </summary>
5159
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
5160
        </member>
5161
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
5162
            <summary>
5163
            Writes a <see cref="T:System.Nullable`1"/> value.
5164
            </summary>
5165
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
5166
        </member>
5167
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
5168
            <summary>
5169
            Writes a <see cref="T:System.Double"/> value.
5170
            </summary>
5171
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
5172
        </member>
5173
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
5174
            <summary>
5175
            Writes a <see cref="T:System.Nullable`1"/> value.
5176
            </summary>
5177
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
5178
        </member>
5179
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
5180
            <summary>
5181
            Writes a <see cref="T:System.Boolean"/> value.
5182
            </summary>
5183
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
5184
        </member>
5185
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
5186
            <summary>
5187
            Writes a <see cref="T:System.Int16"/> value.
5188
            </summary>
5189
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
5190
        </member>
5191
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
5192
            <summary>
5193
            Writes a <see cref="T:System.UInt16"/> value.
5194
            </summary>
5195
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
5196
        </member>
5197
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
5198
            <summary>
5199
            Writes a <see cref="T:System.Char"/> value.
5200
            </summary>
5201
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
5202
        </member>
5203
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
5204
            <summary>
5205
            Writes a <see cref="T:System.Byte"/> value.
5206
            </summary>
5207
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
5208
        </member>
5209
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
5210
            <summary>
5211
            Writes a <see cref="T:System.SByte"/> value.
5212
            </summary>
5213
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
5214
        </member>
5215
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
5216
            <summary>
5217
            Writes a <see cref="T:System.Decimal"/> value.
5218
            </summary>
5219
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
5220
        </member>
5221
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
5222
            <summary>
5223
            Writes a <see cref="T:System.DateTime"/> value.
5224
            </summary>
5225
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
5226
        </member>
5227
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
5228
            <summary>
5229
            Writes a <see cref="T:Byte[]"/> value.
5230
            </summary>
5231
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
5232
        </member>
5233
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
5234
            <summary>
5235
            Writes a <see cref="T:System.Guid"/> value.
5236
            </summary>
5237
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
5238
        </member>
5239
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
5240
            <summary>
5241
            Writes a <see cref="T:System.TimeSpan"/> value.
5242
            </summary>
5243
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
5244
        </member>
5245
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
5246
            <summary>
5247
            Writes a <see cref="T:System.Uri"/> value.
5248
            </summary>
5249
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
5250
        </member>
5251
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
5252
            <summary>
5253
            Writes out a comment <code>/*...*/</code> containing the specified text. 
5254
            </summary>
5255
            <param name="text">Text to place inside the comment.</param>
5256
        </member>
5257
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
5258
            <summary>
5259
            Writes out the given white space.
5260
            </summary>
5261
            <param name="ws">The string of white space characters.</param>
5262
        </member>
5263
        <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
5264
            <summary>
5265
            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>.
5266
            </summary>
5267
        </member>
5268
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
5269
            <summary>
5270
            Gets or sets which character to use to quote attribute values.
5271
            </summary>
5272
        </member>
5273
        <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
5274
            <summary>
5275
            Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
5276
            </summary>
5277
        </member>
5278
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
5279
            <summary>
5280
            Gets or sets a value indicating whether object names will be surrounded with quotes.
5281
            </summary>
5282
        </member>
5283
        <member name="T:Newtonsoft.Json.JsonWriterException">
5284
            <summary>
5285
            The exception thrown when an error occurs while reading Json text.
5286
            </summary>
5287
        </member>
5288
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
5289
            <summary>
5290
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
5291
            </summary>
5292
        </member>
5293
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
5294
            <summary>
5295
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
5296
            with a specified error message.
5297
            </summary>
5298
            <param name="message">The error message that explains the reason for the exception.</param>
5299
        </member>
5300
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
5301
            <summary>
5302
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
5303
            with a specified error message and a reference to the inner exception that is the cause of this exception.
5304
            </summary>
5305
            <param name="message">The error message that explains the reason for the exception.</param>
5306
            <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>
5307
        </member>
5308
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5309
            <summary>
5310
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
5311
            </summary>
5312
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
5313
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
5314
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
5315
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
5316
        </member>
5317
        <member name="P:Newtonsoft.Json.JsonWriterException.Path">
5318
            <summary>
5319
            Gets the path to the JSON where the error occurred.
5320
            </summary>
5321
            <value>The path to the JSON where the error occurred.</value>
5322
        </member>
5323
        <member name="T:Newtonsoft.Json.JsonReaderException">
5324
            <summary>
5325
            The exception thrown when an error occurs while reading Json text.
5326
            </summary>
5327
        </member>
5328
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
5329
            <summary>
5330
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
5331
            </summary>
5332
        </member>
5333
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
5334
            <summary>
5335
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
5336
            with a specified error message.
5337
            </summary>
5338
            <param name="message">The error message that explains the reason for the exception.</param>
5339
        </member>
5340
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
5341
            <summary>
5342
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
5343
            with a specified error message and a reference to the inner exception that is the cause of this exception.
5344
            </summary>
5345
            <param name="message">The error message that explains the reason for the exception.</param>
5346
            <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>
5347
        </member>
5348
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5349
            <summary>
5350
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
5351
            </summary>
5352
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
5353
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
5354
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
5355
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
5356
        </member>
5357
        <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
5358
            <summary>
5359
            Gets the line number indicating where the error occurred.
5360
            </summary>
5361
            <value>The line number indicating where the error occurred.</value>
5362
        </member>
5363
        <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
5364
            <summary>
5365
            Gets the line position indicating where the error occurred.
5366
            </summary>
5367
            <value>The line position indicating where the error occurred.</value>
5368
        </member>
5369
        <member name="P:Newtonsoft.Json.JsonReaderException.Path">
5370
            <summary>
5371
            Gets the path to the JSON where the error occurred.
5372
            </summary>
5373
            <value>The path to the JSON where the error occurred.</value>
5374
        </member>
5375
        <member name="T:Newtonsoft.Json.JsonConverterCollection">
5376
            <summary>
5377
            Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5378
            </summary>
5379
        </member>
5380
        <member name="T:Newtonsoft.Json.JsonConvert">
5381
            <summary>
5382
            Provides methods for converting between common language runtime types and JSON types.
5383
            </summary>
5384
            <example>
5385
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
5386
            </example>
5387
        </member>
5388
        <member name="F:Newtonsoft.Json.JsonConvert.True">
5389
            <summary>
5390
            Represents JavaScript's boolean value true as a string. This field is read-only.
5391
            </summary>
5392
        </member>
5393
        <member name="F:Newtonsoft.Json.JsonConvert.False">
5394
            <summary>
5395
            Represents JavaScript's boolean value false as a string. This field is read-only.
5396
            </summary>
5397
        </member>
5398
        <member name="F:Newtonsoft.Json.JsonConvert.Null">
5399
            <summary>
5400
            Represents JavaScript's null as a string. This field is read-only.
5401
            </summary>
5402
        </member>
5403
        <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
5404
            <summary>
5405
            Represents JavaScript's undefined as a string. This field is read-only.
5406
            </summary>
5407
        </member>
5408
        <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
5409
            <summary>
5410
            Represents JavaScript's positive infinity as a string. This field is read-only.
5411
            </summary>
5412
        </member>
5413
        <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
5414
            <summary>
5415
            Represents JavaScript's negative infinity as a string. This field is read-only.
5416
            </summary>
5417
        </member>
5418
        <member name="F:Newtonsoft.Json.JsonConvert.NaN">
5419
            <summary>
5420
            Represents JavaScript's NaN as a string. This field is read-only.
5421
            </summary>
5422
        </member>
5423
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
5424
            <summary>
5425
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
5426
            </summary>
5427
            <param name="value">The value to convert.</param>
5428
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
5429
        </member>
5430
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
5431
            <summary>
5432
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
5433
            </summary>
5434
            <param name="value">The value to convert.</param>
5435
            <param name="format">The format the date will be converted to.</param>
5436
            <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
5437
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
5438
        </member>
5439
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
5440
            <summary>
5441
            Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
5442
            </summary>
5443
            <param name="value">The value to convert.</param>
5444
            <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
5445
        </member>
5446
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
5447
            <summary>
5448
            Converts the <see cref="T:System.Char"/> to its JSON string representation.
5449
            </summary>
5450
            <param name="value">The value to convert.</param>
5451
            <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
5452
        </member>
5453
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
5454
            <summary>
5455
            Converts the <see cref="T:System.Enum"/> to its JSON string representation.
5456
            </summary>
5457
            <param name="value">The value to convert.</param>
5458
            <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
5459
        </member>
5460
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
5461
            <summary>
5462
            Converts the <see cref="T:System.Int32"/> to its JSON string representation.
5463
            </summary>
5464
            <param name="value">The value to convert.</param>
5465
            <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
5466
        </member>
5467
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
5468
            <summary>
5469
            Converts the <see cref="T:System.Int16"/> to its JSON string representation.
5470
            </summary>
5471
            <param name="value">The value to convert.</param>
5472
            <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
5473
        </member>
5474
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
5475
            <summary>
5476
            Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
5477
            </summary>
5478
            <param name="value">The value to convert.</param>
5479
            <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
5480
        </member>
5481
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
5482
            <summary>
5483
            Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
5484
            </summary>
5485
            <param name="value">The value to convert.</param>
5486
            <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
5487
        </member>
5488
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
5489
            <summary>
5490
            Converts the <see cref="T:System.Int64"/>  to its JSON string representation.
5491
            </summary>
5492
            <param name="value">The value to convert.</param>
5493
            <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
5494
        </member>
5495
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
5496
            <summary>
5497
            Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
5498
            </summary>
5499
            <param name="value">The value to convert.</param>
5500
            <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
5501
        </member>
5502
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
5503
            <summary>
5504
            Converts the <see cref="T:System.Single"/> to its JSON string representation.
5505
            </summary>
5506
            <param name="value">The value to convert.</param>
5507
            <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
5508
        </member>
5509
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
5510
            <summary>
5511
            Converts the <see cref="T:System.Double"/> to its JSON string representation.
5512
            </summary>
5513
            <param name="value">The value to convert.</param>
5514
            <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
5515
        </member>
5516
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
5517
            <summary>
5518
            Converts the <see cref="T:System.Byte"/> to its JSON string representation.
5519
            </summary>
5520
            <param name="value">The value to convert.</param>
5521
            <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
5522
        </member>
5523
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
5524
            <summary>
5525
            Converts the <see cref="T:System.SByte"/> to its JSON string representation.
5526
            </summary>
5527
            <param name="value">The value to convert.</param>
5528
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
5529
        </member>
5530
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
5531
            <summary>
5532
            Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
5533
            </summary>
5534
            <param name="value">The value to convert.</param>
5535
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
5536
        </member>
5537
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
5538
            <summary>
5539
            Converts the <see cref="T:System.Guid"/> to its JSON string representation.
5540
            </summary>
5541
            <param name="value">The value to convert.</param>
5542
            <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
5543
        </member>
5544
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
5545
            <summary>
5546
            Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
5547
            </summary>
5548
            <param name="value">The value to convert.</param>
5549
            <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
5550
        </member>
5551
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
5552
            <summary>
5553
            Converts the <see cref="T:System.Uri"/> to its JSON string representation.
5554
            </summary>
5555
            <param name="value">The value to convert.</param>
5556
            <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
5557
        </member>
5558
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
5559
            <summary>
5560
            Converts the <see cref="T:System.String"/> to its JSON string representation.
5561
            </summary>
5562
            <param name="value">The value to convert.</param>
5563
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
5564
        </member>
5565
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
5566
            <summary>
5567
            Converts the <see cref="T:System.String"/> to its JSON string representation.
5568
            </summary>
5569
            <param name="value">The value to convert.</param>
5570
            <param name="delimiter">The string delimiter character.</param>
5571
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
5572
        </member>
5573
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
5574
            <summary>
5575
            Converts the <see cref="T:System.Object"/> to its JSON string representation.
5576
            </summary>
5577
            <param name="value">The value to convert.</param>
5578
            <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
5579
        </member>
5580
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
5581
            <summary>
5582
            Serializes the specified object to a JSON string.
5583
            </summary>
5584
            <param name="value">The object to serialize.</param>
5585
            <returns>A JSON string representation of the object.</returns>
5586
        </member>
5587
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
5588
            <summary>
5589
            Serializes the specified object to a JSON string using formatting.
5590
            </summary>
5591
            <param name="value">The object to serialize.</param>
5592
            <param name="formatting">Indicates how the output is formatted.</param>
5593
            <returns>
5594
            A JSON string representation of the object.
5595
            </returns>
5596
        </member>
5597
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
5598
            <summary>
5599
            Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5600
            </summary>
5601
            <param name="value">The object to serialize.</param>
5602
            <param name="converters">A collection converters used while serializing.</param>
5603
            <returns>A JSON string representation of the object.</returns>
5604
        </member>
5605
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
5606
            <summary>
5607
            Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5608
            </summary>
5609
            <param name="value">The object to serialize.</param>
5610
            <param name="formatting">Indicates how the output is formatted.</param>
5611
            <param name="converters">A collection converters used while serializing.</param>
5612
            <returns>A JSON string representation of the object.</returns>
5613
        </member>
5614
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
5615
            <summary>
5616
            Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5617
            </summary>
5618
            <param name="value">The object to serialize.</param>
5619
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
5620
            If this is null, default serialization settings will be used.</param>
5621
            <returns>
5622
            A JSON string representation of the object.
5623
            </returns>
5624
        </member>
5625
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
5626
            <summary>
5627
            Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5628
            </summary>
5629
            <param name="value">The object to serialize.</param>
5630
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
5631
            If this is null, default serialization settings will be used.</param>
5632
            <param name="type">
5633
            The type of the value being serialized.
5634
            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.
5635
            Specifing the type is optional.
5636
            </param>
5637
            <returns>
5638
            A JSON string representation of the object.
5639
            </returns>
5640
        </member>
5641
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
5642
            <summary>
5643
            Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5644
            </summary>
5645
            <param name="value">The object to serialize.</param>
5646
            <param name="formatting">Indicates how the output is formatted.</param>
5647
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
5648
            If this is null, default serialization settings will be used.</param>
5649
            <returns>
5650
            A JSON string representation of the object.
5651
            </returns>
5652
        </member>
5653
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
5654
            <summary>
5655
            Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5656
            </summary>
5657
            <param name="value">The object to serialize.</param>
5658
            <param name="formatting">Indicates how the output is formatted.</param>
5659
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
5660
            If this is null, default serialization settings will be used.</param>
5661
            <param name="type">
5662
            The type of the value being serialized.
5663
            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.
5664
            Specifing the type is optional.
5665
            </param>
5666
            <returns>
5667
            A JSON string representation of the object.
5668
            </returns>
5669
        </member>
5670
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
5671
            <summary>
5672
            Deserializes the JSON to a .NET object.
5673
            </summary>
5674
            <param name="value">The JSON to deserialize.</param>
5675
            <returns>The deserialized object from the JSON string.</returns>
5676
        </member>
5677
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
5678
            <summary>
5679
            Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5680
            </summary>
5681
            <param name="value">The JSON to deserialize.</param>
5682
            <param name="settings">
5683
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5684
            If this is null, default serialization settings will be used.
5685
            </param>
5686
            <returns>The deserialized object from the JSON string.</returns>
5687
        </member>
5688
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
5689
            <summary>
5690
            Deserializes the JSON to the specified .NET type.
5691
            </summary>
5692
            <param name="value">The JSON to deserialize.</param>
5693
            <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
5694
            <returns>The deserialized object from the JSON string.</returns>
5695
        </member>
5696
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
5697
            <summary>
5698
            Deserializes the JSON to the specified .NET type.
5699
            </summary>
5700
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5701
            <param name="value">The JSON to deserialize.</param>
5702
            <returns>The deserialized object from the JSON string.</returns>
5703
        </member>
5704
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
5705
            <summary>
5706
            Deserializes the JSON to the given anonymous type.
5707
            </summary>
5708
            <typeparam name="T">
5709
            The anonymous type to deserialize to. This can't be specified
5710
            traditionally and must be infered from the anonymous type passed
5711
            as a parameter.
5712
            </typeparam>
5713
            <param name="value">The JSON to deserialize.</param>
5714
            <param name="anonymousTypeObject">The anonymous type object.</param>
5715
            <returns>The deserialized anonymous type from the JSON string.</returns>
5716
        </member>
5717
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
5718
            <summary>
5719
            Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5720
            </summary>
5721
            <typeparam name="T">
5722
            The anonymous type to deserialize to. This can't be specified
5723
            traditionally and must be infered from the anonymous type passed
5724
            as a parameter.
5725
            </typeparam>
5726
            <param name="value">The JSON to deserialize.</param>
5727
            <param name="anonymousTypeObject">The anonymous type object.</param>
5728
            <param name="settings">
5729
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5730
            If this is null, default serialization settings will be used.
5731
            </param>
5732
            <returns>The deserialized anonymous type from the JSON string.</returns>
5733
        </member>
5734
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
5735
            <summary>
5736
            Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5737
            </summary>
5738
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5739
            <param name="value">The JSON to deserialize.</param>
5740
            <param name="converters">Converters to use while deserializing.</param>
5741
            <returns>The deserialized object from the JSON string.</returns>
5742
        </member>
5743
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
5744
            <summary>
5745
            Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5746
            </summary>
5747
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5748
            <param name="value">The object to deserialize.</param>
5749
            <param name="settings">
5750
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5751
            If this is null, default serialization settings will be used.
5752
            </param>
5753
            <returns>The deserialized object from the JSON string.</returns>
5754
        </member>
5755
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
5756
            <summary>
5757
            Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5758
            </summary>
5759
            <param name="value">The JSON to deserialize.</param>
5760
            <param name="type">The type of the object to deserialize.</param>
5761
            <param name="converters">Converters to use while deserializing.</param>
5762
            <returns>The deserialized object from the JSON string.</returns>
5763
        </member>
5764
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
5765
            <summary>
5766
            Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5767
            </summary>
5768
            <param name="value">The JSON to deserialize.</param>
5769
            <param name="type">The type of the object to deserialize to.</param>
5770
            <param name="settings">
5771
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5772
            If this is null, default serialization settings will be used.
5773
            </param>
5774
            <returns>The deserialized object from the JSON string.</returns>
5775
        </member>
5776
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
5777
            <summary>
5778
            Populates the object with values from the JSON string.
5779
            </summary>
5780
            <param name="value">The JSON to populate values from.</param>
5781
            <param name="target">The target object to populate values onto.</param>
5782
        </member>
5783
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
5784
            <summary>
5785
            Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5786
            </summary>
5787
            <param name="value">The JSON to populate values from.</param>
5788
            <param name="target">The target object to populate values onto.</param>
5789
            <param name="settings">
5790
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5791
            If this is null, default serialization settings will be used.
5792
            </param>
5793
        </member>
5794
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
5795
            <summary>
5796
            Serializes the XML node to a JSON string.
5797
            </summary>
5798
            <param name="node">The node to serialize.</param>
5799
            <returns>A JSON string of the XmlNode.</returns>
5800
        </member>
5801
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
5802
            <summary>
5803
            Serializes the XML node to a JSON string using formatting.
5804
            </summary>
5805
            <param name="node">The node to serialize.</param>
5806
            <param name="formatting">Indicates how the output is formatted.</param>
5807
            <returns>A JSON string of the XmlNode.</returns>
5808
        </member>
5809
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
5810
            <summary>
5811
            Serializes the XML node to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
5812
            </summary>
5813
            <param name="node">The node to serialize.</param>
5814
            <param name="formatting">Indicates how the output is formatted.</param>
5815
            <param name="omitRootObject">Omits writing the root object.</param>
5816
            <returns>A JSON string of the XmlNode.</returns>
5817
        </member>
5818
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
5819
            <summary>
5820
            Deserializes the XmlNode from a JSON string.
5821
            </summary>
5822
            <param name="value">The JSON string.</param>
5823
            <returns>The deserialized XmlNode</returns>
5824
        </member>
5825
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
5826
            <summary>
5827
            Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
5828
            </summary>
5829
            <param name="value">The JSON string.</param>
5830
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5831
            <returns>The deserialized XmlNode</returns>
5832
        </member>
5833
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
5834
            <summary>
5835
            Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
5836
            and writes a .NET array attribute for collections.
5837
            </summary>
5838
            <param name="value">The JSON string.</param>
5839
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5840
            <param name="writeArrayAttribute">
5841
            A flag to indicate whether to write the Json.NET array attribute.
5842
            This attribute helps preserve arrays when converting the written XML back to JSON.
5843
            </param>
5844
            <returns>The deserialized XmlNode</returns>
5845
        </member>
5846
        <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
5847
            <summary>
5848
            Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5849
            Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
5850
            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"/>.
5851
            To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
5852
            <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
5853
            </summary>
5854
        </member>
5855
        <member name="T:Newtonsoft.Json.JsonSerializationException">
5856
            <summary>
5857
            The exception thrown when an error occurs during Json serialization or deserialization.
5858
            </summary>
5859
        </member>
5860
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
5861
            <summary>
5862
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
5863
            </summary>
5864
        </member>
5865
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
5866
            <summary>
5867
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
5868
            with a specified error message.
5869
            </summary>
5870
            <param name="message">The error message that explains the reason for the exception.</param>
5871
        </member>
5872
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
5873
            <summary>
5874
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
5875
            with a specified error message and a reference to the inner exception that is the cause of this exception.
5876
            </summary>
5877
            <param name="message">The error message that explains the reason for the exception.</param>
5878
            <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>
5879
        </member>
5880
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5881
            <summary>
5882
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
5883
            </summary>
5884
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
5885
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
5886
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
5887
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
5888
        </member>
5889
        <member name="T:Newtonsoft.Json.JsonSerializer">
5890
            <summary>
5891
            Serializes and deserializes objects into and from the JSON format.
5892
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
5893
            </summary>
5894
        </member>
5895
        <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
5896
            <summary>
5897
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
5898
            </summary>
5899
        </member>
5900
        <member name="M:Newtonsoft.Json.JsonSerializer.Create">
5901
            <summary>
5902
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5903
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5904
            </summary>
5905
            <returns>
5906
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5907
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5908
            </returns>
5909
        </member>
5910
        <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
5911
            <summary>
5912
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5913
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5914
            </summary>
5915
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
5916
            <returns>
5917
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5918
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5919
            </returns>
5920
        </member>
5921
        <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
5922
            <summary>
5923
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5924
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5925
            </summary>
5926
            <returns>
5927
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5928
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5929
            </returns>
5930
        </member>
5931
        <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
5932
            <summary>
5933
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5934
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5935
            </summary>
5936
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
5937
            <returns>
5938
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5939
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5940
            </returns>
5941
        </member>
5942
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
5943
            <summary>
5944
            Populates the JSON values onto the target object.
5945
            </summary>
5946
            <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
5947
            <param name="target">The target object to populate values onto.</param>
5948
        </member>
5949
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
5950
            <summary>
5951
            Populates the JSON values onto the target object.
5952
            </summary>
5953
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
5954
            <param name="target">The target object to populate values onto.</param>
5955
        </member>
5956
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
5957
            <summary>
5958
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
5959
            </summary>
5960
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
5961
            <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
5962
        </member>
5963
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
5964
            <summary>
5965
            Deserializes the Json structure contained by the specified <see cref="T:System.IO.StringReader"/>
5966
            into an instance of the specified type.
5967
            </summary>
5968
            <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
5969
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
5970
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
5971
        </member>
5972
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
5973
            <summary>
5974
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
5975
            into an instance of the specified type.
5976
            </summary>
5977
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
5978
            <typeparam name="T">The type of the object to deserialize.</typeparam>
5979
            <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
5980
        </member>
5981
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
5982
            <summary>
5983
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
5984
            into an instance of the specified type.
5985
            </summary>
5986
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
5987
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
5988
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
5989
        </member>
5990
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
5991
            <summary>
5992
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5993
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
5994
            </summary>
5995
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
5996
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5997
        </member>
5998
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
5999
            <summary>
6000
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
6001
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
6002
            </summary>
6003
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
6004
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
6005
            <param name="objectType">
6006
            The type of the value being serialized.
6007
            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.
6008
            Specifing the type is optional.
6009
            </param>
6010
        </member>
6011
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
6012
            <summary>
6013
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
6014
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
6015
            </summary>
6016
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
6017
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
6018
            <param name="objectType">
6019
            The type of the value being serialized.
6020
            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.
6021
            Specifing the type is optional.
6022
            </param>
6023
        </member>
6024
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
6025
            <summary>
6026
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
6027
            to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>. 
6028
            </summary>
6029
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
6030
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
6031
        </member>
6032
        <member name="E:Newtonsoft.Json.JsonSerializer.Error">
6033
            <summary>
6034
            Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
6035
            </summary>
6036
        </member>
6037
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
6038
            <summary>
6039
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
6040
            </summary>
6041
        </member>
6042
        <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
6043
            <summary>
6044
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
6045
            </summary>
6046
        </member>
6047
        <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
6048
            <summary>
6049
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
6050
            </summary>
6051
            <value>The trace writer.</value>
6052
        </member>
6053
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
6054
            <summary>
6055
            Gets or sets how type name writing and reading is handled by the serializer.
6056
            </summary>
6057
        </member>
6058
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
6059
            <summary>
6060
            Gets or sets how a type name assembly is written and resolved by the serializer.
6061
            </summary>
6062
            <value>The type name assembly format.</value>
6063
        </member>
6064
        <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
6065
            <summary>
6066
            Gets or sets how object references are preserved by the serializer.
6067
            </summary>
6068
        </member>
6069
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
6070
            <summary>
6071
            Get or set how reference loops (e.g. a class referencing itself) is handled.
6072
            </summary>
6073
        </member>
6074
        <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
6075
            <summary>
6076
            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
6077
            </summary>
6078
        </member>
6079
        <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
6080
            <summary>
6081
            Get or set how null values are handled during serialization and deserialization.
6082
            </summary>
6083
        </member>
6084
        <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
6085
            <summary>
6086
            Get or set how null default are handled during serialization and deserialization.
6087
            </summary>
6088
        </member>
6089
        <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
6090
            <summary>
6091
            Gets or sets how objects are created during deserialization.
6092
            </summary>
6093
            <value>The object creation handling.</value>
6094
        </member>
6095
        <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
6096
            <summary>
6097
            Gets or sets how constructors are used during deserialization.
6098
            </summary>
6099
            <value>The constructor handling.</value>
6100
        </member>
6101
        <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">
6102
            <summary>
6103
            Gets or sets how metadata properties are used during deserialization.
6104
            </summary>
6105
            <value>The metadata properties handling.</value>
6106
        </member>
6107
        <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
6108
            <summary>
6109
            Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
6110
            </summary>
6111
            <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
6112
        </member>
6113
        <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
6114
            <summary>
6115
            Gets or sets the contract resolver used by the serializer when
6116
            serializing .NET objects to JSON and vice versa.
6117
            </summary>
6118
        </member>
6119
        <member name="P:Newtonsoft.Json.JsonSerializer.Context">
6120
            <summary>
6121
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
6122
            </summary>
6123
            <value>The context.</value>
6124
        </member>
6125
        <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
6126
            <summary>
6127
            Indicates how JSON text output is formatted.
6128
            </summary>
6129
        </member>
6130
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
6131
            <summary>
6132
            Get or set how dates are written to JSON text.
6133
            </summary>
6134
        </member>
6135
        <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
6136
            <summary>
6137
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
6138
            </summary>
6139
        </member>
6140
        <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
6141
            <summary>
6142
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
6143
            </summary>
6144
        </member>
6145
        <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
6146
            <summary>
6147
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
6148
            </summary>
6149
        </member>
6150
        <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
6151
            <summary>
6152
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
6153
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
6154
            are written as JSON text.
6155
            </summary>
6156
        </member>
6157
        <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
6158
            <summary>
6159
            Get or set how strings are escaped when writing JSON text.
6160
            </summary>
6161
        </member>
6162
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
6163
            <summary>
6164
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
6165
            </summary>
6166
        </member>
6167
        <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
6168
            <summary>
6169
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
6170
            </summary>
6171
        </member>
6172
        <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
6173
            <summary>
6174
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
6175
            </summary>
6176
        </member>
6177
        <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
6178
            <summary>
6179
            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
6180
            </summary>
6181
            <value>
6182
                    <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
6183
            </value>
6184
        </member>
6185
        <member name="T:Newtonsoft.Json.Linq.Extensions">
6186
            <summary>
6187
            Contains the LINQ to JSON extension methods.
6188
            </summary>
6189
        </member>
6190
        <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
6191
            <summary>
6192
            Returns a collection of tokens that contains the ancestors of every token in the source collection.
6193
            </summary>
6194
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
6195
            <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>
6196
            <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>
6197
        </member>
6198
        <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
6199
            <summary>
6200
            Returns a collection of tokens that contains the descendants of every token in the source collection.
6201
            </summary>
6202
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
6203
            <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>
6204
            <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>
6205
        </member>
6206
        <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
6207
            <summary>
6208
            Returns a collection of child properties of every object in the source collection.
6209
            </summary>
6210
            <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>
6211
            <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>
6212
        </member>
6213
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
6214
            <summary>
6215
            Returns a collection of child values of every object in the source collection with the given key.
6216
            </summary>
6217
            <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>
6218
            <param name="key">The token key.</param>
6219
            <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>
6220
        </member>
6221
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
6222
            <summary>
6223
            Returns a collection of child values of every object in the source collection.
6224
            </summary>
6225
            <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>
6226
            <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>
6227
        </member>
6228
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
6229
            <summary>
6230
            Returns a collection of converted child values of every object in the source collection with the given key.
6231
            </summary>
6232
            <typeparam name="U">The type to convert the values to.</typeparam>
6233
            <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>
6234
            <param name="key">The token key.</param>
6235
            <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>
6236
        </member>
6237
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
6238
            <summary>
6239
            Returns a collection of converted child values of every object in the source collection.
6240
            </summary>
6241
            <typeparam name="U">The type to convert the values to.</typeparam>
6242
            <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>
6243
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection.</returns>
6244
        </member>
6245
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
6246
            <summary>
6247
            Converts the value.
6248
            </summary>
6249
            <typeparam name="U">The type to convert the value to.</typeparam>
6250
            <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>
6251
            <returns>A converted value.</returns>
6252
        </member>
6253
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
6254
            <summary>
6255
            Converts the value.
6256
            </summary>
6257
            <typeparam name="T">The source collection type.</typeparam>
6258
            <typeparam name="U">The type to convert the value to.</typeparam>
6259
            <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>
6260
            <returns>A converted value.</returns>
6261
        </member>
6262
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
6263
            <summary>
6264
            Returns a collection of child tokens of every array in the source collection.
6265
            </summary>
6266
            <typeparam name="T">The source collection type.</typeparam>
6267
            <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>
6268
            <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>
6269
        </member>
6270
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
6271
            <summary>
6272
            Returns a collection of converted child tokens of every array in the source collection.
6273
            </summary>
6274
            <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>
6275
            <typeparam name="U">The type to convert the values to.</typeparam>
6276
            <typeparam name="T">The source collection type.</typeparam>
6277
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection.</returns>
6278
        </member>
6279
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
6280
            <summary>
6281
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
6282
            </summary>
6283
            <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>
6284
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
6285
        </member>
6286
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
6287
            <summary>
6288
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
6289
            </summary>
6290
            <typeparam name="T">The source collection type.</typeparam>
6291
            <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>
6292
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
6293
        </member>
6294
        <member name="T:Newtonsoft.Json.Linq.JConstructor">
6295
            <summary>
6296
            Represents a JSON constructor.
6297
            </summary>
6298
        </member>
6299
        <member name="T:Newtonsoft.Json.Linq.JContainer">
6300
            <summary>
6301
            Represents a token that can contain other tokens.
6302
            </summary>
6303
        </member>
6304
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
6305
            <summary>
6306
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
6307
            </summary>
6308
            <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
6309
        </member>
6310
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
6311
            <summary>
6312
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
6313
            </summary>
6314
            <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
6315
        </member>
6316
        <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
6317
            <summary>
6318
            Returns a collection of the child tokens of this token, in document order.
6319
            </summary>
6320
            <returns>
6321
            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.
6322
            </returns>
6323
        </member>
6324
        <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
6325
            <summary>
6326
            Returns a collection of the child values of this token, in document order.
6327
            </summary>
6328
            <typeparam name="T">The type to convert the values to.</typeparam>
6329
            <returns>
6330
            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.
6331
            </returns>
6332
        </member>
6333
        <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
6334
            <summary>
6335
            Returns a collection of the descendant tokens for this token in document order.
6336
            </summary>
6337
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
6338
        </member>
6339
        <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
6340
            <summary>
6341
            Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6342
            </summary>
6343
            <param name="content">The content to be added.</param>
6344
        </member>
6345
        <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
6346
            <summary>
6347
            Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6348
            </summary>
6349
            <param name="content">The content to be added.</param>
6350
        </member>
6351
        <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
6352
            <summary>
6353
            Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6354
            </summary>
6355
            <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
6356
        </member>
6357
        <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
6358
            <summary>
6359
            Replaces the children nodes of this token with the specified content.
6360
            </summary>
6361
            <param name="content">The content.</param>
6362
        </member>
6363
        <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
6364
            <summary>
6365
            Removes the child nodes from this token.
6366
            </summary>
6367
        </member>
6368
        <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">
6369
            <summary>
6370
            Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6371
            </summary>
6372
            <param name="content">The content to be merged.</param>
6373
        </member>
6374
        <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">
6375
            <summary>
6376
            Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.
6377
            </summary>
6378
            <param name="content">The content to be merged.</param>
6379
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>
6380
        </member>
6381
        <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
6382
            <summary>
6383
            Occurs when the list changes or an item in the list changes.
6384
            </summary>
6385
        </member>
6386
        <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
6387
            <summary>
6388
            Occurs before an item is added to the collection.
6389
            </summary>
6390
        </member>
6391
        <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
6392
            <summary>
6393
            Gets the container's children tokens.
6394
            </summary>
6395
            <value>The container's children tokens.</value>
6396
        </member>
6397
        <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
6398
            <summary>
6399
            Gets a value indicating whether this token has child tokens.
6400
            </summary>
6401
            <value>
6402
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
6403
            </value>
6404
        </member>
6405
        <member name="P:Newtonsoft.Json.Linq.JContainer.First">
6406
            <summary>
6407
            Get the first child token of this token.
6408
            </summary>
6409
            <value>
6410
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6411
            </value>
6412
        </member>
6413
        <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
6414
            <summary>
6415
            Get the last child token of this token.
6416
            </summary>
6417
            <value>
6418
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6419
            </value>
6420
        </member>
6421
        <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
6422
            <summary>
6423
            Gets the count of child JSON tokens.
6424
            </summary>
6425
            <value>The count of child JSON tokens</value>
6426
        </member>
6427
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
6428
            <summary>
6429
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
6430
            </summary>
6431
        </member>
6432
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
6433
            <summary>
6434
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
6435
            </summary>
6436
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
6437
        </member>
6438
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
6439
            <summary>
6440
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
6441
            </summary>
6442
            <param name="name">The constructor name.</param>
6443
            <param name="content">The contents of the constructor.</param>
6444
        </member>
6445
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
6446
            <summary>
6447
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
6448
            </summary>
6449
            <param name="name">The constructor name.</param>
6450
            <param name="content">The contents of the constructor.</param>
6451
        </member>
6452
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
6453
            <summary>
6454
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
6455
            </summary>
6456
            <param name="name">The constructor name.</param>
6457
        </member>
6458
        <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6459
            <summary>
6460
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6461
            </summary>
6462
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6463
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6464
        </member>
6465
        <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
6466
            <summary>
6467
            Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6468
            </summary>
6469
            <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>
6470
            <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>
6471
        </member>
6472
        <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
6473
            <summary>
6474
            Gets the container's children tokens.
6475
            </summary>
6476
            <value>The container's children tokens.</value>
6477
        </member>
6478
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
6479
            <summary>
6480
            Gets or sets the name of this constructor.
6481
            </summary>
6482
            <value>The constructor name.</value>
6483
        </member>
6484
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
6485
            <summary>
6486
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6487
            </summary>
6488
            <value>The type.</value>
6489
        </member>
6490
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
6491
            <summary>
6492
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6493
            </summary>
6494
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6495
        </member>
6496
        <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
6497
            <summary>
6498
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
6499
            </summary>
6500
            <typeparam name="T">The type of token</typeparam>
6501
        </member>
6502
        <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
6503
            <summary>
6504
            An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
6505
            </summary>
6506
        </member>
6507
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
6508
            <summary>
6509
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
6510
            </summary>
6511
            <param name="enumerable">The enumerable.</param>
6512
        </member>
6513
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
6514
            <summary>
6515
            Returns an enumerator that iterates through the collection.
6516
            </summary>
6517
            <returns>
6518
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
6519
            </returns>
6520
        </member>
6521
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator">
6522
            <summary>
6523
            Returns an enumerator that iterates through a collection.
6524
            </summary>
6525
            <returns>
6526
            An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
6527
            </returns>
6528
        </member>
6529
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
6530
            <summary>
6531
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
6532
            </summary>
6533
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
6534
            <returns>
6535
                    <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
6536
            </returns>
6537
        </member>
6538
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
6539
            <summary>
6540
            Returns a hash code for this instance.
6541
            </summary>
6542
            <returns>
6543
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
6544
            </returns>
6545
        </member>
6546
        <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
6547
            <summary>
6548
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
6549
            </summary>
6550
            <value></value>
6551
        </member>
6552
        <member name="T:Newtonsoft.Json.Linq.JObject">
6553
            <summary>
6554
            Represents a JSON object.
6555
            </summary>
6556
            <example>
6557
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
6558
            </example>
6559
        </member>
6560
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
6561
            <summary>
6562
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
6563
            </summary>
6564
        </member>
6565
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
6566
            <summary>
6567
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
6568
            </summary>
6569
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
6570
        </member>
6571
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
6572
            <summary>
6573
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
6574
            </summary>
6575
            <param name="content">The contents of the object.</param>
6576
        </member>
6577
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
6578
            <summary>
6579
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
6580
            </summary>
6581
            <param name="content">The contents of the object.</param>
6582
        </member>
6583
        <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
6584
            <summary>
6585
            Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.
6586
            </summary>
6587
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns>
6588
        </member>
6589
        <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
6590
            <summary>
6591
            Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
6592
            </summary>
6593
            <param name="name">The property name.</param>
6594
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns>
6595
        </member>
6596
        <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
6597
            <summary>
6598
            Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.
6599
            </summary>
6600
            <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns>
6601
        </member>
6602
        <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
6603
            <summary>
6604
            Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6605
            </summary>
6606
            <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>
6607
            <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>
6608
        </member>
6609
        <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
6610
            <summary>
6611
            Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
6612
            </summary>
6613
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6614
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
6615
            <example>
6616
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text"/>
6617
            </example>
6618
        </member>
6619
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
6620
            <summary>
6621
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
6622
            </summary>
6623
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6624
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
6625
        </member>
6626
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
6627
            <summary>
6628
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
6629
            </summary>
6630
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6631
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
6632
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
6633
        </member>
6634
        <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6635
            <summary>
6636
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6637
            </summary>
6638
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6639
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6640
        </member>
6641
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
6642
            <summary>
6643
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6644
            </summary>
6645
            <param name="propertyName">Name of the property.</param>
6646
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
6647
        </member>
6648
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
6649
            <summary>
6650
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6651
            The exact property name will be searched for first and if no matching property is found then
6652
            the <see cref="T:System.StringComparison"/> will be used to match a property.
6653
            </summary>
6654
            <param name="propertyName">Name of the property.</param>
6655
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
6656
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
6657
        </member>
6658
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
6659
            <summary>
6660
            Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6661
            The exact property name will be searched for first and if no matching property is found then
6662
            the <see cref="T:System.StringComparison"/> will be used to match a property.
6663
            </summary>
6664
            <param name="propertyName">Name of the property.</param>
6665
            <param name="value">The value.</param>
6666
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
6667
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
6668
        </member>
6669
        <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
6670
            <summary>
6671
            Adds the specified property name.
6672
            </summary>
6673
            <param name="propertyName">Name of the property.</param>
6674
            <param name="value">The value.</param>
6675
        </member>
6676
        <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
6677
            <summary>
6678
            Removes the property with the specified name.
6679
            </summary>
6680
            <param name="propertyName">Name of the property.</param>
6681
            <returns>true if item was successfully removed; otherwise, false.</returns>
6682
        </member>
6683
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
6684
            <summary>
6685
            Tries the get value.
6686
            </summary>
6687
            <param name="propertyName">Name of the property.</param>
6688
            <param name="value">The value.</param>
6689
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
6690
        </member>
6691
        <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
6692
            <summary>
6693
            Returns an enumerator that iterates through the collection.
6694
            </summary>
6695
            <returns>
6696
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
6697
            </returns>
6698
        </member>
6699
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
6700
            <summary>
6701
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
6702
            </summary>
6703
            <param name="propertyName">Name of the property.</param>
6704
        </member>
6705
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
6706
            <summary>
6707
            Returns the properties for this instance of a component.
6708
            </summary>
6709
            <returns>
6710
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance.
6711
            </returns>
6712
        </member>
6713
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
6714
            <summary>
6715
            Returns the properties for this instance of a component using the attribute array as a filter.
6716
            </summary>
6717
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
6718
            <returns>
6719
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.
6720
            </returns>
6721
        </member>
6722
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
6723
            <summary>
6724
            Returns a collection of custom attributes for this instance of a component.
6725
            </summary>
6726
            <returns>
6727
            An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object.
6728
            </returns>
6729
        </member>
6730
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
6731
            <summary>
6732
            Returns the class name of this instance of a component.
6733
            </summary>
6734
            <returns>
6735
            The class name of the object, or null if the class does not have a name.
6736
            </returns>
6737
        </member>
6738
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
6739
            <summary>
6740
            Returns the name of this instance of a component.
6741
            </summary>
6742
            <returns>
6743
            The name of the object, or null if the object does not have a name.
6744
            </returns>
6745
        </member>
6746
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
6747
            <summary>
6748
            Returns a type converter for this instance of a component.
6749
            </summary>
6750
            <returns>
6751
            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.
6752
            </returns>
6753
        </member>
6754
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
6755
            <summary>
6756
            Returns the default event for this instance of a component.
6757
            </summary>
6758
            <returns>
6759
            An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events.
6760
            </returns>
6761
        </member>
6762
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
6763
            <summary>
6764
            Returns the default property for this instance of a component.
6765
            </summary>
6766
            <returns>
6767
            A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties.
6768
            </returns>
6769
        </member>
6770
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
6771
            <summary>
6772
            Returns an editor of the specified type for this instance of a component.
6773
            </summary>
6774
            <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param>
6775
            <returns>
6776
            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.
6777
            </returns>
6778
        </member>
6779
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
6780
            <summary>
6781
            Returns the events for this instance of a component using the specified attribute array as a filter.
6782
            </summary>
6783
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
6784
            <returns>
6785
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance.
6786
            </returns>
6787
        </member>
6788
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
6789
            <summary>
6790
            Returns the events for this instance of a component.
6791
            </summary>
6792
            <returns>
6793
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance.
6794
            </returns>
6795
        </member>
6796
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
6797
            <summary>
6798
            Returns an object that contains the property described by the specified property descriptor.
6799
            </summary>
6800
            <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param>
6801
            <returns>
6802
            An <see cref="T:System.Object"/> that represents the owner of the specified property.
6803
            </returns>
6804
        </member>
6805
        <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
6806
            <summary>
6807
            Gets the container's children tokens.
6808
            </summary>
6809
            <value>The container's children tokens.</value>
6810
        </member>
6811
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
6812
            <summary>
6813
            Occurs when a property value changes.
6814
            </summary>
6815
        </member>
6816
        <member name="P:Newtonsoft.Json.Linq.JObject.Type">
6817
            <summary>
6818
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6819
            </summary>
6820
            <value>The type.</value>
6821
        </member>
6822
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
6823
            <summary>
6824
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6825
            </summary>
6826
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6827
        </member>
6828
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
6829
            <summary>
6830
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6831
            </summary>
6832
            <value></value>
6833
        </member>
6834
        <member name="T:Newtonsoft.Json.Linq.JArray">
6835
            <summary>
6836
            Represents a JSON array.
6837
            </summary>
6838
            <example>
6839
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
6840
            </example>
6841
        </member>
6842
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
6843
            <summary>
6844
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
6845
            </summary>
6846
        </member>
6847
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
6848
            <summary>
6849
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
6850
            </summary>
6851
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
6852
        </member>
6853
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
6854
            <summary>
6855
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
6856
            </summary>
6857
            <param name="content">The contents of the array.</param>
6858
        </member>
6859
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
6860
            <summary>
6861
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
6862
            </summary>
6863
            <param name="content">The contents of the array.</param>
6864
        </member>
6865
        <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
6866
            <summary>
6867
            Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6868
            </summary>
6869
            <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>
6870
            <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>
6871
        </member>
6872
        <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
6873
            <summary>
6874
            Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
6875
            </summary>
6876
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6877
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
6878
            <example>
6879
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text"/>
6880
            </example>
6881
        </member>
6882
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
6883
            <summary>
6884
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
6885
            </summary>
6886
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6887
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
6888
        </member>
6889
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
6890
            <summary>
6891
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
6892
            </summary>
6893
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6894
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
6895
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
6896
        </member>
6897
        <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6898
            <summary>
6899
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6900
            </summary>
6901
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6902
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6903
        </member>
6904
        <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
6905
            <summary>
6906
            Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
6907
            </summary>
6908
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
6909
            <returns>
6910
            The index of <paramref name="item"/> if found in the list; otherwise, -1.
6911
            </returns>
6912
        </member>
6913
        <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
6914
            <summary>
6915
            Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.
6916
            </summary>
6917
            <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
6918
            <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
6919
            <exception cref="T:System.ArgumentOutOfRangeException">
6920
                    <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
6921
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
6922
        </member>
6923
        <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
6924
            <summary>
6925
            Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
6926
            </summary>
6927
            <param name="index">The zero-based index of the item to remove.</param>
6928
            <exception cref="T:System.ArgumentOutOfRangeException">
6929
                    <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
6930
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
6931
        </member>
6932
        <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">
6933
            <summary>
6934
            Returns an enumerator that iterates through the collection.
6935
            </summary>
6936
            <returns>
6937
            A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.
6938
            </returns>
6939
        </member>
6940
        <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
6941
            <summary>
6942
            Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
6943
            </summary>
6944
            <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
6945
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
6946
        </member>
6947
        <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
6948
            <summary>
6949
            Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
6950
            </summary>
6951
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
6952
        </member>
6953
        <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
6954
            <summary>
6955
            Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
6956
            </summary>
6957
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
6958
            <returns>
6959
            true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
6960
            </returns>
6961
        </member>
6962
        <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
6963
            <summary>
6964
            Copies to.
6965
            </summary>
6966
            <param name="array">The array.</param>
6967
            <param name="arrayIndex">Index of the array.</param>
6968
        </member>
6969
        <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
6970
            <summary>
6971
            Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
6972
            </summary>
6973
            <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
6974
            <returns>
6975
            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"/>.
6976
            </returns>
6977
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
6978
        </member>
6979
        <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
6980
            <summary>
6981
            Gets the container's children tokens.
6982
            </summary>
6983
            <value>The container's children tokens.</value>
6984
        </member>
6985
        <member name="P:Newtonsoft.Json.Linq.JArray.Type">
6986
            <summary>
6987
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6988
            </summary>
6989
            <value>The type.</value>
6990
        </member>
6991
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
6992
            <summary>
6993
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6994
            </summary>
6995
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6996
        </member>
6997
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
6998
            <summary>
6999
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
7000
            </summary>
7001
            <value></value>
7002
        </member>
7003
        <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
7004
            <summary>
7005
            Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.
7006
            </summary>
7007
            <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</returns>
7008
        </member>
7009
        <member name="T:Newtonsoft.Json.Linq.JTokenReader">
7010
            <summary>
7011
            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
7012
            </summary>
7013
        </member>
7014
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
7015
            <summary>
7016
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
7017
            </summary>
7018
            <param name="token">The token to read from.</param>
7019
        </member>
7020
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">
7021
            <summary>
7022
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
7023
            </summary>
7024
            <returns>
7025
            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.
7026
            </returns>
7027
        </member>
7028
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">
7029
            <summary>
7030
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
7031
            </summary>
7032
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
7033
        </member>
7034
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
7035
            <summary>
7036
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
7037
            </summary>
7038
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
7039
        </member>
7040
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString">
7041
            <summary>
7042
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
7043
            </summary>
7044
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
7045
        </member>
7046
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime">
7047
            <summary>
7048
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
7049
            </summary>
7050
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
7051
        </member>
7052
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
7053
            <summary>
7054
            Reads the next JSON token from the stream.
7055
            </summary>
7056
            <returns>
7057
            true if the next token was read successfully; false if there are no more tokens to read.
7058
            </returns>
7059
        </member>
7060
        <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">
7061
            <summary>
7062
            Gets the path of the current JSON token. 
7063
            </summary>
7064
        </member>
7065
        <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
7066
            <summary>
7067
            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
7068
            </summary>
7069
        </member>
7070
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
7071
            <summary>
7072
            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"/>.
7073
            </summary>
7074
            <param name="container">The container being written to.</param>
7075
        </member>
7076
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
7077
            <summary>
7078
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
7079
            </summary>
7080
        </member>
7081
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
7082
            <summary>
7083
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
7084
            </summary>
7085
        </member>
7086
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
7087
            <summary>
7088
            Closes this stream and the underlying stream.
7089
            </summary>
7090
        </member>
7091
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
7092
            <summary>
7093
            Writes the beginning of a Json object.
7094
            </summary>
7095
        </member>
7096
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
7097
            <summary>
7098
            Writes the beginning of a Json array.
7099
            </summary>
7100
        </member>
7101
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
7102
            <summary>
7103
            Writes the start of a constructor with the given name.
7104
            </summary>
7105
            <param name="name">The name of the constructor.</param>
7106
        </member>
7107
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
7108
            <summary>
7109
            Writes the end.
7110
            </summary>
7111
            <param name="token">The token.</param>
7112
        </member>
7113
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
7114
            <summary>
7115
            Writes the property name of a name/value pair on a Json object.
7116
            </summary>
7117
            <param name="name">The name of the property.</param>
7118
        </member>
7119
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
7120
            <summary>
7121
            Writes a <see cref="T:System.Object"/> value.
7122
            An error will raised if the value cannot be written as a single JSON token.
7123
            </summary>
7124
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
7125
        </member>
7126
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
7127
            <summary>
7128
            Writes a null value.
7129
            </summary>
7130
        </member>
7131
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
7132
            <summary>
7133
            Writes an undefined value.
7134
            </summary>
7135
        </member>
7136
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
7137
            <summary>
7138
            Writes raw JSON.
7139
            </summary>
7140
            <param name="json">The raw JSON to write.</param>
7141
        </member>
7142
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
7143
            <summary>
7144
            Writes out a comment <code>/*...*/</code> containing the specified text.
7145
            </summary>
7146
            <param name="text">Text to place inside the comment.</param>
7147
        </member>
7148
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
7149
            <summary>
7150
            Writes a <see cref="T:System.String"/> value.
7151
            </summary>
7152
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
7153
        </member>
7154
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
7155
            <summary>
7156
            Writes a <see cref="T:System.Int32"/> value.
7157
            </summary>
7158
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
7159
        </member>
7160
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
7161
            <summary>
7162
            Writes a <see cref="T:System.UInt32"/> value.
7163
            </summary>
7164
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
7165
        </member>
7166
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
7167
            <summary>
7168
            Writes a <see cref="T:System.Int64"/> value.
7169
            </summary>
7170
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
7171
        </member>
7172
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
7173
            <summary>
7174
            Writes a <see cref="T:System.UInt64"/> value.
7175
            </summary>
7176
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
7177
        </member>
7178
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
7179
            <summary>
7180
            Writes a <see cref="T:System.Single"/> value.
7181
            </summary>
7182
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
7183
        </member>
7184
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
7185
            <summary>
7186
            Writes a <see cref="T:System.Double"/> value.
7187
            </summary>
7188
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
7189
        </member>
7190
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
7191
            <summary>
7192
            Writes a <see cref="T:System.Boolean"/> value.
7193
            </summary>
7194
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
7195
        </member>
7196
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
7197
            <summary>
7198
            Writes a <see cref="T:System.Int16"/> value.
7199
            </summary>
7200
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
7201
        </member>
7202
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
7203
            <summary>
7204
            Writes a <see cref="T:System.UInt16"/> value.
7205
            </summary>
7206
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
7207
        </member>
7208
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
7209
            <summary>
7210
            Writes a <see cref="T:System.Char"/> value.
7211
            </summary>
7212
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
7213
        </member>
7214
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
7215
            <summary>
7216
            Writes a <see cref="T:System.Byte"/> value.
7217
            </summary>
7218
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
7219
        </member>
7220
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
7221
            <summary>
7222
            Writes a <see cref="T:System.SByte"/> value.
7223
            </summary>
7224
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
7225
        </member>
7226
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
7227
            <summary>
7228
            Writes a <see cref="T:System.Decimal"/> value.
7229
            </summary>
7230
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
7231
        </member>
7232
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
7233
            <summary>
7234
            Writes a <see cref="T:System.DateTime"/> value.
7235
            </summary>
7236
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
7237
        </member>
7238
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
7239
            <summary>
7240
            Writes a <see cref="T:Byte[]"/> value.
7241
            </summary>
7242
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
7243
        </member>
7244
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
7245
            <summary>
7246
            Writes a <see cref="T:System.TimeSpan"/> value.
7247
            </summary>
7248
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
7249
        </member>
7250
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
7251
            <summary>
7252
            Writes a <see cref="T:System.Guid"/> value.
7253
            </summary>
7254
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
7255
        </member>
7256
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
7257
            <summary>
7258
            Writes a <see cref="T:System.Uri"/> value.
7259
            </summary>
7260
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
7261
        </member>
7262
        <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
7263
            <summary>
7264
            Gets the token being writen.
7265
            </summary>
7266
            <value>The token being writen.</value>
7267
        </member>
7268
        <member name="T:Newtonsoft.Json.Linq.JProperty">
7269
            <summary>
7270
            Represents a JSON property.
7271
            </summary>
7272
        </member>
7273
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
7274
            <summary>
7275
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
7276
            </summary>
7277
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
7278
        </member>
7279
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
7280
            <summary>
7281
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
7282
            </summary>
7283
            <param name="name">The property name.</param>
7284
            <param name="content">The property content.</param>
7285
        </member>
7286
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
7287
            <summary>
7288
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
7289
            </summary>
7290
            <param name="name">The property name.</param>
7291
            <param name="content">The property content.</param>
7292
        </member>
7293
        <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
7294
            <summary>
7295
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
7296
            </summary>
7297
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7298
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
7299
        </member>
7300
        <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
7301
            <summary>
7302
            Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
7303
            </summary>
7304
            <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>
7305
            <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>
7306
        </member>
7307
        <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
7308
            <summary>
7309
            Gets the container's children tokens.
7310
            </summary>
7311
            <value>The container's children tokens.</value>
7312
        </member>
7313
        <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
7314
            <summary>
7315
            Gets the property name.
7316
            </summary>
7317
            <value>The property name.</value>
7318
        </member>
7319
        <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
7320
            <summary>
7321
            Gets or sets the property value.
7322
            </summary>
7323
            <value>The property value.</value>
7324
        </member>
7325
        <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
7326
            <summary>
7327
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7328
            </summary>
7329
            <value>The type.</value>
7330
        </member>
7331
        <member name="T:Newtonsoft.Json.Linq.JTokenType">
7332
            <summary>
7333
            Specifies the type of token.
7334
            </summary>
7335
        </member>
7336
        <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
7337
            <summary>
7338
            No token type has been set.
7339
            </summary>
7340
        </member>
7341
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
7342
            <summary>
7343
            A JSON object.
7344
            </summary>
7345
        </member>
7346
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
7347
            <summary>
7348
            A JSON array.
7349
            </summary>
7350
        </member>
7351
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
7352
            <summary>
7353
            A JSON constructor.
7354
            </summary>
7355
        </member>
7356
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
7357
            <summary>
7358
            A JSON object property.
7359
            </summary>
7360
        </member>
7361
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
7362
            <summary>
7363
            A comment.
7364
            </summary>
7365
        </member>
7366
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
7367
            <summary>
7368
            An integer value.
7369
            </summary>
7370
        </member>
7371
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
7372
            <summary>
7373
            A float value.
7374
            </summary>
7375
        </member>
7376
        <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
7377
            <summary>
7378
            A string value.
7379
            </summary>
7380
        </member>
7381
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
7382
            <summary>
7383
            A boolean value.
7384
            </summary>
7385
        </member>
7386
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
7387
            <summary>
7388
            A null value.
7389
            </summary>
7390
        </member>
7391
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
7392
            <summary>
7393
            An undefined value.
7394
            </summary>
7395
        </member>
7396
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
7397
            <summary>
7398
            A date value.
7399
            </summary>
7400
        </member>
7401
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
7402
            <summary>
7403
            A raw JSON value.
7404
            </summary>
7405
        </member>
7406
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
7407
            <summary>
7408
            A collection of bytes value.
7409
            </summary>
7410
        </member>
7411
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
7412
            <summary>
7413
            A Guid value.
7414
            </summary>
7415
        </member>
7416
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
7417
            <summary>
7418
            A Uri value.
7419
            </summary>
7420
        </member>
7421
        <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
7422
            <summary>
7423
            A TimeSpan value.
7424
            </summary>
7425
        </member>
7426
        <member name="T:Newtonsoft.Json.Schema.Extensions">
7427
            <summary>
7428
            Contains the JSON schema extension methods.
7429
            </summary>
7430
        </member>
7431
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
7432
            <summary>
7433
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
7434
            </summary>
7435
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7436
            <param name="schema">The schema to test with.</param>
7437
            <returns>
7438
                    <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
7439
            </returns>
7440
        </member>
7441
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
7442
            <summary>
7443
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
7444
            </summary>
7445
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7446
            <param name="schema">The schema to test with.</param>
7447
            <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
7448
            <returns>
7449
                    <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
7450
            </returns>
7451
        </member>
7452
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
7453
            <summary>
7454
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7455
            </summary>
7456
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7457
            <param name="schema">The schema to test with.</param>
7458
        </member>
7459
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
7460
            <summary>
7461
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7462
            </summary>
7463
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7464
            <param name="schema">The schema to test with.</param>
7465
            <param name="validationEventHandler">The validation event handler.</param>
7466
        </member>
7467
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
7468
            <summary>
7469
            Returns detailed information about the schema exception.
7470
            </summary>
7471
        </member>
7472
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
7473
            <summary>
7474
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
7475
            </summary>
7476
        </member>
7477
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
7478
            <summary>
7479
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7480
            with a specified error message.
7481
            </summary>
7482
            <param name="message">The error message that explains the reason for the exception.</param>
7483
        </member>
7484
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
7485
            <summary>
7486
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7487
            with a specified error message and a reference to the inner exception that is the cause of this exception.
7488
            </summary>
7489
            <param name="message">The error message that explains the reason for the exception.</param>
7490
            <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>
7491
        </member>
7492
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7493
            <summary>
7494
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
7495
            </summary>
7496
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
7497
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
7498
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
7499
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
7500
        </member>
7501
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
7502
            <summary>
7503
            Gets the line number indicating where the error occurred.
7504
            </summary>
7505
            <value>The line number indicating where the error occurred.</value>
7506
        </member>
7507
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
7508
            <summary>
7509
            Gets the line position indicating where the error occurred.
7510
            </summary>
7511
            <value>The line position indicating where the error occurred.</value>
7512
        </member>
7513
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
7514
            <summary>
7515
            Gets the path to the JSON where the error occurred.
7516
            </summary>
7517
            <value>The path to the JSON where the error occurred.</value>
7518
        </member>
7519
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
7520
            <summary>
7521
            Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
7522
            </summary>
7523
        </member>
7524
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
7525
            <summary>
7526
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
7527
            </summary>
7528
        </member>
7529
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
7530
            <summary>
7531
            Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.
7532
            </summary>
7533
            <param name="reference">The id.</param>
7534
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>
7535
        </member>
7536
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
7537
            <summary>
7538
            Gets or sets the loaded schemas.
7539
            </summary>
7540
            <value>The loaded schemas.</value>
7541
        </member>
7542
        <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
7543
            <summary>
7544
            Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
7545
            </summary>
7546
        </member>
7547
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
7548
            <summary>
7549
            Do not infer a schema Id.
7550
            </summary>
7551
        </member>
7552
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
7553
            <summary>
7554
            Use the .NET type name as the schema Id.
7555
            </summary>
7556
        </member>
7557
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
7558
            <summary>
7559
            Use the assembly qualified .NET type name as the schema Id.
7560
            </summary>
7561
        </member>
7562
        <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
7563
            <summary>
7564
            Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
7565
            </summary>
7566
        </member>
7567
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
7568
            <summary>
7569
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.
7570
            </summary>
7571
            <value>The JsonSchemaException associated with the validation error.</value>
7572
        </member>
7573
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
7574
            <summary>
7575
            Gets the path of the JSON location where the validation error occurred.
7576
            </summary>
7577
            <value>The path of the JSON location where the validation error occurred.</value>
7578
        </member>
7579
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
7580
            <summary>
7581
            Gets the text description corresponding to the validation error.
7582
            </summary>
7583
            <value>The text description.</value>
7584
        </member>
7585
        <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
7586
            <summary>
7587
            Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
7588
            </summary>
7589
        </member>
7590
        <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
7591
            <summary>
7592
            Resolves member mappings for a type, camel casing property names.
7593
            </summary>
7594
        </member>
7595
        <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
7596
            <summary>
7597
            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"/>.
7598
            </summary>
7599
        </member>
7600
        <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
7601
            <summary>
7602
            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"/>.
7603
            </summary>
7604
            <example>
7605
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class"/>
7606
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example"/>
7607
            </example>
7608
        </member>
7609
        <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
7610
            <summary>
7611
            Resolves the contract for a given type.
7612
            </summary>
7613
            <param name="type">The type to resolve a contract for.</param>
7614
            <returns>The contract for a given type.</returns>
7615
        </member>
7616
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
7617
            <summary>
7618
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
7619
            </summary>
7620
        </member>
7621
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)">
7622
            <summary>
7623
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
7624
            </summary>
7625
            <param name="shareCache">
7626
            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.
7627
            Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected
7628
            behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly
7629
            recommended to reuse <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> instances with the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7630
            </param>
7631
        </member>
7632
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
7633
            <summary>
7634
            Resolves the contract for a given type.
7635
            </summary>
7636
            <param name="type">The type to resolve a contract for.</param>
7637
            <returns>The contract for a given type.</returns>
7638
        </member>
7639
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
7640
            <summary>
7641
            Gets the serializable members for the type.
7642
            </summary>
7643
            <param name="objectType">The type to get serializable members for.</param>
7644
            <returns>The serializable members for the type.</returns>
7645
        </member>
7646
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
7647
            <summary>
7648
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
7649
            </summary>
7650
            <param name="objectType">Type of the object.</param>
7651
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
7652
        </member>
7653
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
7654
            <summary>
7655
            Creates the constructor parameters.
7656
            </summary>
7657
            <param name="constructor">The constructor to create properties for.</param>
7658
            <param name="memberProperties">The type's member properties.</param>
7659
            <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
7660
        </member>
7661
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
7662
            <summary>
7663
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
7664
            </summary>
7665
            <param name="matchingMemberProperty">The matching member property.</param>
7666
            <param name="parameterInfo">The constructor parameter.</param>
7667
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
7668
        </member>
7669
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
7670
            <summary>
7671
            Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for the contract.
7672
            </summary>
7673
            <param name="objectType">Type of the object.</param>
7674
            <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter"/>.</returns>
7675
        </member>
7676
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
7677
            <summary>
7678
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
7679
            </summary>
7680
            <param name="objectType">Type of the object.</param>
7681
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
7682
        </member>
7683
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
7684
            <summary>
7685
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
7686
            </summary>
7687
            <param name="objectType">Type of the object.</param>
7688
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
7689
        </member>
7690
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
7691
            <summary>
7692
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
7693
            </summary>
7694
            <param name="objectType">Type of the object.</param>
7695
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
7696
        </member>
7697
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
7698
            <summary>
7699
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
7700
            </summary>
7701
            <param name="objectType">Type of the object.</param>
7702
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
7703
        </member>
7704
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
7705
            <summary>
7706
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
7707
            </summary>
7708
            <param name="objectType">Type of the object.</param>
7709
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
7710
        </member>
7711
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
7712
            <summary>
7713
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
7714
            </summary>
7715
            <param name="objectType">Type of the object.</param>
7716
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
7717
        </member>
7718
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
7719
            <summary>
7720
            Determines which contract type is created for the given type.
7721
            </summary>
7722
            <param name="objectType">Type of the object.</param>
7723
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
7724
        </member>
7725
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
7726
            <summary>
7727
            Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
7728
            </summary>
7729
            <param name="type">The type to create properties for.</param>
7730
            /// <param name="memberSerialization">The member serialization mode for the type.</param>
7731
            <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
7732
        </member>
7733
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
7734
            <summary>
7735
            Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
7736
            </summary>
7737
            <param name="member">The member.</param>
7738
            <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
7739
        </member>
7740
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
7741
            <summary>
7742
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
7743
            </summary>
7744
            <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
7745
            <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
7746
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
7747
        </member>
7748
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
7749
            <summary>
7750
            Resolves the name of the property.
7751
            </summary>
7752
            <param name="propertyName">Name of the property.</param>
7753
            <returns>Name of the property.</returns>
7754
        </member>
7755
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
7756
            <summary>
7757
            Gets the resolved name of the property.
7758
            </summary>
7759
            <param name="propertyName">Name of the property.</param>
7760
            <returns>Name of the property.</returns>
7761
        </member>
7762
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
7763
            <summary>
7764
            Gets a value indicating whether members are being get and set using dynamic code generation.
7765
            This value is determined by the runtime permissions available.
7766
            </summary>
7767
            <value>
7768
                    <c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
7769
            </value>
7770
        </member>
7771
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
7772
            <summary>
7773
            Gets or sets the default members search flags.
7774
            </summary>
7775
            <value>The default members search flags.</value>
7776
        </member>
7777
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
7778
            <summary>
7779
            Gets or sets a value indicating whether compiler generated members should be serialized.
7780
            </summary>
7781
            <value>
7782
                    <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
7783
            </value>
7784
        </member>
7785
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
7786
            <summary>
7787
            Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.
7788
            </summary>
7789
            <value>
7790
                    <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>.
7791
            </value>
7792
        </member>
7793
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
7794
            <summary>
7795
            Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.
7796
            </summary>
7797
            <value>
7798
                    <c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
7799
            </value>
7800
        </member>
7801
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
7802
            <summary>
7803
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
7804
            </summary>
7805
        </member>
7806
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)">
7807
            <summary>
7808
            Resolves the name of the property.
7809
            </summary>
7810
            <param name="propertyName">Name of the property.</param>
7811
            <returns>The property name camel cased.</returns>
7812
        </member>
7813
        <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
7814
            <summary>
7815
            The default serialization binder used when resolving and loading classes from type names.
7816
            </summary>
7817
        </member>
7818
        <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
7819
            <summary>
7820
            When overridden in a derived class, controls the binding of a serialized object to a type.
7821
            </summary>
7822
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
7823
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
7824
            <returns>
7825
            The type of the object the formatter creates a new instance of.
7826
            </returns>
7827
        </member>
7828
        <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
7829
            <summary>
7830
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
7831
            </summary>
7832
        </member>
7833
        <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
7834
            <summary>
7835
            Provides methods to get and set values.
7836
            </summary>
7837
        </member>
7838
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
7839
            <summary>
7840
            Sets the value.
7841
            </summary>
7842
            <param name="target">The target to set the value on.</param>
7843
            <param name="value">The value to set on the target.</param>
7844
        </member>
7845
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
7846
            <summary>
7847
            Gets the value.
7848
            </summary>
7849
            <param name="target">The target to get the value from.</param>
7850
            <returns>The value.</returns>
7851
        </member>
7852
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
7853
            <summary>
7854
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
7855
            </summary>
7856
            <param name="memberInfo">The member info.</param>
7857
        </member>
7858
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
7859
            <summary>
7860
            Sets the value.
7861
            </summary>
7862
            <param name="target">The target to set the value on.</param>
7863
            <param name="value">The value to set on the target.</param>
7864
        </member>
7865
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
7866
            <summary>
7867
            Gets the value.
7868
            </summary>
7869
            <param name="target">The target to get the value from.</param>
7870
            <returns>The value.</returns>
7871
        </member>
7872
        <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
7873
            <summary>
7874
            Provides information surrounding an error.
7875
            </summary>
7876
        </member>
7877
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
7878
            <summary>
7879
            Gets the error.
7880
            </summary>
7881
            <value>The error.</value>
7882
        </member>
7883
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
7884
            <summary>
7885
            Gets the original object that caused the error.
7886
            </summary>
7887
            <value>The original object that caused the error.</value>
7888
        </member>
7889
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
7890
            <summary>
7891
            Gets the member that caused the error.
7892
            </summary>
7893
            <value>The member that caused the error.</value>
7894
        </member>
7895
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
7896
            <summary>
7897
            Gets the path of the JSON location where the error occurred.
7898
            </summary>
7899
            <value>The path of the JSON location where the error occurred.</value>
7900
        </member>
7901
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
7902
            <summary>
7903
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
7904
            </summary>
7905
            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
7906
        </member>
7907
        <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
7908
            <summary>
7909
            Provides data for the Error event.
7910
            </summary>
7911
        </member>
7912
        <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
7913
            <summary>
7914
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
7915
            </summary>
7916
            <param name="currentObject">The current object.</param>
7917
            <param name="errorContext">The error context.</param>
7918
        </member>
7919
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
7920
            <summary>
7921
            Gets the current object the error event is being raised against.
7922
            </summary>
7923
            <value>The current object the error event is being raised against.</value>
7924
        </member>
7925
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
7926
            <summary>
7927
            Gets the error context.
7928
            </summary>
7929
            <value>The error context.</value>
7930
        </member>
7931
        <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
7932
            <summary>
7933
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7934
            </summary>
7935
        </member>
7936
        <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
7937
            <summary>
7938
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
7939
            </summary>
7940
            <param name="underlyingType">The underlying type for the contract.</param>
7941
        </member>
7942
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
7943
            <summary>
7944
            Gets the <see cref="T:System.Type"/> of the collection items.
7945
            </summary>
7946
            <value>The <see cref="T:System.Type"/> of the collection items.</value>
7947
        </member>
7948
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
7949
            <summary>
7950
            Gets a value indicating whether the collection type is a multidimensional array.
7951
            </summary>
7952
            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
7953
        </member>
7954
        <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">
7955
            <summary>
7956
            Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.
7957
            </summary>
7958
            <param name="o">The object that raised the callback event.</param>
7959
            <param name="context">The streaming context.</param>
7960
        </member>
7961
        <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">
7962
            <summary>
7963
            Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.
7964
            </summary>
7965
            <param name="o">The object that raised the callback event.</param>
7966
            <param name="context">The streaming context.</param>
7967
            <param name="errorContext">The error context.</param>
7968
        </member>
7969
        <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">
7970
            <summary>
7971
            Sets extension data for an object during deserialization.
7972
            </summary>
7973
            <param name="o">The object to set extension data on.</param>
7974
            <param name="key">The extension data key.</param>
7975
            <param name="value">The extension data value.</param>
7976
        </member>
7977
        <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">
7978
            <summary>
7979
            Gets extension data for an object during serialization.
7980
            </summary>
7981
            <param name="o">The object to set extension data on.</param>
7982
        </member>
7983
        <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
7984
            <summary>
7985
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7986
            </summary>
7987
        </member>
7988
        <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
7989
            <summary>
7990
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
7991
            </summary>
7992
            <param name="underlyingType">The underlying type for the contract.</param>
7993
        </member>
7994
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver">
7995
            <summary>
7996
            Gets or sets the property name resolver.
7997
            </summary>
7998
            <value>The property name resolver.</value>
7999
        </member>
8000
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
8001
            <summary>
8002
            Gets the <see cref="T:System.Type"/> of the dictionary keys.
8003
            </summary>
8004
            <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
8005
        </member>
8006
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
8007
            <summary>
8008
            Gets the <see cref="T:System.Type"/> of the dictionary values.
8009
            </summary>
8010
            <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
8011
        </member>
8012
        <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
8013
            <summary>
8014
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8015
            </summary>
8016
        </member>
8017
        <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
8018
            <summary>
8019
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
8020
            </summary>
8021
            <param name="underlyingType">The underlying type for the contract.</param>
8022
        </member>
8023
        <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
8024
            <summary>
8025
            Gets or sets the ISerializable object constructor.
8026
            </summary>
8027
            <value>The ISerializable object constructor.</value>
8028
        </member>
8029
        <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
8030
            <summary>
8031
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8032
            </summary>
8033
        </member>
8034
        <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
8035
            <summary>
8036
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
8037
            </summary>
8038
            <param name="underlyingType">The underlying type for the contract.</param>
8039
        </member>
8040
        <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
8041
            <summary>
8042
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8043
            </summary>
8044
        </member>
8045
        <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
8046
            <summary>
8047
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
8048
            </summary>
8049
            <param name="underlyingType">The underlying type for the contract.</param>
8050
        </member>
8051
        <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
8052
            <summary>
8053
            Maps a JSON property to a .NET member or constructor parameter.
8054
            </summary>
8055
        </member>
8056
        <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
8057
            <summary>
8058
            Returns a <see cref="T:System.String"/> that represents this instance.
8059
            </summary>
8060
            <returns>
8061
            A <see cref="T:System.String"/> that represents this instance.
8062
            </returns>
8063
        </member>
8064
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
8065
            <summary>
8066
            Gets or sets the name of the property.
8067
            </summary>
8068
            <value>The name of the property.</value>
8069
        </member>
8070
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
8071
            <summary>
8072
            Gets or sets the type that declared this property.
8073
            </summary>
8074
            <value>The type that declared this property.</value>
8075
        </member>
8076
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
8077
            <summary>
8078
            Gets or sets the order of serialization and deserialization of a member.
8079
            </summary>
8080
            <value>The numeric order of serialization or deserialization.</value>
8081
        </member>
8082
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
8083
            <summary>
8084
            Gets or sets the name of the underlying member or parameter.
8085
            </summary>
8086
            <value>The name of the underlying member or parameter.</value>
8087
        </member>
8088
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
8089
            <summary>
8090
            Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
8091
            </summary>
8092
            <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>
8093
        </member>
8094
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
8095
            <summary>
8096
            Gets or sets the type of the property.
8097
            </summary>
8098
            <value>The type of the property.</value>
8099
        </member>
8100
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
8101
            <summary>
8102
            Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> for the property.
8103
            If set this converter takes presidence over the contract converter for the property type.
8104
            </summary>
8105
            <value>The converter.</value>
8106
        </member>
8107
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
8108
            <summary>
8109
            Gets or sets the member converter.
8110
            </summary>
8111
            <value>The member converter.</value>
8112
        </member>
8113
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
8114
            <summary>
8115
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
8116
            </summary>
8117
            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
8118
        </member>
8119
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
8120
            <summary>
8121
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
8122
            </summary>
8123
            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
8124
        </member>
8125
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
8126
            <summary>
8127
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
8128
            </summary>
8129
            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
8130
        </member>
8131
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
8132
            <summary>
8133
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
8134
            </summary>
8135
            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
8136
        </member>
8137
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
8138
            <summary>
8139
            Gets the default value.
8140
            </summary>
8141
            <value>The default value.</value>
8142
        </member>
8143
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
8144
            <summary>
8145
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
8146
            </summary>
8147
            <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
8148
        </member>
8149
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
8150
            <summary>
8151
            Gets or sets a value indicating whether this property preserves object references.
8152
            </summary>
8153
            <value>
8154
                    <c>true</c> if this instance is reference; otherwise, <c>false</c>.
8155
            </value>
8156
        </member>
8157
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
8158
            <summary>
8159
            Gets or sets the property null value handling.
8160
            </summary>
8161
            <value>The null value handling.</value>
8162
        </member>
8163
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
8164
            <summary>
8165
            Gets or sets the property default value handling.
8166
            </summary>
8167
            <value>The default value handling.</value>
8168
        </member>
8169
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
8170
            <summary>
8171
            Gets or sets the property reference loop handling.
8172
            </summary>
8173
            <value>The reference loop handling.</value>
8174
        </member>
8175
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
8176
            <summary>
8177
            Gets or sets the property object creation handling.
8178
            </summary>
8179
            <value>The object creation handling.</value>
8180
        </member>
8181
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
8182
            <summary>
8183
            Gets or sets or sets the type name handling.
8184
            </summary>
8185
            <value>The type name handling.</value>
8186
        </member>
8187
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
8188
            <summary>
8189
            Gets or sets a predicate used to determine whether the property should be serialize.
8190
            </summary>
8191
            <value>A predicate used to determine whether the property should be serialize.</value>
8192
        </member>
8193
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
8194
            <summary>
8195
            Gets or sets a predicate used to determine whether the property should be serialized.
8196
            </summary>
8197
            <value>A predicate used to determine whether the property should be serialized.</value>
8198
        </member>
8199
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
8200
            <summary>
8201
            Gets or sets an action used to set whether the property has been deserialized.
8202
            </summary>
8203
            <value>An action used to set whether the property has been deserialized.</value>
8204
        </member>
8205
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
8206
            <summary>
8207
            Gets or sets the converter used when serializing the property's collection items.
8208
            </summary>
8209
            <value>The collection's items converter.</value>
8210
        </member>
8211
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
8212
            <summary>
8213
            Gets or sets whether this property's collection items are serialized as a reference.
8214
            </summary>
8215
            <value>Whether this property's collection items are serialized as a reference.</value>
8216
        </member>
8217
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
8218
            <summary>
8219
            Gets or sets the the type name handling used when serializing the property's collection items.
8220
            </summary>
8221
            <value>The collection's items type name handling.</value>
8222
        </member>
8223
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
8224
            <summary>
8225
            Gets or sets the the reference loop handling used when serializing the property's collection items.
8226
            </summary>
8227
            <value>The collection's items reference loop handling.</value>
8228
        </member>
8229
        <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
8230
            <summary>
8231
            A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
8232
            </summary>
8233
        </member>
8234
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
8235
            <summary>
8236
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
8237
            </summary>
8238
            <param name="type">The type.</param>
8239
        </member>
8240
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
8241
            <summary>
8242
            When implemented in a derived class, extracts the key from the specified element.
8243
            </summary>
8244
            <param name="item">The element from which to extract the key.</param>
8245
            <returns>The key for the specified element.</returns>
8246
        </member>
8247
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
8248
            <summary>
8249
            Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
8250
            </summary>
8251
            <param name="property">The property to add to the collection.</param>
8252
        </member>
8253
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
8254
            <summary>
8255
            Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
8256
            First attempts to get an exact case match of propertyName and then
8257
            a case insensitive match.
8258
            </summary>
8259
            <param name="propertyName">Name of the property.</param>
8260
            <returns>A matching property if found.</returns>
8261
        </member>
8262
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
8263
            <summary>
8264
            Gets a property by property name.
8265
            </summary>
8266
            <param name="propertyName">The name of the property to get.</param>
8267
            <param name="comparisonType">Type property name string comparison.</param>
8268
            <returns>A matching property if found.</returns>
8269
        </member>
8270
        <member name="T:Newtonsoft.Json.MissingMemberHandling">
8271
            <summary>
8272
            Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8273
            </summary>
8274
        </member>
8275
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
8276
            <summary>
8277
            Ignore a missing member and do not attempt to deserialize it.
8278
            </summary>
8279
        </member>
8280
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
8281
            <summary>
8282
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
8283
            </summary>
8284
        </member>
8285
        <member name="T:Newtonsoft.Json.NullValueHandling">
8286
            <summary>
8287
            Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8288
            </summary>
8289
            <example>
8290
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class"/>
8291
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example"/>
8292
            </example>
8293
        </member>
8294
        <member name="F:Newtonsoft.Json.NullValueHandling.Include">
8295
            <summary>
8296
            Include null values when serializing and deserializing objects.
8297
            </summary>
8298
        </member>
8299
        <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
8300
            <summary>
8301
            Ignore null values when serializing and deserializing objects.
8302
            </summary>
8303
        </member>
8304
        <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
8305
            <summary>
8306
            Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8307
            </summary>
8308
        </member>
8309
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
8310
            <summary>
8311
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
8312
            </summary>
8313
        </member>
8314
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
8315
            <summary>
8316
            Ignore loop references and do not serialize.
8317
            </summary>
8318
        </member>
8319
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
8320
            <summary>
8321
            Serialize loop references.
8322
            </summary>
8323
        </member>
8324
        <member name="T:Newtonsoft.Json.Schema.JsonSchema">
8325
            <summary>
8326
            An in-memory representation of a JSON Schema.
8327
            </summary>
8328
        </member>
8329
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
8330
            <summary>
8331
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
8332
            </summary>
8333
        </member>
8334
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
8335
            <summary>
8336
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
8337
            </summary>
8338
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
8339
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
8340
        </member>
8341
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8342
            <summary>
8343
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
8344
            </summary>
8345
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
8346
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
8347
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
8348
        </member>
8349
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
8350
            <summary>
8351
            Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON.
8352
            </summary>
8353
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
8354
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
8355
        </member>
8356
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8357
            <summary>
8358
            Parses the specified json.
8359
            </summary>
8360
            <param name="json">The json.</param>
8361
            <param name="resolver">The resolver.</param>
8362
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
8363
        </member>
8364
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
8365
            <summary>
8366
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
8367
            </summary>
8368
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8369
        </member>
8370
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8371
            <summary>
8372
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
8373
            </summary>
8374
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8375
            <param name="resolver">The resolver used.</param>
8376
        </member>
8377
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
8378
            <summary>
8379
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
8380
            </summary>
8381
            <returns>
8382
            A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
8383
            </returns>
8384
        </member>
8385
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
8386
            <summary>
8387
            Gets or sets the id.
8388
            </summary>
8389
        </member>
8390
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
8391
            <summary>
8392
            Gets or sets the title.
8393
            </summary>
8394
        </member>
8395
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
8396
            <summary>
8397
            Gets or sets whether the object is required.
8398
            </summary>
8399
        </member>
8400
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
8401
            <summary>
8402
            Gets or sets whether the object is read only.
8403
            </summary>
8404
        </member>
8405
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
8406
            <summary>
8407
            Gets or sets whether the object is visible to users.
8408
            </summary>
8409
        </member>
8410
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
8411
            <summary>
8412
            Gets or sets whether the object is transient.
8413
            </summary>
8414
        </member>
8415
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
8416
            <summary>
8417
            Gets or sets the description of the object.
8418
            </summary>
8419
        </member>
8420
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
8421
            <summary>
8422
            Gets or sets the types of values allowed by the object.
8423
            </summary>
8424
            <value>The type.</value>
8425
        </member>
8426
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
8427
            <summary>
8428
            Gets or sets the pattern.
8429
            </summary>
8430
            <value>The pattern.</value>
8431
        </member>
8432
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
8433
            <summary>
8434
            Gets or sets the minimum length.
8435
            </summary>
8436
            <value>The minimum length.</value>
8437
        </member>
8438
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
8439
            <summary>
8440
            Gets or sets the maximum length.
8441
            </summary>
8442
            <value>The maximum length.</value>
8443
        </member>
8444
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
8445
            <summary>
8446
            Gets or sets a number that the value should be divisble by.
8447
            </summary>
8448
            <value>A number that the value should be divisble by.</value>
8449
        </member>
8450
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
8451
            <summary>
8452
            Gets or sets the minimum.
8453
            </summary>
8454
            <value>The minimum.</value>
8455
        </member>
8456
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
8457
            <summary>
8458
            Gets or sets the maximum.
8459
            </summary>
8460
            <value>The maximum.</value>
8461
        </member>
8462
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
8463
            <summary>
8464
            Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.
8465
            </summary>
8466
            <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value>
8467
        </member>
8468
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
8469
            <summary>
8470
            Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.
8471
            </summary>
8472
            <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>
8473
        </member>
8474
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
8475
            <summary>
8476
            Gets or sets the minimum number of items.
8477
            </summary>
8478
            <value>The minimum number of items.</value>
8479
        </member>
8480
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
8481
            <summary>
8482
            Gets or sets the maximum number of items.
8483
            </summary>
8484
            <value>The maximum number of items.</value>
8485
        </member>
8486
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
8487
            <summary>
8488
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
8489
            </summary>
8490
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
8491
        </member>
8492
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">
8493
            <summary>
8494
            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"/>.
8495
            </summary>
8496
            <value>
8497
                    <c>true</c> if items are validated using their array position; otherwise, <c>false</c>.
8498
            </value>
8499
        </member>
8500
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">
8501
            <summary>
8502
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.
8503
            </summary>
8504
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value>
8505
        </member>
8506
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">
8507
            <summary>
8508
            Gets or sets a value indicating whether additional items are allowed.
8509
            </summary>
8510
            <value>
8511
                    <c>true</c> if additional items are allowed; otherwise, <c>false</c>.
8512
            </value>
8513
        </member>
8514
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">
8515
            <summary>
8516
            Gets or sets whether the array items must be unique.
8517
            </summary>
8518
        </member>
8519
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
8520
            <summary>
8521
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
8522
            </summary>
8523
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
8524
        </member>
8525
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
8526
            <summary>
8527
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
8528
            </summary>
8529
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
8530
        </member>
8531
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
8532
            <summary>
8533
            Gets or sets the pattern properties.
8534
            </summary>
8535
            <value>The pattern properties.</value>
8536
        </member>
8537
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
8538
            <summary>
8539
            Gets or sets a value indicating whether additional properties are allowed.
8540
            </summary>
8541
            <value>
8542
                    <c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
8543
            </value>
8544
        </member>
8545
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
8546
            <summary>
8547
            Gets or sets the required property if this property is present.
8548
            </summary>
8549
            <value>The required property if this property is present.</value>
8550
        </member>
8551
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
8552
            <summary>
8553
            Gets or sets the a collection of valid enum values allowed.
8554
            </summary>
8555
            <value>A collection of valid enum values allowed.</value>
8556
        </member>
8557
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
8558
            <summary>
8559
            Gets or sets disallowed types.
8560
            </summary>
8561
            <value>The disallow types.</value>
8562
        </member>
8563
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
8564
            <summary>
8565
            Gets or sets the default value.
8566
            </summary>
8567
            <value>The default value.</value>
8568
        </member>
8569
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
8570
            <summary>
8571
            Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.
8572
            </summary>
8573
            <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value>
8574
        </member>
8575
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
8576
            <summary>
8577
            Gets or sets the format.
8578
            </summary>
8579
            <value>The format.</value>
8580
        </member>
8581
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
8582
            <summary>
8583
            Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
8584
            </summary>
8585
        </member>
8586
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
8587
            <summary>
8588
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8589
            </summary>
8590
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8591
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8592
        </member>
8593
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8594
            <summary>
8595
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8596
            </summary>
8597
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8598
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8599
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8600
        </member>
8601
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
8602
            <summary>
8603
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8604
            </summary>
8605
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8606
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8607
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8608
        </member>
8609
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
8610
            <summary>
8611
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8612
            </summary>
8613
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8614
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8615
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8616
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8617
        </member>
8618
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
8619
            <summary>
8620
            Gets or sets how undefined schemas are handled by the serializer.
8621
            </summary>
8622
        </member>
8623
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
8624
            <summary>
8625
            Gets or sets the contract resolver.
8626
            </summary>
8627
            <value>The contract resolver.</value>
8628
        </member>
8629
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
8630
            <summary>
8631
            The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
8632
            </summary>
8633
        </member>
8634
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
8635
            <summary>
8636
            No type specified.
8637
            </summary>
8638
        </member>
8639
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
8640
            <summary>
8641
            String type.
8642
            </summary>
8643
        </member>
8644
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
8645
            <summary>
8646
            Float type.
8647
            </summary>
8648
        </member>
8649
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
8650
            <summary>
8651
            Integer type.
8652
            </summary>
8653
        </member>
8654
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
8655
            <summary>
8656
            Boolean type.
8657
            </summary>
8658
        </member>
8659
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
8660
            <summary>
8661
            Object type.
8662
            </summary>
8663
        </member>
8664
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
8665
            <summary>
8666
            Array type.
8667
            </summary>
8668
        </member>
8669
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
8670
            <summary>
8671
            Null type.
8672
            </summary>
8673
        </member>
8674
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
8675
            <summary>
8676
            Any type.
8677
            </summary>
8678
        </member>
8679
        <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
8680
            <summary>
8681
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8682
            </summary>
8683
        </member>
8684
        <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
8685
            <summary>
8686
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
8687
            </summary>
8688
            <param name="underlyingType">The underlying type for the contract.</param>
8689
        </member>
8690
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
8691
            <summary>
8692
            Gets or sets the object member serialization.
8693
            </summary>
8694
            <value>The member object serialization.</value>
8695
        </member>
8696
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
8697
            <summary>
8698
            Gets or sets a value that indicates whether the object's properties are required.
8699
            </summary>
8700
            <value>
8701
                    A value indicating whether the object's properties are required.
8702
            </value>
8703
        </member>
8704
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
8705
            <summary>
8706
            Gets the object's properties.
8707
            </summary>
8708
            <value>The object's properties.</value>
8709
        </member>
8710
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters">
8711
            <summary>
8712
            Gets the constructor parameters required for any non-default constructor
8713
            </summary>
8714
        </member>
8715
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">
8716
            <summary>
8717
            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"/>.
8718
            </summary>
8719
        </member>
8720
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor">
8721
            <summary>
8722
            Gets or sets the override constructor used to create the object.
8723
            This is set when a constructor is marked up using the
8724
            JsonConstructor attribute.
8725
            </summary>
8726
            <value>The override constructor.</value>
8727
        </member>
8728
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor">
8729
            <summary>
8730
            Gets or sets the parametrized constructor used to create the object.
8731
            </summary>
8732
            <value>The parametrized constructor.</value>
8733
        </member>
8734
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">
8735
            <summary>
8736
            Gets or sets the function used to create the object. When set this function will override <see cref="P:DefaultCreator"/>.
8737
            This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection.
8738
            </summary>
8739
            <value>The function used to create the object.</value>
8740
        </member>
8741
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">
8742
            <summary>
8743
            Gets or sets the extension data setter.
8744
            </summary>
8745
        </member>
8746
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">
8747
            <summary>
8748
            Gets or sets the extension data getter.
8749
            </summary>
8750
        </member>
8751
        <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
8752
            <summary>
8753
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8754
            </summary>
8755
        </member>
8756
        <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
8757
            <summary>
8758
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
8759
            </summary>
8760
            <param name="underlyingType">The underlying type for the contract.</param>
8761
        </member>
8762
        <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
8763
            <summary>
8764
            Represents a method that constructs an object.
8765
            </summary>
8766
            <typeparam name="T">The object type to create.</typeparam>
8767
        </member>
8768
        <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
8769
            <summary>
8770
            When applied to a method, specifies that the method is called when an error occurs serializing an object.
8771
            </summary>
8772
        </member>
8773
        <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
8774
            <summary>
8775
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
8776
            </summary>
8777
        </member>
8778
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
8779
            <summary>
8780
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
8781
            </summary>
8782
            <param name="memberInfo">The member info.</param>
8783
        </member>
8784
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
8785
            <summary>
8786
            Sets the value.
8787
            </summary>
8788
            <param name="target">The target to set the value on.</param>
8789
            <param name="value">The value to set on the target.</param>
8790
        </member>
8791
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
8792
            <summary>
8793
            Gets the value.
8794
            </summary>
8795
            <param name="target">The target to get the value from.</param>
8796
            <returns>The value.</returns>
8797
        </member>
8798
        <member name="T:Newtonsoft.Json.TypeNameHandling">
8799
            <summary>
8800
            Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8801
            </summary>
8802
        </member>
8803
        <member name="F:Newtonsoft.Json.TypeNameHandling.None">
8804
            <summary>
8805
            Do not include the .NET type name when serializing types.
8806
            </summary>
8807
        </member>
8808
        <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
8809
            <summary>
8810
            Include the .NET type name when serializing into a JSON object structure.
8811
            </summary>
8812
        </member>
8813
        <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
8814
            <summary>
8815
            Include the .NET type name when serializing into a JSON array structure.
8816
            </summary>
8817
        </member>
8818
        <member name="F:Newtonsoft.Json.TypeNameHandling.All">
8819
            <summary>
8820
            Always include the .NET type name when serializing.
8821
            </summary>
8822
        </member>
8823
        <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
8824
            <summary>
8825
            Include the .NET type name when the type of the object being serialized is not the same as its declared type.
8826
            </summary>
8827
        </member>
8828
        <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
8829
            <summary>
8830
            Converts the value to the specified type. If the value is unable to be converted, the
8831
            value is checked whether it assignable to the specified type.
8832
            </summary>
8833
            <param name="initialValue">The value to convert.</param>
8834
            <param name="culture">The culture to use when converting.</param>
8835
            <param name="targetType">The type to convert or cast the value to.</param>
8836
            <returns>
8837
            The converted type. If conversion was unsuccessful, the initial value
8838
            is returned if assignable to the target type.
8839
            </returns>
8840
        </member>
8841
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
8842
            <summary>
8843
            Gets a dictionary of the names and values of an Enum type.
8844
            </summary>
8845
            <returns></returns>
8846
        </member>
8847
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
8848
            <summary>
8849
            Gets a dictionary of the names and values of an Enum type.
8850
            </summary>
8851
            <param name="enumType">The enum type to get names and values for.</param>
8852
            <returns></returns>
8853
        </member>
8854
        <member name="T:Newtonsoft.Json.JsonToken">
8855
            <summary>
8856
            Specifies the type of Json token.
8857
            </summary>
8858
        </member>
8859
        <member name="F:Newtonsoft.Json.JsonToken.None">
8860
            <summary>
8861
            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. 
8862
            </summary>
8863
        </member>
8864
        <member name="F:Newtonsoft.Json.JsonToken.StartObject">
8865
            <summary>
8866
            An object start token.
8867
            </summary>
8868
        </member>
8869
        <member name="F:Newtonsoft.Json.JsonToken.StartArray">
8870
            <summary>
8871
            An array start token.
8872
            </summary>
8873
        </member>
8874
        <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
8875
            <summary>
8876
            A constructor start token.
8877
            </summary>
8878
        </member>
8879
        <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
8880
            <summary>
8881
            An object property name.
8882
            </summary>
8883
        </member>
8884
        <member name="F:Newtonsoft.Json.JsonToken.Comment">
8885
            <summary>
8886
            A comment.
8887
            </summary>
8888
        </member>
8889
        <member name="F:Newtonsoft.Json.JsonToken.Raw">
8890
            <summary>
8891
            Raw JSON.
8892
            </summary>
8893
        </member>
8894
        <member name="F:Newtonsoft.Json.JsonToken.Integer">
8895
            <summary>
8896
            An integer.
8897
            </summary>
8898
        </member>
8899
        <member name="F:Newtonsoft.Json.JsonToken.Float">
8900
            <summary>
8901
            A float.
8902
            </summary>
8903
        </member>
8904
        <member name="F:Newtonsoft.Json.JsonToken.String">
8905
            <summary>
8906
            A string.
8907
            </summary>
8908
        </member>
8909
        <member name="F:Newtonsoft.Json.JsonToken.Boolean">
8910
            <summary>
8911
            A boolean.
8912
            </summary>
8913
        </member>
8914
        <member name="F:Newtonsoft.Json.JsonToken.Null">
8915
            <summary>
8916
            A null token.
8917
            </summary>
8918
        </member>
8919
        <member name="F:Newtonsoft.Json.JsonToken.Undefined">
8920
            <summary>
8921
            An undefined token.
8922
            </summary>
8923
        </member>
8924
        <member name="F:Newtonsoft.Json.JsonToken.EndObject">
8925
            <summary>
8926
            An object end token.
8927
            </summary>
8928
        </member>
8929
        <member name="F:Newtonsoft.Json.JsonToken.EndArray">
8930
            <summary>
8931
            An array end token.
8932
            </summary>
8933
        </member>
8934
        <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
8935
            <summary>
8936
            A constructor end token.
8937
            </summary>
8938
        </member>
8939
        <member name="F:Newtonsoft.Json.JsonToken.Date">
8940
            <summary>
8941
            A Date.
8942
            </summary>
8943
        </member>
8944
        <member name="F:Newtonsoft.Json.JsonToken.Bytes">
8945
            <summary>
8946
            Byte data.
8947
            </summary>
8948
        </member>
8949
        <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
8950
            <summary>
8951
            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
8952
            </summary>
8953
        </member>
8954
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
8955
            <summary>
8956
            Determines whether the collection is null or empty.
8957
            </summary>
8958
            <param name="collection">The collection.</param>
8959
            <returns>
8960
                    <c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
8961
            </returns>
8962
        </member>
8963
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
8964
            <summary>
8965
            Adds the elements of the specified collection to the specified generic IList.
8966
            </summary>
8967
            <param name="initial">The list to add to.</param>
8968
            <param name="collection">The collection of elements to add.</param>
8969
        </member>
8970
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
8971
            <summary>
8972
            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
8973
            </summary>
8974
            <typeparam name="TSource">The type of the elements of source.</typeparam>
8975
            <param name="list">A sequence in which to locate a value.</param>
8976
            <param name="value">The object to locate in the sequence</param>
8977
            <param name="comparer">An equality comparer to compare values.</param>
8978
            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
8979
        </member>
8980
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
8981
            <summary>
8982
            Gets the type of the typed collection's items.
8983
            </summary>
8984
            <param name="type">The type.</param>
8985
            <returns>The type of the typed collection's items.</returns>
8986
        </member>
8987
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
8988
            <summary>
8989
            Gets the member's underlying type.
8990
            </summary>
8991
            <param name="member">The member.</param>
8992
            <returns>The underlying type of the member.</returns>
8993
        </member>
8994
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
8995
            <summary>
8996
            Determines whether the member is an indexed property.
8997
            </summary>
8998
            <param name="member">The member.</param>
8999
            <returns>
9000
                    <c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
9001
            </returns>
9002
        </member>
9003
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
9004
            <summary>
9005
            Determines whether the property is an indexed property.
9006
            </summary>
9007
            <param name="property">The property.</param>
9008
            <returns>
9009
                    <c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
9010
            </returns>
9011
        </member>
9012
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
9013
            <summary>
9014
            Gets the member's value on the object.
9015
            </summary>
9016
            <param name="member">The member.</param>
9017
            <param name="target">The target object.</param>
9018
            <returns>The member's value on the object.</returns>
9019
        </member>
9020
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
9021
            <summary>
9022
            Sets the member's value on the target object.
9023
            </summary>
9024
            <param name="member">The member.</param>
9025
            <param name="target">The target.</param>
9026
            <param name="value">The value.</param>
9027
        </member>
9028
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
9029
            <summary>
9030
            Determines whether the specified MemberInfo can be read.
9031
            </summary>
9032
            <param name="member">The MemberInfo to determine whether can be read.</param>
9033
            /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
9034
            <returns>
9035
                    <c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
9036
            </returns>
9037
        </member>
9038
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
9039
            <summary>
9040
            Determines whether the specified MemberInfo can be set.
9041
            </summary>
9042
            <param name="member">The MemberInfo to determine whether can be set.</param>
9043
            <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
9044
            <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
9045
            <returns>
9046
                    <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
9047
            </returns>
9048
        </member>
9049
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
9050
            <summary>
9051
            Determines whether the string is all white space. Empty string will return false.
9052
            </summary>
9053
            <param name="s">The string to test whether it is all white space.</param>
9054
            <returns>
9055
                    <c>true</c> if the string is all white space; otherwise, <c>false</c>.
9056
            </returns>
9057
        </member>
9058
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
9059
            <summary>
9060
            Nulls an empty string.
9061
            </summary>
9062
            <param name="s">The string.</param>
9063
            <returns>Null if the string was null, otherwise the string unchanged.</returns>
9064
        </member>
9065
        <member name="T:Newtonsoft.Json.WriteState">
9066
            <summary>
9067
            Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
9068
            </summary>
9069
        </member>
9070
        <member name="F:Newtonsoft.Json.WriteState.Error">
9071
            <summary>
9072
            An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
9073
            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.
9074
            Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown. 
9075
            </summary>
9076
        </member>
9077
        <member name="F:Newtonsoft.Json.WriteState.Closed">
9078
            <summary>
9079
            The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called. 
9080
            </summary>
9081
        </member>
9082
        <member name="F:Newtonsoft.Json.WriteState.Object">
9083
            <summary>
9084
            An object is being written. 
9085
            </summary>
9086
        </member>
9087
        <member name="F:Newtonsoft.Json.WriteState.Array">
9088
            <summary>
9089
            A array is being written.
9090
            </summary>
9091
        </member>
9092
        <member name="F:Newtonsoft.Json.WriteState.Constructor">
9093
            <summary>
9094
            A constructor is being written.
9095
            </summary>
9096
        </member>
9097
        <member name="F:Newtonsoft.Json.WriteState.Property">
9098
            <summary>
9099
            A property is being written.
9100
            </summary>
9101
        </member>
9102
        <member name="F:Newtonsoft.Json.WriteState.Start">
9103
            <summary>
9104
            A write method has not been called.
9105
            </summary>
9106
        </member>
9107
    </members>
9108
</doc>
클립보드 이미지 추가 (최대 크기: 500 MB)