Subversion Repositories group.electronics

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
158 pfowler 1
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>Newtonsoft.Json</name>
5
    </assembly>
6
    <members>
7
        <member name="T:Newtonsoft.Json.Bson.BsonReader">
8
            <summary>
9
            Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
10
            </summary>
11
        </member>
12
        <member name="T:Newtonsoft.Json.JsonReader">
13
            <summary>
14
            Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
15
            </summary>
16
        </member>
17
        <member name="M:Newtonsoft.Json.JsonReader.#ctor">
18
            <summary>
19
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
20
            </summary>
21
        </member>
22
        <member name="M:Newtonsoft.Json.JsonReader.Read">
23
            <summary>
24
            Reads the next JSON token from the stream.
25
            </summary>
26
            <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
27
        </member>
28
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
29
            <summary>
30
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
31
            </summary>
32
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
33
        </member>
34
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
35
            <summary>
36
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
37
            </summary>
38
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
39
        </member>
40
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
41
            <summary>
42
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
43
            </summary>
44
            <returns>A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>
45
        </member>
46
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
47
            <summary>
48
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
49
            </summary>
50
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
51
        </member>
52
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
53
            <summary>
54
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
55
            </summary>
56
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
57
        </member>
58
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">
59
            <summary>
60
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
61
            </summary>
62
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
63
        </member>
64
        <member name="M:Newtonsoft.Json.JsonReader.Skip">
65
            <summary>
66
            Skips the children of the current token.
67
            </summary>
68
        </member>
69
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
70
            <summary>
71
            Sets the current token.
72
            </summary>
73
            <param name="newToken">The new token.</param>
74
        </member>
75
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
76
            <summary>
77
            Sets the current token and value.
78
            </summary>
79
            <param name="newToken">The new token.</param>
80
            <param name="value">The value.</param>
81
        </member>
82
        <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
83
            <summary>
84
            Sets the state based on current token type.
85
            </summary>
86
        </member>
87
        <member name="M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose">
88
            <summary>
89
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
90
            </summary>
91
        </member>
92
        <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
93
            <summary>
94
            Releases unmanaged and - optionally - managed resources
95
            </summary>
96
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
97
        </member>
98
        <member name="M:Newtonsoft.Json.JsonReader.Close">
99
            <summary>
100
            Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed. 
101
            </summary>
102
        </member>
103
        <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
104
            <summary>
105
            Gets the current reader state.
106
            </summary>
107
            <value>The current reader state.</value>
108
        </member>
109
        <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
110
            <summary>
111
            Gets or sets a value indicating whether the underlying stream or
112
            <see cref="T:System.IO.TextReader"/> should be closed when the reader is closed.
113
            </summary>
114
            <value>
115
            true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
116
            the reader is closed; otherwise false. The default is true.
117
            </value>
118
        </member>
119
        <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">
120
            <summary>
121
            Gets or sets a value indicating whether multiple pieces of JSON content can
122
            be read from a continuous stream without erroring.
123
            </summary>
124
            <value>
125
            true to support reading multiple pieces of JSON content; otherwise false. The default is false.
126
            </value>
127
        </member>
128
        <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
129
            <summary>
130
            Gets the quotation mark character used to enclose the value of a string.
131
            </summary>
132
        </member>
133
        <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
134
            <summary>
135
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when reading JSON.
136
            </summary>
137
        </member>
138
        <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
139
            <summary>
140
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
141
            </summary>
142
        </member>
143
        <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
144
            <summary>
145
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
146
            </summary>
147
        </member>
148
        <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
149
            <summary>
150
            Get or set how custom date formatted strings are parsed when reading JSON.
151
            </summary>
152
        </member>
153
        <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
154
            <summary>
155
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
156
            </summary>
157
        </member>
158
        <member name="P:Newtonsoft.Json.JsonReader.TokenType">
159
            <summary>
160
            Gets the type of the current JSON token. 
161
            </summary>
162
        </member>
163
        <member name="P:Newtonsoft.Json.JsonReader.Value">
164
            <summary>
165
            Gets the text value of the current JSON token.
166
            </summary>
167
        </member>
168
        <member name="P:Newtonsoft.Json.JsonReader.ValueType">
169
            <summary>
170
            Gets The Common Language Runtime (CLR) type for the current JSON token.
171
            </summary>
172
        </member>
173
        <member name="P:Newtonsoft.Json.JsonReader.Depth">
174
            <summary>
175
            Gets the depth of the current token in the JSON document.
176
            </summary>
177
            <value>The depth of the current token in the JSON document.</value>
178
        </member>
179
        <member name="P:Newtonsoft.Json.JsonReader.Path">
180
            <summary>
181
            Gets the path of the current JSON token. 
182
            </summary>
183
        </member>
184
        <member name="P:Newtonsoft.Json.JsonReader.Culture">
185
            <summary>
186
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
187
            </summary>
188
        </member>
189
        <member name="T:Newtonsoft.Json.JsonReader.State">
190
            <summary>
191
            Specifies the state of the reader.
192
            </summary>
193
        </member>
194
        <member name="F:Newtonsoft.Json.JsonReader.State.Start">
195
            <summary>
196
            The Read method has not been called.
197
            </summary>
198
        </member>
199
        <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
200
            <summary>
201
            The end of the file has been reached successfully.
202
            </summary>
203
        </member>
204
        <member name="F:Newtonsoft.Json.JsonReader.State.Property">
205
            <summary>
206
            Reader is at a property.
207
            </summary>
208
        </member>
209
        <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
210
            <summary>
211
            Reader is at the start of an object.
212
            </summary>
213
        </member>
214
        <member name="F:Newtonsoft.Json.JsonReader.State.Object">
215
            <summary>
216
            Reader is in an object.
217
            </summary>
218
        </member>
219
        <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
220
            <summary>
221
            Reader is at the start of an array.
222
            </summary>
223
        </member>
224
        <member name="F:Newtonsoft.Json.JsonReader.State.Array">
225
            <summary>
226
            Reader is in an array.
227
            </summary>
228
        </member>
229
        <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
230
            <summary>
231
            The Close method has been called.
232
            </summary>
233
        </member>
234
        <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
235
            <summary>
236
            Reader has just read a value.
237
            </summary>
238
        </member>
239
        <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
240
            <summary>
241
            Reader is at the start of a constructor.
242
            </summary>
243
        </member>
244
        <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
245
            <summary>
246
            Reader in a constructor.
247
            </summary>
248
        </member>
249
        <member name="F:Newtonsoft.Json.JsonReader.State.Error">
250
            <summary>
251
            An error occurred that prevents the read operation from continuing.
252
            </summary>
253
        </member>
254
        <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
255
            <summary>
256
            The end of the file has been reached successfully.
257
            </summary>
258
        </member>
259
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
260
            <summary>
261
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
262
            </summary>
263
            <param name="stream">The stream.</param>
264
        </member>
265
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
266
            <summary>
267
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
268
            </summary>
269
            <param name="reader">The reader.</param>
270
        </member>
271
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
272
            <summary>
273
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
274
            </summary>
275
            <param name="stream">The stream.</param>
276
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
277
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
278
        </member>
279
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
280
            <summary>
281
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
282
            </summary>
283
            <param name="reader">The reader.</param>
284
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
285
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
286
        </member>
287
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
288
            <summary>
289
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
290
            </summary>
291
            <returns>
292
            A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
293
            </returns>
294
        </member>
295
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal">
296
            <summary>
297
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
298
            </summary>
299
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
300
        </member>
301
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
302
            <summary>
303
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
304
            </summary>
305
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
306
        </member>
307
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsString">
308
            <summary>
309
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
310
            </summary>
311
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
312
        </member>
313
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime">
314
            <summary>
315
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
316
            </summary>
317
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
318
        </member>
319
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset">
320
            <summary>
321
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
322
            </summary>
323
            <returns>
324
            A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.
325
            </returns>
326
        </member>
327
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
328
            <summary>
329
            Reads the next JSON token from the stream.
330
            </summary>
331
            <returns>
332
            true if the next token was read successfully; false if there are no more tokens to read.
333
            </returns>
334
        </member>
335
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
336
            <summary>
337
            Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed.
338
            </summary>
339
        </member>
340
        <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
341
            <summary>
342
            Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.
343
            </summary>
344
            <value>
345
            	<c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
346
            </value>
347
        </member>
348
        <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
349
            <summary>
350
            Gets or sets a value indicating whether the root object will be read as a JSON array.
351
            </summary>
352
            <value>
353
            	<c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
354
            </value>
355
        </member>
356
        <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
357
            <summary>
358
            Gets or sets the <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.
359
            </summary>
360
            <value>The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
361
        </member>
362
        <member name="T:Newtonsoft.Json.Bson.BsonWriter">
363
            <summary>
364
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
365
            </summary>
366
        </member>
367
        <member name="T:Newtonsoft.Json.JsonWriter">
368
            <summary>
369
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
370
            </summary>
371
        </member>
372
        <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
373
            <summary>
374
            Creates an instance of the <c>JsonWriter</c> class. 
375
            </summary>
376
        </member>
377
        <member name="M:Newtonsoft.Json.JsonWriter.Flush">
378
            <summary>
379
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
380
            </summary>
381
        </member>
382
        <member name="M:Newtonsoft.Json.JsonWriter.Close">
383
            <summary>
384
            Closes this stream and the underlying stream.
385
            </summary>
386
        </member>
387
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
388
            <summary>
389
            Writes the beginning of a Json object.
390
            </summary>
391
        </member>
392
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
393
            <summary>
394
            Writes the end of a Json object.
395
            </summary>
396
        </member>
397
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
398
            <summary>
399
            Writes the beginning of a Json array.
400
            </summary>
401
        </member>
402
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
403
            <summary>
404
            Writes the end of an array.
405
            </summary>
406
        </member>
407
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
408
            <summary>
409
            Writes the start of a constructor with the given name.
410
            </summary>
411
            <param name="name">The name of the constructor.</param>
412
        </member>
413
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
414
            <summary>
415
            Writes the end constructor.
416
            </summary>
417
        </member>
418
        <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
419
            <summary>
420
            Writes the property name of a name/value pair on a JSON object.
421
            </summary>
422
            <param name="name">The name of the property.</param>
423
        </member>
424
        <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">
425
            <summary>
426
            Writes the property name of a name/value pair on a JSON object.
427
            </summary>
428
            <param name="name">The name of the property.</param>
429
            <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
430
        </member>
431
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
432
            <summary>
433
            Writes the end of the current Json object or array.
434
            </summary>
435
        </member>
436
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
437
            <summary>
438
            Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.
439
            </summary>
440
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
441
        </member>
442
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">
443
            <summary>
444
            Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
445
            </summary>
446
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
447
            <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
448
        </member>
449
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken,System.Object)">
450
            <summary>
451
            Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.
452
            </summary>
453
            <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
454
            <param name="value">
455
            The value to write.
456
            A value is only required for tokens that have an associated value, e.g. the <see cref="T:System.String"/> property name for <see cref="F:Newtonsoft.Json.JsonToken.PropertyName"/>.
457
            A null value can be passed to the method for token's that don't have a value, e.g. <see cref="F:Newtonsoft.Json.JsonToken.StartObject"/>.</param>
458
        </member>
459
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken)">
460
            <summary>
461
            Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token.
462
            </summary>
463
            <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
464
        </member>
465
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
466
            <summary>
467
            Writes the specified end token.
468
            </summary>
469
            <param name="token">The end token to write.</param>
470
        </member>
471
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
472
            <summary>
473
            Writes indent characters.
474
            </summary>
475
        </member>
476
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
477
            <summary>
478
            Writes the JSON value delimiter.
479
            </summary>
480
        </member>
481
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
482
            <summary>
483
            Writes an indent space.
484
            </summary>
485
        </member>
486
        <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
487
            <summary>
488
            Writes a null value.
489
            </summary>
490
        </member>
491
        <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
492
            <summary>
493
            Writes an undefined value.
494
            </summary>
495
        </member>
496
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
497
            <summary>
498
            Writes raw JSON without changing the writer's state.
499
            </summary>
500
            <param name="json">The raw JSON to write.</param>
501
        </member>
502
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
503
            <summary>
504
            Writes raw JSON where a value is expected and updates the writer's state.
505
            </summary>
506
            <param name="json">The raw JSON to write.</param>
507
        </member>
508
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
509
            <summary>
510
            Writes a <see cref="T:System.String"/> value.
511
            </summary>
512
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
513
        </member>
514
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
515
            <summary>
516
            Writes a <see cref="T:System.Int32"/> value.
517
            </summary>
518
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
519
        </member>
520
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
521
            <summary>
522
            Writes a <see cref="T:System.UInt32"/> value.
523
            </summary>
524
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
525
        </member>
526
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
527
            <summary>
528
            Writes a <see cref="T:System.Int64"/> value.
529
            </summary>
530
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
531
        </member>
532
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
533
            <summary>
534
            Writes a <see cref="T:System.UInt64"/> value.
535
            </summary>
536
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
537
        </member>
538
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
539
            <summary>
540
            Writes a <see cref="T:System.Single"/> value.
541
            </summary>
542
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
543
        </member>
544
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
545
            <summary>
546
            Writes a <see cref="T:System.Double"/> value.
547
            </summary>
548
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
549
        </member>
550
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
551
            <summary>
552
            Writes a <see cref="T:System.Boolean"/> value.
553
            </summary>
554
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
555
        </member>
556
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
557
            <summary>
558
            Writes a <see cref="T:System.Int16"/> value.
559
            </summary>
560
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
561
        </member>
562
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
563
            <summary>
564
            Writes a <see cref="T:System.UInt16"/> value.
565
            </summary>
566
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
567
        </member>
568
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
569
            <summary>
570
            Writes a <see cref="T:System.Char"/> value.
571
            </summary>
572
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
573
        </member>
574
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
575
            <summary>
576
            Writes a <see cref="T:System.Byte"/> value.
577
            </summary>
578
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
579
        </member>
580
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
581
            <summary>
582
            Writes a <see cref="T:System.SByte"/> value.
583
            </summary>
584
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
585
        </member>
586
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
587
            <summary>
588
            Writes a <see cref="T:System.Decimal"/> value.
589
            </summary>
590
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
591
        </member>
592
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
593
            <summary>
594
            Writes a <see cref="T:System.DateTime"/> value.
595
            </summary>
596
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
597
        </member>
598
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
599
            <summary>
600
            Writes a <see cref="T:System.DateTimeOffset"/> value.
601
            </summary>
602
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
603
        </member>
604
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
605
            <summary>
606
            Writes a <see cref="T:System.Guid"/> value.
607
            </summary>
608
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
609
        </member>
610
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
611
            <summary>
612
            Writes a <see cref="T:System.TimeSpan"/> value.
613
            </summary>
614
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
615
        </member>
616
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
617
            <summary>
618
            Writes a <see cref="T:System.Nullable`1"/> value.
619
            </summary>
620
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
621
        </member>
622
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
623
            <summary>
624
            Writes a <see cref="T:System.Nullable`1"/> value.
625
            </summary>
626
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
627
        </member>
628
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
629
            <summary>
630
            Writes a <see cref="T:System.Nullable`1"/> value.
631
            </summary>
632
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
633
        </member>
634
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
635
            <summary>
636
            Writes a <see cref="T:System.Nullable`1"/> value.
637
            </summary>
638
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
639
        </member>
640
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
641
            <summary>
642
            Writes a <see cref="T:System.Nullable`1"/> value.
643
            </summary>
644
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
645
        </member>
646
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
647
            <summary>
648
            Writes a <see cref="T:System.Nullable`1"/> value.
649
            </summary>
650
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
651
        </member>
652
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
653
            <summary>
654
            Writes a <see cref="T:System.Nullable`1"/> value.
655
            </summary>
656
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
657
        </member>
658
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
659
            <summary>
660
            Writes a <see cref="T:System.Nullable`1"/> value.
661
            </summary>
662
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
663
        </member>
664
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
665
            <summary>
666
            Writes a <see cref="T:System.Nullable`1"/> value.
667
            </summary>
668
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
669
        </member>
670
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
671
            <summary>
672
            Writes a <see cref="T:System.Nullable`1"/> value.
673
            </summary>
674
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
675
        </member>
676
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
677
            <summary>
678
            Writes a <see cref="T:System.Nullable`1"/> value.
679
            </summary>
680
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
681
        </member>
682
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
683
            <summary>
684
            Writes a <see cref="T:System.Nullable`1"/> value.
685
            </summary>
686
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
687
        </member>
688
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
689
            <summary>
690
            Writes a <see cref="T:System.Nullable`1"/> value.
691
            </summary>
692
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
693
        </member>
694
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
695
            <summary>
696
            Writes a <see cref="T:System.Nullable`1"/> value.
697
            </summary>
698
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
699
        </member>
700
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">
701
            <summary>
702
            Writes a <see cref="T:System.Nullable`1"/> value.
703
            </summary>
704
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
705
        </member>
706
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
707
            <summary>
708
            Writes a <see cref="T:System.Nullable`1"/> value.
709
            </summary>
710
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
711
        </member>
712
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
713
            <summary>
714
            Writes a <see cref="T:System.Nullable`1"/> value.
715
            </summary>
716
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
717
        </member>
718
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
719
            <summary>
720
            Writes a <see cref="T:System.Byte"/>[] value.
721
            </summary>
722
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
723
        </member>
724
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
725
            <summary>
726
            Writes a <see cref="T:System.Uri"/> value.
727
            </summary>
728
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
729
        </member>
730
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
731
            <summary>
732
            Writes a <see cref="T:System.Object"/> value.
733
            An error will raised if the value cannot be written as a single JSON token.
734
            </summary>
735
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
736
        </member>
737
        <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
738
            <summary>
739
            Writes out a comment <code>/*...*/</code> containing the specified text. 
740
            </summary>
741
            <param name="text">Text to place inside the comment.</param>
742
        </member>
743
        <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
744
            <summary>
745
            Writes out the given white space.
746
            </summary>
747
            <param name="ws">The string of white space characters.</param>
748
        </member>
749
        <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">
750
            <summary>
751
            Sets the state of the JsonWriter,
752
            </summary>
753
            <param name="token">The JsonToken being written.</param>
754
            <param name="value">The value being written.</param>
755
        </member>
756
        <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
757
            <summary>
758
            Gets or sets a value indicating whether the underlying stream or
759
            <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed.
760
            </summary>
761
            <value>
762
            true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
763
            the writer is closed; otherwise false. The default is true.
764
            </value>
765
        </member>
766
        <member name="P:Newtonsoft.Json.JsonWriter.Top">
767
            <summary>
768
            Gets the top.
769
            </summary>
770
            <value>The top.</value>
771
        </member>
772
        <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
773
            <summary>
774
            Gets the state of the writer.
775
            </summary>
776
        </member>
777
        <member name="P:Newtonsoft.Json.JsonWriter.Path">
778
            <summary>
779
            Gets the path of the writer. 
780
            </summary>
781
        </member>
782
        <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
783
            <summary>
784
            Indicates how JSON text output is formatted.
785
            </summary>
786
        </member>
787
        <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
788
            <summary>
789
            Get or set how dates are written to JSON text.
790
            </summary>
791
        </member>
792
        <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
793
            <summary>
794
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when writing JSON text.
795
            </summary>
796
        </member>
797
        <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
798
            <summary>
799
            Get or set how strings are escaped when writing JSON text.
800
            </summary>
801
        </member>
802
        <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
803
            <summary>
804
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
805
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
806
            are written to JSON text.
807
            </summary>
808
        </member>
809
        <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
810
            <summary>
811
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
812
            </summary>
813
        </member>
814
        <member name="P:Newtonsoft.Json.JsonWriter.Culture">
815
            <summary>
816
            Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
817
            </summary>
818
        </member>
819
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
820
            <summary>
821
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
822
            </summary>
823
            <param name="stream">The stream.</param>
824
        </member>
825
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
826
            <summary>
827
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
828
            </summary>
829
            <param name="writer">The writer.</param>
830
        </member>
831
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
832
            <summary>
833
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
834
            </summary>
835
        </member>
836
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
837
            <summary>
838
            Writes the end.
839
            </summary>
840
            <param name="token">The token.</param>
841
        </member>
842
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
843
            <summary>
844
            Writes out a comment <code>/*...*/</code> containing the specified text.
845
            </summary>
846
            <param name="text">Text to place inside the comment.</param>
847
        </member>
848
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
849
            <summary>
850
            Writes the start of a constructor with the given name.
851
            </summary>
852
            <param name="name">The name of the constructor.</param>
853
        </member>
854
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
855
            <summary>
856
            Writes raw JSON.
857
            </summary>
858
            <param name="json">The raw JSON to write.</param>
859
        </member>
860
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
861
            <summary>
862
            Writes raw JSON where a value is expected and updates the writer's state.
863
            </summary>
864
            <param name="json">The raw JSON to write.</param>
865
        </member>
866
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
867
            <summary>
868
            Writes the beginning of a Json array.
869
            </summary>
870
        </member>
871
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
872
            <summary>
873
            Writes the beginning of a Json object.
874
            </summary>
875
        </member>
876
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
877
            <summary>
878
            Writes the property name of a name/value pair on a Json object.
879
            </summary>
880
            <param name="name">The name of the property.</param>
881
        </member>
882
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
883
            <summary>
884
            Closes this stream and the underlying stream.
885
            </summary>
886
        </member>
887
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">
888
            <summary>
889
            Writes a <see cref="T:System.Object"/> value.
890
            An error will raised if the value cannot be written as a single JSON token.
891
            </summary>
892
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
893
        </member>
894
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
895
            <summary>
896
            Writes a null value.
897
            </summary>
898
        </member>
899
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
900
            <summary>
901
            Writes an undefined value.
902
            </summary>
903
        </member>
904
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
905
            <summary>
906
            Writes a <see cref="T:System.String"/> value.
907
            </summary>
908
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
909
        </member>
910
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
911
            <summary>
912
            Writes a <see cref="T:System.Int32"/> value.
913
            </summary>
914
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
915
        </member>
916
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
917
            <summary>
918
            Writes a <see cref="T:System.UInt32"/> value.
919
            </summary>
920
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
921
        </member>
922
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
923
            <summary>
924
            Writes a <see cref="T:System.Int64"/> value.
925
            </summary>
926
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
927
        </member>
928
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
929
            <summary>
930
            Writes a <see cref="T:System.UInt64"/> value.
931
            </summary>
932
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
933
        </member>
934
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
935
            <summary>
936
            Writes a <see cref="T:System.Single"/> value.
937
            </summary>
938
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
939
        </member>
940
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
941
            <summary>
942
            Writes a <see cref="T:System.Double"/> value.
943
            </summary>
944
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
945
        </member>
946
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
947
            <summary>
948
            Writes a <see cref="T:System.Boolean"/> value.
949
            </summary>
950
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
951
        </member>
952
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
953
            <summary>
954
            Writes a <see cref="T:System.Int16"/> value.
955
            </summary>
956
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
957
        </member>
958
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
959
            <summary>
960
            Writes a <see cref="T:System.UInt16"/> value.
961
            </summary>
962
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
963
        </member>
964
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
965
            <summary>
966
            Writes a <see cref="T:System.Char"/> value.
967
            </summary>
968
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
969
        </member>
970
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
971
            <summary>
972
            Writes a <see cref="T:System.Byte"/> value.
973
            </summary>
974
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
975
        </member>
976
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
977
            <summary>
978
            Writes a <see cref="T:System.SByte"/> value.
979
            </summary>
980
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
981
        </member>
982
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
983
            <summary>
984
            Writes a <see cref="T:System.Decimal"/> value.
985
            </summary>
986
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
987
        </member>
988
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
989
            <summary>
990
            Writes a <see cref="T:System.DateTime"/> value.
991
            </summary>
992
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
993
        </member>
994
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)">
995
            <summary>
996
            Writes a <see cref="T:System.DateTimeOffset"/> value.
997
            </summary>
998
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
999
        </member>
1000
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
1001
            <summary>
1002
            Writes a <see cref="T:System.Byte"/>[] value.
1003
            </summary>
1004
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
1005
        </member>
1006
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
1007
            <summary>
1008
            Writes a <see cref="T:System.Guid"/> value.
1009
            </summary>
1010
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
1011
        </member>
1012
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
1013
            <summary>
1014
            Writes a <see cref="T:System.TimeSpan"/> value.
1015
            </summary>
1016
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
1017
        </member>
1018
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
1019
            <summary>
1020
            Writes a <see cref="T:System.Uri"/> value.
1021
            </summary>
1022
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
1023
        </member>
1024
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
1025
            <summary>
1026
            Writes a <see cref="T:System.Byte"/>[] value that represents a BSON object id.
1027
            </summary>
1028
            <param name="value">The Object ID value to write.</param>
1029
        </member>
1030
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
1031
            <summary>
1032
            Writes a BSON regex.
1033
            </summary>
1034
            <param name="pattern">The regex pattern.</param>
1035
            <param name="options">The regex options.</param>
1036
        </member>
1037
        <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
1038
            <summary>
1039
            Gets or sets the <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.
1040
            When set to <see cref="F:System.DateTimeKind.Unspecified"/> no conversion will occur.
1041
            </summary>
1042
            <value>The <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
1043
        </member>
1044
        <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
1045
            <summary>
1046
            Represents a BSON Oid (object id).
1047
            </summary>
1048
        </member>
1049
        <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">
1050
            <summary>
1051
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.
1052
            </summary>
1053
            <param name="value">The Oid value.</param>
1054
        </member>
1055
        <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
1056
            <summary>
1057
            Gets or sets the value of the Oid.
1058
            </summary>
1059
            <value>The value of the Oid.</value>
1060
        </member>
1061
        <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
1062
            <summary>
1063
            Converts a binary value to and from a base 64 string value.
1064
            </summary>
1065
        </member>
1066
        <member name="T:Newtonsoft.Json.JsonConverter">
1067
            <summary>
1068
            Converts an object to and from JSON.
1069
            </summary>
1070
        </member>
1071
        <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1072
            <summary>
1073
            Writes the JSON representation of the object.
1074
            </summary>
1075
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1076
            <param name="value">The value.</param>
1077
            <param name="serializer">The calling serializer.</param>
1078
        </member>
1079
        <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1080
            <summary>
1081
            Reads the JSON representation of the object.
1082
            </summary>
1083
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1084
            <param name="objectType">Type of the object.</param>
1085
            <param name="existingValue">The existing value of object being read.</param>
1086
            <param name="serializer">The calling serializer.</param>
1087
            <returns>The object value.</returns>
1088
        </member>
1089
        <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
1090
            <summary>
1091
            Determines whether this instance can convert the specified object type.
1092
            </summary>
1093
            <param name="objectType">Type of the object.</param>
1094
            <returns>
1095
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1096
            </returns>
1097
        </member>
1098
        <member name="M:Newtonsoft.Json.JsonConverter.GetSchema">
1099
            <summary>
1100
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.
1101
            </summary>
1102
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns>
1103
        </member>
1104
        <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
1105
            <summary>
1106
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
1107
            </summary>
1108
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
1109
        </member>
1110
        <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
1111
            <summary>
1112
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1113
            </summary>
1114
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
1115
        </member>
1116
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1117
            <summary>
1118
            Writes the JSON representation of the object.
1119
            </summary>
1120
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1121
            <param name="value">The value.</param>
1122
            <param name="serializer">The calling serializer.</param>
1123
        </member>
1124
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1125
            <summary>
1126
            Reads the JSON representation of the object.
1127
            </summary>
1128
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1129
            <param name="objectType">Type of the object.</param>
1130
            <param name="existingValue">The existing value of object being read.</param>
1131
            <param name="serializer">The calling serializer.</param>
1132
            <returns>The object value.</returns>
1133
        </member>
1134
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
1135
            <summary>
1136
            Determines whether this instance can convert the specified object type.
1137
            </summary>
1138
            <param name="objectType">Type of the object.</param>
1139
            <returns>
1140
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1141
            </returns>
1142
        </member>
1143
        <member name="T:Newtonsoft.Json.Converters.DataSetConverter">
1144
            <summary>
1145
            Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.
1146
            </summary>
1147
        </member>
1148
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1149
            <summary>
1150
            Writes the JSON representation of the object.
1151
            </summary>
1152
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1153
            <param name="value">The value.</param>
1154
            <param name="serializer">The calling serializer.</param>
1155
        </member>
1156
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1157
            <summary>
1158
            Reads the JSON representation of the object.
1159
            </summary>
1160
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1161
            <param name="objectType">Type of the object.</param>
1162
            <param name="existingValue">The existing value of object being read.</param>
1163
            <param name="serializer">The calling serializer.</param>
1164
            <returns>The object value.</returns>
1165
        </member>
1166
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
1167
            <summary>
1168
            Determines whether this instance can convert the specified value type.
1169
            </summary>
1170
            <param name="valueType">Type of the value.</param>
1171
            <returns>
1172
            	<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1173
            </returns>
1174
        </member>
1175
        <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
1176
            <summary>
1177
            Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
1178
            </summary>
1179
        </member>
1180
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1181
            <summary>
1182
            Writes the JSON representation of the object.
1183
            </summary>
1184
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1185
            <param name="value">The value.</param>
1186
            <param name="serializer">The calling serializer.</param>
1187
        </member>
1188
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1189
            <summary>
1190
            Reads the JSON representation of the object.
1191
            </summary>
1192
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1193
            <param name="objectType">Type of the object.</param>
1194
            <param name="existingValue">The existing value of object being read.</param>
1195
            <param name="serializer">The calling serializer.</param>
1196
            <returns>The object value.</returns>
1197
        </member>
1198
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
1199
            <summary>
1200
            Determines whether this instance can convert the specified value type.
1201
            </summary>
1202
            <param name="valueType">Type of the value.</param>
1203
            <returns>
1204
            	<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1205
            </returns>
1206
        </member>
1207
        <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
1208
            <summary>
1209
            Create a custom object
1210
            </summary>
1211
            <typeparam name="T">The object type to convert.</typeparam>
1212
        </member>
1213
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1214
            <summary>
1215
            Writes the JSON representation of the object.
1216
            </summary>
1217
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1218
            <param name="value">The value.</param>
1219
            <param name="serializer">The calling serializer.</param>
1220
        </member>
1221
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1222
            <summary>
1223
            Reads the JSON representation of the object.
1224
            </summary>
1225
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1226
            <param name="objectType">Type of the object.</param>
1227
            <param name="existingValue">The existing value of object being read.</param>
1228
            <param name="serializer">The calling serializer.</param>
1229
            <returns>The object value.</returns>
1230
        </member>
1231
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
1232
            <summary>
1233
            Creates an object which will then be populated by the serializer.
1234
            </summary>
1235
            <param name="objectType">Type of the object.</param>
1236
            <returns>The created object.</returns>
1237
        </member>
1238
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
1239
            <summary>
1240
            Determines whether this instance can convert the specified object type.
1241
            </summary>
1242
            <param name="objectType">Type of the object.</param>
1243
            <returns>
1244
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1245
            </returns>
1246
        </member>
1247
        <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
1248
            <summary>
1249
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1250
            </summary>
1251
            <value>
1252
            	<c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
1253
            </value>
1254
        </member>
1255
        <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
1256
            <summary>
1257
            Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
1258
            </summary>
1259
        </member>
1260
        <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">
1261
            <summary>
1262
            Determines whether this instance can convert the specified object type.
1263
            </summary>
1264
            <param name="objectType">Type of the object.</param>
1265
            <returns>
1266
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1267
            </returns>
1268
        </member>
1269
        <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter">
1270
            <summary>
1271
            Converts an Entity Framework EntityKey to and from JSON.
1272
            </summary>
1273
        </member>
1274
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1275
            <summary>
1276
            Writes the JSON representation of the object.
1277
            </summary>
1278
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1279
            <param name="value">The value.</param>
1280
            <param name="serializer">The calling serializer.</param>
1281
        </member>
1282
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1283
            <summary>
1284
            Reads the JSON representation of the object.
1285
            </summary>
1286
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1287
            <param name="objectType">Type of the object.</param>
1288
            <param name="existingValue">The existing value of object being read.</param>
1289
            <param name="serializer">The calling serializer.</param>
1290
            <returns>The object value.</returns>
1291
        </member>
1292
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)">
1293
            <summary>
1294
            Determines whether this instance can convert the specified object type.
1295
            </summary>
1296
            <param name="objectType">Type of the object.</param>
1297
            <returns>
1298
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1299
            </returns>
1300
        </member>
1301
        <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
1302
            <summary>
1303
            Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
1304
            </summary>
1305
        </member>
1306
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1307
            <summary>
1308
            Writes the JSON representation of the object.
1309
            </summary>
1310
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1311
            <param name="value">The value.</param>
1312
            <param name="serializer">The calling serializer.</param>
1313
        </member>
1314
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1315
            <summary>
1316
            Reads the JSON representation of the object.
1317
            </summary>
1318
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1319
            <param name="objectType">Type of the object.</param>
1320
            <param name="existingValue">The existing value of object being read.</param>
1321
            <param name="serializer">The calling serializer.</param>
1322
            <returns>The object value.</returns>
1323
        </member>
1324
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
1325
            <summary>
1326
            Determines whether this instance can convert the specified object type.
1327
            </summary>
1328
            <param name="objectType">Type of the object.</param>
1329
            <returns>
1330
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1331
            </returns>
1332
        </member>
1333
        <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
1334
            <summary>
1335
            Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
1336
            </summary>
1337
        </member>
1338
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1339
            <summary>
1340
            Writes the JSON representation of the object.
1341
            </summary>
1342
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1343
            <param name="value">The value.</param>
1344
            <param name="serializer">The calling serializer.</param>
1345
        </member>
1346
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1347
            <summary>
1348
            Reads the JSON representation of the object.
1349
            </summary>
1350
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1351
            <param name="objectType">Type of the object.</param>
1352
            <param name="existingValue">The existing value of object being read.</param>
1353
            <param name="serializer">The calling serializer.</param>
1354
            <returns>The object value.</returns>
1355
        </member>
1356
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
1357
            <summary>
1358
            Determines whether this instance can convert the specified object type.
1359
            </summary>
1360
            <param name="objectType">Type of the object.</param>
1361
            <returns>
1362
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1363
            </returns>
1364
        </member>
1365
        <member name="T:Newtonsoft.Json.Converters.RegexConverter">
1366
            <summary>
1367
            Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
1368
            </summary>
1369
        </member>
1370
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1371
            <summary>
1372
            Writes the JSON representation of the object.
1373
            </summary>
1374
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1375
            <param name="value">The value.</param>
1376
            <param name="serializer">The calling serializer.</param>
1377
        </member>
1378
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1379
            <summary>
1380
            Reads the JSON representation of the object.
1381
            </summary>
1382
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1383
            <param name="objectType">Type of the object.</param>
1384
            <param name="existingValue">The existing value of object being read.</param>
1385
            <param name="serializer">The calling serializer.</param>
1386
            <returns>The object value.</returns>
1387
        </member>
1388
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
1389
            <summary>
1390
            Determines whether this instance can convert the specified object type.
1391
            </summary>
1392
            <param name="objectType">Type of the object.</param>
1393
            <returns>
1394
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1395
            </returns>
1396
        </member>
1397
        <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
1398
            <summary>
1399
            Converts an <see cref="T:System.Enum"/> to and from its name string value.
1400
            </summary>
1401
        </member>
1402
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
1403
            <summary>
1404
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
1405
            </summary>
1406
        </member>
1407
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1408
            <summary>
1409
            Writes the JSON representation of the object.
1410
            </summary>
1411
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1412
            <param name="value">The value.</param>
1413
            <param name="serializer">The calling serializer.</param>
1414
        </member>
1415
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1416
            <summary>
1417
            Reads the JSON representation of the object.
1418
            </summary>
1419
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1420
            <param name="objectType">Type of the object.</param>
1421
            <param name="existingValue">The existing value of object being read.</param>
1422
            <param name="serializer">The calling serializer.</param>
1423
            <returns>The object value.</returns>
1424
        </member>
1425
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
1426
            <summary>
1427
            Determines whether this instance can convert the specified object type.
1428
            </summary>
1429
            <param name="objectType">Type of the object.</param>
1430
            <returns>
1431
            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1432
            </returns>
1433
        </member>
1434
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
1435
            <summary>
1436
            Gets or sets a value indicating whether the written enum text should be camel case.
1437
            </summary>
1438
            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
1439
        </member>
1440
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
1441
            <summary>
1442
            Gets or sets a value indicating whether integer values are allowed.
1443
            </summary>
1444
            <value><c>true</c> if integers are allowed; otherwise, <c>false</c>.</value>
1445
        </member>
1446
        <member name="T:Newtonsoft.Json.ConstructorHandling">
1447
            <summary>
1448
            Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1449
            </summary>
1450
        </member>
1451
        <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
1452
            <summary>
1453
            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.
1454
            </summary>
1455
        </member>
1456
        <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
1457
            <summary>
1458
            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.
1459
            </summary>
1460
        </member>
1461
        <member name="T:Newtonsoft.Json.Converters.VersionConverter">
1462
            <summary>
1463
            Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4").
1464
            </summary>
1465
        </member>
1466
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1467
            <summary>
1468
            Writes the JSON representation of the object.
1469
            </summary>
1470
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1471
            <param name="value">The value.</param>
1472
            <param name="serializer">The calling serializer.</param>
1473
        </member>
1474
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1475
            <summary>
1476
            Reads the JSON representation of the object.
1477
            </summary>
1478
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1479
            <param name="objectType">Type of the object.</param>
1480
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
1481
            <param name="serializer">The calling serializer.</param>
1482
            <returns>The object value.</returns>
1483
        </member>
1484
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
1485
            <summary>
1486
            Determines whether this instance can convert the specified object type.
1487
            </summary>
1488
            <param name="objectType">Type of the object.</param>
1489
            <returns>
1490
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1491
            </returns>
1492
        </member>
1493
        <member name="T:Newtonsoft.Json.DateFormatHandling">
1494
            <summary>
1495
            Specifies how dates are formatted when writing JSON text.
1496
            </summary>
1497
        </member>
1498
        <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
1499
            <summary>
1500
            Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
1501
            </summary>
1502
        </member>
1503
        <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
1504
            <summary>
1505
            Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
1506
            </summary>
1507
        </member>
1508
        <member name="T:Newtonsoft.Json.DateParseHandling">
1509
            <summary>
1510
            Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
1511
            </summary>
1512
        </member>
1513
        <member name="F:Newtonsoft.Json.DateParseHandling.None">
1514
            <summary>
1515
            Date formatted strings are not parsed to a date type and are read as strings.
1516
            </summary>
1517
        </member>
1518
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
1519
            <summary>
1520
            Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.
1521
            </summary>
1522
        </member>
1523
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
1524
            <summary>
1525
            Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"/>.
1526
            </summary>
1527
        </member>
1528
        <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
1529
            <summary>
1530
            Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
1531
            </summary>
1532
        </member>
1533
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
1534
            <summary>
1535
            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.
1536
            </summary>
1537
        </member>
1538
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
1539
            <summary>
1540
            Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
1541
            </summary>
1542
        </member>
1543
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
1544
            <summary>
1545
            Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
1546
            If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
1547
            </summary>
1548
        </member>
1549
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
1550
            <summary>
1551
            Time zone information should be preserved when converting.
1552
            </summary>
1553
        </member>
1554
        <member name="T:Newtonsoft.Json.FloatFormatHandling">
1555
            <summary>
1556
            Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
1557
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1558
            </summary>
1559
        </member>
1560
        <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
1561
            <summary>
1562
            Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".
1563
            </summary>
1564
        </member>
1565
        <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
1566
            <summary>
1567
            Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity.
1568
            Note that this will produce non-valid JSON.
1569
            </summary>
1570
        </member>
1571
        <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
1572
            <summary>
1573
            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.
1574
            </summary>
1575
        </member>
1576
        <member name="T:Newtonsoft.Json.FloatParseHandling">
1577
            <summary>
1578
            Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
1579
            </summary>
1580
        </member>
1581
        <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
1582
            <summary>
1583
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
1584
            </summary>
1585
        </member>
1586
        <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
1587
            <summary>
1588
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
1589
            </summary>
1590
        </member>
1591
        <member name="T:Newtonsoft.Json.Formatting">
1592
            <summary>
1593
            Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
1594
            </summary>
1595
        </member>
1596
        <member name="F:Newtonsoft.Json.Formatting.None">
1597
            <summary>
1598
            No special formatting is applied. This is the default.
1599
            </summary>
1600
        </member>
1601
        <member name="F:Newtonsoft.Json.Formatting.Indented">
1602
            <summary>
1603
            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.
1604
            </summary>
1605
        </member>
1606
        <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1607
            <summary>
1608
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1609
            </summary>
1610
        </member>
1611
        <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
1612
            <summary>
1613
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
1614
            </summary>
1615
        </member>
1616
        <member name="T:Newtonsoft.Json.JsonContainerAttribute">
1617
            <summary>
1618
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
1619
            </summary>
1620
        </member>
1621
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
1622
            <summary>
1623
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
1624
            </summary>
1625
        </member>
1626
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
1627
            <summary>
1628
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
1629
            </summary>
1630
            <param name="id">The container Id.</param>
1631
        </member>
1632
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
1633
            <summary>
1634
            Gets or sets the id.
1635
            </summary>
1636
            <value>The id.</value>
1637
        </member>
1638
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
1639
            <summary>
1640
            Gets or sets the title.
1641
            </summary>
1642
            <value>The title.</value>
1643
        </member>
1644
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
1645
            <summary>
1646
            Gets or sets the description.
1647
            </summary>
1648
            <value>The description.</value>
1649
        </member>
1650
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
1651
            <summary>
1652
            Gets the collection's items converter.
1653
            </summary>
1654
            <value>The collection's items converter.</value>
1655
        </member>
1656
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters">
1657
            <summary>
1658
            The parameter list to use when constructing the JsonConverter described by ItemConverterType.
1659
            If null, the default constructor is used.
1660
            When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
1661
            order, and type of these parameters.
1662
            </summary>
1663
            <example>
1664
            [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
1665
            </example>
1666
        </member>
1667
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
1668
            <summary>
1669
            Gets or sets a value that indicates whether to preserve object references.
1670
            </summary>
1671
            <value>
1672
            	<c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
1673
            </value>
1674
        </member>
1675
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
1676
            <summary>
1677
            Gets or sets a value that indicates whether to preserve collection's items references.
1678
            </summary>
1679
            <value>
1680
            	<c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
1681
            </value>
1682
        </member>
1683
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
1684
            <summary>
1685
            Gets or sets the reference loop handling used when serializing the collection's items.
1686
            </summary>
1687
            <value>The reference loop handling.</value>
1688
        </member>
1689
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
1690
            <summary>
1691
            Gets or sets the type name handling used when serializing the collection's items.
1692
            </summary>
1693
            <value>The type name handling.</value>
1694
        </member>
1695
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
1696
            <summary>
1697
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
1698
            </summary>
1699
        </member>
1700
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
1701
            <summary>
1702
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
1703
            </summary>
1704
            <param name="id">The container Id.</param>
1705
        </member>
1706
        <member name="T:Newtonsoft.Json.JsonException">
1707
            <summary>
1708
            The exception thrown when an error occurs during Json serialization or deserialization.
1709
            </summary>
1710
        </member>
1711
        <member name="M:Newtonsoft.Json.JsonException.#ctor">
1712
            <summary>
1713
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1714
            </summary>
1715
        </member>
1716
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
1717
            <summary>
1718
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1719
            with a specified error message.
1720
            </summary>
1721
            <param name="message">The error message that explains the reason for the exception.</param>
1722
        </member>
1723
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
1724
            <summary>
1725
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1726
            with a specified error message and a reference to the inner exception that is the cause of this exception.
1727
            </summary>
1728
            <param name="message">The error message that explains the reason for the exception.</param>
1729
            <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>
1730
        </member>
1731
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1732
            <summary>
1733
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1734
            </summary>
1735
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
1736
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
1737
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
1738
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
1739
        </member>
1740
        <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
1741
            <summary>
1742
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection
1743
            and write values during serialization.
1744
            </summary>
1745
        </member>
1746
        <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
1747
            <summary>
1748
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.
1749
            </summary>
1750
        </member>
1751
        <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
1752
            <summary>
1753
            Gets or sets a value that indicates whether to write extension data when serializing the object.
1754
            </summary>
1755
            <value>
1756
            	<c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1757
            </value>
1758
        </member>
1759
        <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
1760
            <summary>
1761
            Gets or sets a value that indicates whether to read extension data when deserializing the object.
1762
            </summary>
1763
            <value>
1764
            	<c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1765
            </value>
1766
        </member>
1767
        <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
1768
            <summary>
1769
            Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
1770
            </summary>
1771
        </member>
1772
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">
1773
            <summary>
1774
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
1775
            </summary>
1776
            <param name="name">The name.</param>
1777
        </member>
1778
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
1779
            <summary>
1780
            When overridden in a derived class, returns whether resetting an object changes its value.
1781
            </summary>
1782
            <returns>
1783
            true if resetting the component changes its value; otherwise, false.
1784
            </returns>
1785
            <param name="component">The component to test for reset capability. 
1786
                            </param>
1787
        </member>
1788
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
1789
            <summary>
1790
            When overridden in a derived class, gets the current value of the property on a component.
1791
            </summary>
1792
            <returns>
1793
            The value of a property for a given component.
1794
            </returns>
1795
            <param name="component">The component with the property for which to retrieve the value. 
1796
                            </param>
1797
        </member>
1798
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
1799
            <summary>
1800
            When overridden in a derived class, resets the value for this property of the component to the default value.
1801
            </summary>
1802
            <param name="component">The component with the property value that is to be reset to the default value. 
1803
                            </param>
1804
        </member>
1805
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
1806
            <summary>
1807
            When overridden in a derived class, sets the value of the component to a different value.
1808
            </summary>
1809
            <param name="component">The component with the property value that is to be set. 
1810
                            </param><param name="value">The new value. 
1811
                            </param>
1812
        </member>
1813
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
1814
            <summary>
1815
            When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
1816
            </summary>
1817
            <returns>
1818
            true if the property should be persisted; otherwise, false.
1819
            </returns>
1820
            <param name="component">The component with the property to be examined for persistence. 
1821
                            </param>
1822
        </member>
1823
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
1824
            <summary>
1825
            When overridden in a derived class, gets the type of the component this property is bound to.
1826
            </summary>
1827
            <returns>
1828
            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.
1829
            </returns>
1830
        </member>
1831
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
1832
            <summary>
1833
            When overridden in a derived class, gets a value indicating whether this property is read-only.
1834
            </summary>
1835
            <returns>
1836
            true if the property is read-only; otherwise, false.
1837
            </returns>
1838
        </member>
1839
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
1840
            <summary>
1841
            When overridden in a derived class, gets the type of the property.
1842
            </summary>
1843
            <returns>
1844
            A <see cref="T:System.Type"/> that represents the type of the property.
1845
            </returns>
1846
        </member>
1847
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
1848
            <summary>
1849
            Gets the hash code for the name of the member.
1850
            </summary>
1851
            <value></value>
1852
            <returns>
1853
            The hash code for the name of the member.
1854
            </returns>
1855
        </member>
1856
        <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">
1857
            <summary>
1858
            Specifies the settings used when merging JSON.
1859
            </summary>
1860
        </member>
1861
        <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">
1862
            <summary>
1863
            Gets or sets the method used when merging JSON arrays.
1864
            </summary>
1865
            <value>The method used when merging JSON arrays.</value>
1866
        </member>
1867
        <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
1868
            <summary>
1869
            Specifies how JSON arrays are merged together.
1870
            </summary>
1871
        </member>
1872
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">
1873
            <summary>Concatenate arrays.</summary>
1874
        </member>
1875
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">
1876
            <summary>Union arrays, skipping items that already exist.</summary>
1877
        </member>
1878
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">
1879
            <summary>Replace all array items.</summary>
1880
        </member>
1881
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">
1882
            <summary>Merge array items together, matched by index.</summary>
1883
        </member>
1884
        <member name="T:Newtonsoft.Json.MetadataPropertyHandling">
1885
            <summary>
1886
            Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1887
            </summary>
1888
        </member>
1889
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">
1890
            <summary>
1891
            Read metadata properties located at the start of a JSON object.
1892
            </summary>
1893
        </member>
1894
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">
1895
            <summary>
1896
            Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
1897
            </summary>
1898
        </member>
1899
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">
1900
            <summary>
1901
            Do not try to read metadata properties.
1902
            </summary>
1903
        </member>
1904
        <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">
1905
            <summary>
1906
            Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.
1907
            </summary>
1908
        </member>
1909
        <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
1910
            <summary>
1911
            Represents a trace writer.
1912
            </summary>
1913
        </member>
1914
        <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1915
            <summary>
1916
            Writes the specified trace level, message and optional exception.
1917
            </summary>
1918
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1919
            <param name="message">The trace message.</param>
1920
            <param name="ex">The trace exception. This parameter is optional.</param>
1921
        </member>
1922
        <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
1923
            <summary>
1924
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1925
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1926
            <code>Warning</code> and <code>Error</code> messages.
1927
            </summary>
1928
            <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>
1929
        </member>
1930
        <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1931
            <summary>
1932
            Writes the specified trace level, message and optional exception.
1933
            </summary>
1934
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1935
            <param name="message">The trace message.</param>
1936
            <param name="ex">The trace exception. This parameter is optional.</param>
1937
        </member>
1938
        <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">
1939
            <summary>
1940
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1941
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1942
            <code>Warning</code> and <code>Error</code> messages.
1943
            </summary>
1944
            <value>
1945
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1946
            </value>
1947
        </member>
1948
        <member name="T:Newtonsoft.Json.Serialization.IAttributeProvider">
1949
            <summary>
1950
            Provides methods to get attributes.
1951
            </summary>
1952
        </member>
1953
        <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Boolean)">
1954
            <summary>
1955
            Returns a collection of all of the attributes, or an empty collection if there are no attributes.
1956
            </summary>
1957
            <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
1958
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
1959
        </member>
1960
        <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Type,System.Boolean)">
1961
            <summary>
1962
            Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
1963
            </summary>
1964
            <param name="attributeType">The type of the attributes.</param>
1965
            <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
1966
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
1967
        </member>
1968
        <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
1969
            <summary>
1970
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1971
            </summary>
1972
        </member>
1973
        <member name="T:Newtonsoft.Json.Serialization.JsonContract">
1974
            <summary>
1975
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1976
            </summary>
1977
        </member>
1978
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
1979
            <summary>
1980
            Gets the underlying type for the contract.
1981
            </summary>
1982
            <value>The underlying type for the contract.</value>
1983
        </member>
1984
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
1985
            <summary>
1986
            Gets or sets the type created during deserialization.
1987
            </summary>
1988
            <value>The type created during deserialization.</value>
1989
        </member>
1990
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
1991
            <summary>
1992
            Gets or sets whether this type contract is serialized as a reference.
1993
            </summary>
1994
            <value>Whether this type contract is serialized as a reference.</value>
1995
        </member>
1996
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
1997
            <summary>
1998
            Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for this contract.
1999
            </summary>
2000
            <value>The converter.</value>
2001
        </member>
2002
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">
2003
            <summary>
2004
            Gets or sets all methods called immediately after deserialization of the object.
2005
            </summary>
2006
            <value>The methods called immediately after deserialization of the object.</value>
2007
        </member>
2008
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">
2009
            <summary>
2010
            Gets or sets all methods called during deserialization of the object.
2011
            </summary>
2012
            <value>The methods called during deserialization of the object.</value>
2013
        </member>
2014
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">
2015
            <summary>
2016
            Gets or sets all methods called after serialization of the object graph.
2017
            </summary>
2018
            <value>The methods called after serialization of the object graph.</value>
2019
        </member>
2020
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">
2021
            <summary>
2022
            Gets or sets all methods called before serialization of the object.
2023
            </summary>
2024
            <value>The methods called before serialization of the object.</value>
2025
        </member>
2026
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">
2027
            <summary>
2028
            Gets or sets all method called when an error is thrown during the serialization of the object.
2029
            </summary>
2030
            <value>The methods called when an error is thrown during the serialization of the object.</value>
2031
        </member>
2032
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized">
2033
            <summary>
2034
            Gets or sets the method called immediately after deserialization of the object.
2035
            </summary>
2036
            <value>The method called immediately after deserialization of the object.</value>
2037
        </member>
2038
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing">
2039
            <summary>
2040
            Gets or sets the method called during deserialization of the object.
2041
            </summary>
2042
            <value>The method called during deserialization of the object.</value>
2043
        </member>
2044
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized">
2045
            <summary>
2046
            Gets or sets the method called after serialization of the object graph.
2047
            </summary>
2048
            <value>The method called after serialization of the object graph.</value>
2049
        </member>
2050
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing">
2051
            <summary>
2052
            Gets or sets the method called before serialization of the object.
2053
            </summary>
2054
            <value>The method called before serialization of the object.</value>
2055
        </member>
2056
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError">
2057
            <summary>
2058
            Gets or sets the method called when an error is thrown during the serialization of the object.
2059
            </summary>
2060
            <value>The method called when an error is thrown during the serialization of the object.</value>
2061
        </member>
2062
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
2063
            <summary>
2064
            Gets or sets the default creator method used to create the object.
2065
            </summary>
2066
            <value>The default creator method used to create the object.</value>
2067
        </member>
2068
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
2069
            <summary>
2070
            Gets or sets a value indicating whether the default creator is non public.
2071
            </summary>
2072
            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
2073
        </member>
2074
        <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
2075
            <summary>
2076
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
2077
            </summary>
2078
            <param name="underlyingType">The underlying type for the contract.</param>
2079
        </member>
2080
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
2081
            <summary>
2082
            Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2083
            </summary>
2084
            <value>The converter.</value>
2085
        </member>
2086
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
2087
            <summary>
2088
            Gets or sets a value indicating whether the collection items preserve object references.
2089
            </summary>
2090
            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
2091
        </member>
2092
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
2093
            <summary>
2094
            Gets or sets the collection item reference loop handling.
2095
            </summary>
2096
            <value>The reference loop handling.</value>
2097
        </member>
2098
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
2099
            <summary>
2100
            Gets or sets the collection item type name handling.
2101
            </summary>
2102
            <value>The type name handling.</value>
2103
        </member>
2104
        <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
2105
            <summary>
2106
            Represents a trace writer that writes to memory. When the trace message limit is
2107
            reached then old trace messages will be removed as new messages are added.
2108
            </summary>
2109
        </member>
2110
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
2111
            <summary>
2112
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.
2113
            </summary>
2114
        </member>
2115
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
2116
            <summary>
2117
            Writes the specified trace level, message and optional exception.
2118
            </summary>
2119
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
2120
            <param name="message">The trace message.</param>
2121
            <param name="ex">The trace exception. This parameter is optional.</param>
2122
        </member>
2123
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
2124
            <summary>
2125
            Returns an enumeration of the most recent trace messages.
2126
            </summary>
2127
            <returns>An enumeration of the most recent trace messages.</returns>
2128
        </member>
2129
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
2130
            <summary>
2131
            Returns a <see cref="T:System.String"/> of the most recent trace messages.
2132
            </summary>
2133
            <returns>
2134
            A <see cref="T:System.String"/> of the most recent trace messages.
2135
            </returns>
2136
        </member>
2137
        <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
2138
            <summary>
2139
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
2140
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
2141
            <code>Warning</code> and <code>Error</code> messages.
2142
            </summary>
2143
            <value>
2144
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
2145
            </value>
2146
        </member>
2147
        <member name="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider">
2148
            <summary>
2149
            Provides methods to get attributes from a <see cref="T:System.Type"/>, <see cref="T:System.Reflection.MemberInfo"/>, <see cref="T:System.Reflection.ParameterInfo"/> or <see cref="T:System.Reflection.Assembly"/>.
2150
            </summary>
2151
        </member>
2152
        <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.#ctor(System.Object)">
2153
            <summary>
2154
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider"/> class.
2155
            </summary>
2156
        </member>
2157
        <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Boolean)">
2158
            <summary>
2159
            Returns a collection of all of the attributes, or an empty collection if there are no attributes.
2160
            </summary>
2161
            <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
2162
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
2163
        </member>
2164
        <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Type,System.Boolean)">
2165
            <summary>
2166
            Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
2167
            </summary>
2168
            <param name="attributeType">The type of the attributes.</param>
2169
            <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
2170
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
2171
        </member>
2172
        <member name="T:Newtonsoft.Json.IJsonLineInfo">
2173
            <summary>
2174
            Provides an interface to enable a class to return line and position information.
2175
            </summary>
2176
        </member>
2177
        <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
2178
            <summary>
2179
            Gets a value indicating whether the class can return line information.
2180
            </summary>
2181
            <returns>
2182
            	<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
2183
            </returns>
2184
        </member>
2185
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
2186
            <summary>
2187
            Gets the current line number.
2188
            </summary>
2189
            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>
2190
        </member>
2191
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
2192
            <summary>
2193
            Gets the current line position.
2194
            </summary>
2195
            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>
2196
        </member>
2197
        <member name="T:Newtonsoft.Json.StringEscapeHandling">
2198
            <summary>
2199
            Specifies how strings are escaped when writing JSON text.
2200
            </summary>
2201
        </member>
2202
        <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
2203
            <summary>
2204
            Only control characters (e.g. newline) are escaped.
2205
            </summary>
2206
        </member>
2207
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
2208
            <summary>
2209
            All non-ASCII and control characters (e.g. newline) are escaped.
2210
            </summary>
2211
        </member>
2212
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
2213
            <summary>
2214
            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.
2215
            </summary>
2216
        </member>
2217
        <member name="T:Newtonsoft.Json.Linq.JRaw">
2218
            <summary>
2219
            Represents a raw JSON string.
2220
            </summary>
2221
        </member>
2222
        <member name="T:Newtonsoft.Json.Linq.JValue">
2223
            <summary>
2224
            Represents a value in JSON (string, integer, date, etc).
2225
            </summary>
2226
        </member>
2227
        <member name="T:Newtonsoft.Json.Linq.JToken">
2228
            <summary>
2229
            Represents an abstract JSON token.
2230
            </summary>
2231
        </member>
2232
        <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
2233
            <summary>
2234
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
2235
            </summary>
2236
            <typeparam name="T">The type of token</typeparam>
2237
        </member>
2238
        <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
2239
            <summary>
2240
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
2241
            </summary>
2242
            <value></value>
2243
        </member>
2244
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
2245
            <summary>
2246
            Compares the values of two tokens, including the values of all descendant tokens.
2247
            </summary>
2248
            <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2249
            <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2250
            <returns>true if the tokens are equal; otherwise false.</returns>
2251
        </member>
2252
        <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
2253
            <summary>
2254
            Adds the specified content immediately after this token.
2255
            </summary>
2256
            <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
2257
        </member>
2258
        <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
2259
            <summary>
2260
            Adds the specified content immediately before this token.
2261
            </summary>
2262
            <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
2263
        </member>
2264
        <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
2265
            <summary>
2266
            Returns a collection of the ancestor tokens of this token.
2267
            </summary>
2268
            <returns>A collection of the ancestor tokens of this token.</returns>
2269
        </member>
2270
        <member name="M:Newtonsoft.Json.Linq.JToken.AncestorsAndSelf">
2271
            <summary>
2272
            Returns a collection of tokens that contain this token, and the ancestors of this token.
2273
            </summary>
2274
            <returns>A collection of tokens that contain this token, and the ancestors of this token.</returns>
2275
        </member>
2276
        <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
2277
            <summary>
2278
            Returns a collection of the sibling tokens after this token, in document order.
2279
            </summary>
2280
            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
2281
        </member>
2282
        <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
2283
            <summary>
2284
            Returns a collection of the sibling tokens before this token, in document order.
2285
            </summary>
2286
            <returns>A collection of the sibling tokens before this token, in document order.</returns>
2287
        </member>
2288
        <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
2289
            <summary>
2290
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
2291
            </summary>
2292
            <typeparam name="T">The type to convert the token to.</typeparam>
2293
            <param name="key">The token key.</param>
2294
            <returns>The converted token value.</returns>
2295
        </member>
2296
        <member name="M:Newtonsoft.Json.Linq.JToken.Children">
2297
            <summary>
2298
            Returns a collection of the child tokens of this token, in document order.
2299
            </summary>
2300
            <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>
2301
        </member>
2302
        <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
2303
            <summary>
2304
            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
2305
            </summary>
2306
            <typeparam name="T">The type to filter the child tokens on.</typeparam>
2307
            <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>
2308
        </member>
2309
        <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
2310
            <summary>
2311
            Returns a collection of the child values of this token, in document order.
2312
            </summary>
2313
            <typeparam name="T">The type to convert the values to.</typeparam>
2314
            <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>
2315
        </member>
2316
        <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
2317
            <summary>
2318
            Removes this token from its parent.
2319
            </summary>
2320
        </member>
2321
        <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
2322
            <summary>
2323
            Replaces this token with the specified token.
2324
            </summary>
2325
            <param name="value">The value.</param>
2326
        </member>
2327
        <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
2328
            <summary>
2329
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2330
            </summary>
2331
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
2332
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2333
        </member>
2334
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
2335
            <summary>
2336
            Returns the indented JSON for this token.
2337
            </summary>
2338
            <returns>
2339
            The indented JSON for this token.
2340
            </returns>
2341
        </member>
2342
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
2343
            <summary>
2344
            Returns the JSON for this token using the given formatting and converters.
2345
            </summary>
2346
            <param name="formatting">Indicates how the output is formatted.</param>
2347
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2348
            <returns>The JSON for this token using the given formatting and converters.</returns>
2349
        </member>
2350
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
2351
            <summary>
2352
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
2353
            </summary>
2354
            <param name="value">The value.</param>
2355
            <returns>The result of the conversion.</returns>
2356
        </member>
2357
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
2358
            <summary>
2359
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>.
2360
            </summary>
2361
            <param name="value">The value.</param>
2362
            <returns>The result of the conversion.</returns>
2363
        </member>
2364
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
2365
            <summary>
2366
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2367
            </summary>
2368
            <param name="value">The value.</param>
2369
            <returns>The result of the conversion.</returns>
2370
        </member>
2371
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
2372
            <summary>
2373
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>.
2374
            </summary>
2375
            <param name="value">The value.</param>
2376
            <returns>The result of the conversion.</returns>
2377
        </member>
2378
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
2379
            <summary>
2380
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2381
            </summary>
2382
            <param name="value">The value.</param>
2383
            <returns>The result of the conversion.</returns>
2384
        </member>
2385
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">
2386
            <summary>
2387
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2388
            </summary>
2389
            <param name="value">The value.</param>
2390
            <returns>The result of the conversion.</returns>
2391
        </member>
2392
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
2393
            <summary>
2394
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2395
            </summary>
2396
            <param name="value">The value.</param>
2397
            <returns>The result of the conversion.</returns>
2398
        </member>
2399
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
2400
            <summary>
2401
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2402
            </summary>
2403
            <param name="value">The value.</param>
2404
            <returns>The result of the conversion.</returns>
2405
        </member>
2406
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
2407
            <summary>
2408
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2409
            </summary>
2410
            <param name="value">The value.</param>
2411
            <returns>The result of the conversion.</returns>
2412
        </member>
2413
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
2414
            <summary>
2415
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
2416
            </summary>
2417
            <param name="value">The value.</param>
2418
            <returns>The result of the conversion.</returns>
2419
        </member>
2420
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
2421
            <summary>
2422
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
2423
            </summary>
2424
            <param name="value">The value.</param>
2425
            <returns>The result of the conversion.</returns>
2426
        </member>
2427
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
2428
            <summary>
2429
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
2430
            </summary>
2431
            <param name="value">The value.</param>
2432
            <returns>The result of the conversion.</returns>
2433
        </member>
2434
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
2435
            <summary>
2436
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.
2437
            </summary>
2438
            <param name="value">The value.</param>
2439
            <returns>The result of the conversion.</returns>
2440
        </member>
2441
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
2442
            <summary>
2443
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.
2444
            </summary>
2445
            <param name="value">The value.</param>
2446
            <returns>The result of the conversion.</returns>
2447
        </member>
2448
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">
2449
            <summary>
2450
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.
2451
            </summary>
2452
            <param name="value">The value.</param>
2453
            <returns>The result of the conversion.</returns>
2454
        </member>
2455
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
2456
            <summary>
2457
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2458
            </summary>
2459
            <param name="value">The value.</param>
2460
            <returns>The result of the conversion.</returns>
2461
        </member>
2462
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
2463
            <summary>
2464
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2465
            </summary>
2466
            <param name="value">The value.</param>
2467
            <returns>The result of the conversion.</returns>
2468
        </member>
2469
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
2470
            <summary>
2471
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2472
            </summary>
2473
            <param name="value">The value.</param>
2474
            <returns>The result of the conversion.</returns>
2475
        </member>
2476
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
2477
            <summary>
2478
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2479
            </summary>
2480
            <param name="value">The value.</param>
2481
            <returns>The result of the conversion.</returns>
2482
        </member>
2483
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">
2484
            <summary>
2485
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2486
            </summary>
2487
            <param name="value">The value.</param>
2488
            <returns>The result of the conversion.</returns>
2489
        </member>
2490
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
2491
            <summary>
2492
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>.
2493
            </summary>
2494
            <param name="value">The value.</param>
2495
            <returns>The result of the conversion.</returns>
2496
        </member>
2497
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
2498
            <summary>
2499
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2500
            </summary>
2501
            <param name="value">The value.</param>
2502
            <returns>The result of the conversion.</returns>
2503
        </member>
2504
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
2505
            <summary>
2506
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2507
            </summary>
2508
            <param name="value">The value.</param>
2509
            <returns>The result of the conversion.</returns>
2510
        </member>
2511
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
2512
            <summary>
2513
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
2514
            </summary>
2515
            <param name="value">The value.</param>
2516
            <returns>The result of the conversion.</returns>
2517
        </member>
2518
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
2519
            <summary>
2520
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2521
            </summary>
2522
            <param name="value">The value.</param>
2523
            <returns>The result of the conversion.</returns>
2524
        </member>
2525
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
2526
            <summary>
2527
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2528
            </summary>
2529
            <param name="value">The value.</param>
2530
            <returns>The result of the conversion.</returns>
2531
        </member>
2532
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
2533
            <summary>
2534
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
2535
            </summary>
2536
            <param name="value">The value.</param>
2537
            <returns>The result of the conversion.</returns>
2538
        </member>
2539
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
2540
            <summary>
2541
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
2542
            </summary>
2543
            <param name="value">The value.</param>
2544
            <returns>The result of the conversion.</returns>
2545
        </member>
2546
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
2547
            <summary>
2548
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
2549
            </summary>
2550
            <param name="value">The value.</param>
2551
            <returns>The result of the conversion.</returns>
2552
        </member>
2553
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
2554
            <summary>
2555
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
2556
            </summary>
2557
            <param name="value">The value.</param>
2558
            <returns>The result of the conversion.</returns>
2559
        </member>
2560
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
2561
            <summary>
2562
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
2563
            </summary>
2564
            <param name="value">The value.</param>
2565
            <returns>The result of the conversion.</returns>
2566
        </member>
2567
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
2568
            <summary>
2569
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>[].
2570
            </summary>
2571
            <param name="value">The value.</param>
2572
            <returns>The result of the conversion.</returns>
2573
        </member>
2574
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
2575
            <summary>
2576
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2577
            </summary>
2578
            <param name="value">The value.</param>
2579
            <returns>The result of the conversion.</returns>
2580
        </member>
2581
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
2582
            <summary>
2583
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2584
            </summary>
2585
            <param name="value">The value.</param>
2586
            <returns>The result of the conversion.</returns>
2587
        </member>
2588
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
2589
            <summary>
2590
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2591
            </summary>
2592
            <param name="value">The value.</param>
2593
            <returns>The result of the conversion.</returns>
2594
        </member>
2595
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
2596
            <summary>
2597
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2598
            </summary>
2599
            <param name="value">The value.</param>
2600
            <returns>The result of the conversion.</returns>
2601
        </member>
2602
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
2603
            <summary>
2604
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.
2605
            </summary>
2606
            <param name="value">The value.</param>
2607
            <returns>The result of the conversion.</returns>
2608
        </member>
2609
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
2610
            <summary>
2611
            Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2612
            </summary>
2613
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2614
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2615
        </member>
2616
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">
2617
            <summary>
2618
            Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2619
            </summary>
2620
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2621
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2622
        </member>
2623
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">
2624
            <summary>
2625
            Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2626
            </summary>
2627
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2628
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2629
        </member>
2630
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">
2631
            <summary>
2632
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2633
            </summary>
2634
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2635
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2636
        </member>
2637
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">
2638
            <summary>
2639
            Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2640
            </summary>
2641
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2642
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2643
        </member>
2644
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">
2645
            <summary>
2646
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2647
            </summary>
2648
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2649
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2650
        </member>
2651
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
2652
            <summary>
2653
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2654
            </summary>
2655
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2656
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2657
        </member>
2658
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
2659
            <summary>
2660
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2661
            </summary>
2662
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2663
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2664
        </member>
2665
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
2666
            <summary>
2667
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2668
            </summary>
2669
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2670
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2671
        </member>
2672
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">
2673
            <summary>
2674
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2675
            </summary>
2676
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2677
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2678
        </member>
2679
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
2680
            <summary>
2681
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2682
            </summary>
2683
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2684
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2685
        </member>
2686
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
2687
            <summary>
2688
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2689
            </summary>
2690
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2691
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2692
        </member>
2693
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
2694
            <summary>
2695
            Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2696
            </summary>
2697
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2698
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2699
        </member>
2700
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
2701
            <summary>
2702
            Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2703
            </summary>
2704
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2705
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2706
        </member>
2707
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
2708
            <summary>
2709
            Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2710
            </summary>
2711
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2712
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2713
        </member>
2714
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
2715
            <summary>
2716
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2717
            </summary>
2718
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2719
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2720
        </member>
2721
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
2722
            <summary>
2723
            Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2724
            </summary>
2725
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2726
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2727
        </member>
2728
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
2729
            <summary>
2730
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2731
            </summary>
2732
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2733
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2734
        </member>
2735
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
2736
            <summary>
2737
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2738
            </summary>
2739
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2740
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2741
        </member>
2742
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
2743
            <summary>
2744
            Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2745
            </summary>
2746
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2747
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2748
        </member>
2749
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
2750
            <summary>
2751
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2752
            </summary>
2753
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2754
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2755
        </member>
2756
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
2757
            <summary>
2758
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2759
            </summary>
2760
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2761
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2762
        </member>
2763
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
2764
            <summary>
2765
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2766
            </summary>
2767
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2768
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2769
        </member>
2770
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
2771
            <summary>
2772
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2773
            </summary>
2774
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2775
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2776
        </member>
2777
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
2778
            <summary>
2779
            Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2780
            </summary>
2781
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2782
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2783
        </member>
2784
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
2785
            <summary>
2786
            Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2787
            </summary>
2788
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2789
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2790
        </member>
2791
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
2792
            <summary>
2793
            Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2794
            </summary>
2795
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2796
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2797
        </member>
2798
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
2799
            <summary>
2800
            Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2801
            </summary>
2802
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2803
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2804
        </member>
2805
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
2806
            <summary>
2807
            Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2808
            </summary>
2809
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2810
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2811
        </member>
2812
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
2813
            <summary>
2814
            Performs an implicit conversion from <see cref="T:System.Byte"/>[] to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2815
            </summary>
2816
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2817
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2818
        </member>
2819
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
2820
            <summary>
2821
            Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2822
            </summary>
2823
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2824
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2825
        </member>
2826
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
2827
            <summary>
2828
            Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2829
            </summary>
2830
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2831
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2832
        </member>
2833
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
2834
            <summary>
2835
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2836
            </summary>
2837
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2838
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2839
        </member>
2840
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
2841
            <summary>
2842
            Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2843
            </summary>
2844
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2845
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2846
        </member>
2847
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
2848
            <summary>
2849
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2850
            </summary>
2851
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2852
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2853
        </member>
2854
        <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
2855
            <summary>
2856
            Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
2857
            </summary>
2858
            <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
2859
        </member>
2860
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
2861
            <summary>
2862
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
2863
            </summary>
2864
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
2865
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
2866
        </member>
2867
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
2868
            <summary>
2869
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2870
            </summary>
2871
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
2872
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
2873
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
2874
        </member>
2875
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
2876
            <summary>
2877
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2878
            </summary>
2879
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
2880
            <returns>The new object created from the JSON value.</returns>
2881
        </member>
2882
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
2883
            <summary>
2884
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2885
            </summary>
2886
            <param name="objectType">The object type that the token will be deserialized to.</param>
2887
            <returns>The new object created from the JSON value.</returns>
2888
        </member>
2889
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
2890
            <summary>
2891
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2892
            </summary>
2893
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
2894
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
2895
            <returns>The new object created from the JSON value.</returns>
2896
        </member>
2897
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
2898
            <summary>
2899
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2900
            </summary>
2901
            <param name="objectType">The object type that the token will be deserialized to.</param>
2902
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
2903
            <returns>The new object created from the JSON value.</returns>
2904
        </member>
2905
        <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
2906
            <summary>
2907
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
2908
            </summary>
2909
            <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>
2910
            <returns>
2911
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
2912
            that were read from the reader. The runtime type of the token is determined
2913
            by the token type of the first token encountered in the reader.
2914
            </returns>
2915
        </member>
2916
        <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
2917
            <summary>
2918
            Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
2919
            </summary>
2920
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
2921
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
2922
        </member>
2923
        <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
2924
            <summary>
2925
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
2926
            </summary>
2927
            <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>
2928
            <returns>
2929
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
2930
            that were read from the reader. The runtime type of the token is determined
2931
            by the token type of the first token encountered in the reader.
2932
            </returns>
2933
        </member>
2934
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
2935
            <summary>
2936
            Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
2937
            </summary>
2938
            <param name="path">
2939
            A <see cref="T:System.String"/> that contains a JPath expression.
2940
            </param>
2941
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or null.</returns>
2942
        </member>
2943
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
2944
            <summary>
2945
            Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
2946
            </summary>
2947
            <param name="path">
2948
            A <see cref="T:System.String"/> that contains a JPath expression.
2949
            </param>
2950
            <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>
2951
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
2952
        </member>
2953
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
2954
            <summary>
2955
            Selects a collection of elements using a JPath expression.
2956
            </summary>
2957
            <param name="path">
2958
            A <see cref="T:System.String"/> that contains a JPath expression.
2959
            </param>
2960
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
2961
        </member>
2962
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">
2963
            <summary>
2964
            Selects a collection of elements using a JPath expression.
2965
            </summary>
2966
            <param name="path">
2967
            A <see cref="T:System.String"/> that contains a JPath expression.
2968
            </param>
2969
            <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>
2970
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
2971
        </member>
2972
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
2973
            <summary>
2974
            Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
2975
            </summary>
2976
            <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
2977
        </member>
2978
        <member name="M:Newtonsoft.Json.Linq.JToken.AddAnnotation(System.Object)">
2979
            <summary>
2980
            Adds an object to the annotation list of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2981
            </summary>
2982
            <param name="annotation">The annotation to add.</param>
2983
        </member>
2984
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotation``1">
2985
            <summary>
2986
            Get the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2987
            </summary>
2988
            <typeparam name="T">The type of the annotation to retrieve.</typeparam>
2989
            <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
2990
        </member>
2991
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotation(System.Type)">
2992
            <summary>
2993
            Gets the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2994
            </summary>
2995
            <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotation to retrieve.</param>
2996
            <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
2997
        </member>
2998
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotations``1">
2999
            <summary>
3000
            Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3001
            </summary>
3002
            <typeparam name="T">The type of the annotations to retrieve.</typeparam>
3003
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/>  that contains the annotations for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3004
        </member>
3005
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotations(System.Type)">
3006
            <summary>
3007
            Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3008
            </summary>
3009
            <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotations to retrieve.</param>
3010
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:System.Object"/> that contains the annotations that match the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3011
        </member>
3012
        <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations``1">
3013
            <summary>
3014
            Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3015
            </summary>
3016
            <typeparam name="T">The type of annotations to remove.</typeparam>
3017
        </member>
3018
        <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations(System.Type)">
3019
            <summary>
3020
            Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3021
            </summary>
3022
            <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of annotations to remove.</param>
3023
        </member>
3024
        <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
3025
            <summary>
3026
            Gets a comparer that can compare two tokens for value equality.
3027
            </summary>
3028
            <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
3029
        </member>
3030
        <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
3031
            <summary>
3032
            Gets or sets the parent.
3033
            </summary>
3034
            <value>The parent.</value>
3035
        </member>
3036
        <member name="P:Newtonsoft.Json.Linq.JToken.Root">
3037
            <summary>
3038
            Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3039
            </summary>
3040
            <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
3041
        </member>
3042
        <member name="P:Newtonsoft.Json.Linq.JToken.Type">
3043
            <summary>
3044
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3045
            </summary>
3046
            <value>The type.</value>
3047
        </member>
3048
        <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
3049
            <summary>
3050
            Gets a value indicating whether this token has child tokens.
3051
            </summary>
3052
            <value>
3053
            	<c>true</c> if this token has child values; otherwise, <c>false</c>.
3054
            </value>
3055
        </member>
3056
        <member name="P:Newtonsoft.Json.Linq.JToken.Next">
3057
            <summary>
3058
            Gets the next sibling token of this node.
3059
            </summary>
3060
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
3061
        </member>
3062
        <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
3063
            <summary>
3064
            Gets the previous sibling token of this node.
3065
            </summary>
3066
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
3067
        </member>
3068
        <member name="P:Newtonsoft.Json.Linq.JToken.Path">
3069
            <summary>
3070
            Gets the path of the JSON token. 
3071
            </summary>
3072
        </member>
3073
        <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
3074
            <summary>
3075
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
3076
            </summary>
3077
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
3078
        </member>
3079
        <member name="P:Newtonsoft.Json.Linq.JToken.First">
3080
            <summary>
3081
            Get the first child token of this token.
3082
            </summary>
3083
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
3084
        </member>
3085
        <member name="P:Newtonsoft.Json.Linq.JToken.Last">
3086
            <summary>
3087
            Get the last child token of this token.
3088
            </summary>
3089
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
3090
        </member>
3091
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
3092
            <summary>
3093
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
3094
            </summary>
3095
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
3096
        </member>
3097
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
3098
            <summary>
3099
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3100
            </summary>
3101
            <param name="value">The value.</param>
3102
        </member>
3103
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
3104
            <summary>
3105
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3106
            </summary>
3107
            <param name="value">The value.</param>
3108
        </member>
3109
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
3110
            <summary>
3111
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3112
            </summary>
3113
            <param name="value">The value.</param>
3114
        </member>
3115
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
3116
            <summary>
3117
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3118
            </summary>
3119
            <param name="value">The value.</param>
3120
        </member>
3121
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
3122
            <summary>
3123
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3124
            </summary>
3125
            <param name="value">The value.</param>
3126
        </member>
3127
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
3128
            <summary>
3129
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3130
            </summary>
3131
            <param name="value">The value.</param>
3132
        </member>
3133
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
3134
            <summary>
3135
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3136
            </summary>
3137
            <param name="value">The value.</param>
3138
        </member>
3139
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTimeOffset)">
3140
            <summary>
3141
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3142
            </summary>
3143
            <param name="value">The value.</param>
3144
        </member>
3145
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
3146
            <summary>
3147
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3148
            </summary>
3149
            <param name="value">The value.</param>
3150
        </member>
3151
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
3152
            <summary>
3153
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3154
            </summary>
3155
            <param name="value">The value.</param>
3156
        </member>
3157
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
3158
            <summary>
3159
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3160
            </summary>
3161
            <param name="value">The value.</param>
3162
        </member>
3163
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
3164
            <summary>
3165
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3166
            </summary>
3167
            <param name="value">The value.</param>
3168
        </member>
3169
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
3170
            <summary>
3171
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3172
            </summary>
3173
            <param name="value">The value.</param>
3174
        </member>
3175
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
3176
            <summary>
3177
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3178
            </summary>
3179
            <param name="value">The value.</param>
3180
        </member>
3181
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
3182
            <summary>
3183
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
3184
            </summary>
3185
            <param name="value">The value.</param>
3186
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
3187
        </member>
3188
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
3189
            <summary>
3190
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
3191
            </summary>
3192
            <param name="value">The value.</param>
3193
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
3194
        </member>
3195
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">
3196
            <summary>
3197
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
3198
            </summary>
3199
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
3200
        </member>
3201
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">
3202
            <summary>
3203
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
3204
            </summary>
3205
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
3206
        </member>
3207
        <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
3208
            <summary>
3209
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3210
            </summary>
3211
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
3212
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
3213
        </member>
3214
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
3215
            <summary>
3216
            Indicates whether the current object is equal to another object of the same type.
3217
            </summary>
3218
            <returns>
3219
            true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.
3220
            </returns>
3221
            <param name="other">An object to compare with this object.</param>
3222
        </member>
3223
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
3224
            <summary>
3225
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
3226
            </summary>
3227
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
3228
            <returns>
3229
            true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
3230
            </returns>
3231
            <exception cref="T:System.NullReferenceException">
3232
            The <paramref name="obj"/> parameter is null.
3233
            </exception>
3234
        </member>
3235
        <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
3236
            <summary>
3237
            Serves as a hash function for a particular type.
3238
            </summary>
3239
            <returns>
3240
            A hash code for the current <see cref="T:System.Object"/>.
3241
            </returns>
3242
        </member>
3243
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
3244
            <summary>
3245
            Returns a <see cref="T:System.String"/> that represents this instance.
3246
            </summary>
3247
            <returns>
3248
            A <see cref="T:System.String"/> that represents this instance.
3249
            </returns>
3250
        </member>
3251
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
3252
            <summary>
3253
            Returns a <see cref="T:System.String"/> that represents this instance.
3254
            </summary>
3255
            <param name="format">The format.</param>
3256
            <returns>
3257
            A <see cref="T:System.String"/> that represents this instance.
3258
            </returns>
3259
        </member>
3260
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
3261
            <summary>
3262
            Returns a <see cref="T:System.String"/> that represents this instance.
3263
            </summary>
3264
            <param name="formatProvider">The format provider.</param>
3265
            <returns>
3266
            A <see cref="T:System.String"/> that represents this instance.
3267
            </returns>
3268
        </member>
3269
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
3270
            <summary>
3271
            Returns a <see cref="T:System.String"/> that represents this instance.
3272
            </summary>
3273
            <param name="format">The format.</param>
3274
            <param name="formatProvider">The format provider.</param>
3275
            <returns>
3276
            A <see cref="T:System.String"/> that represents this instance.
3277
            </returns>
3278
        </member>
3279
        <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
3280
            <summary>
3281
            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.
3282
            </summary>
3283
            <param name="obj">An object to compare with this instance.</param>
3284
            <returns>
3285
            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
3286
            Value
3287
            Meaning
3288
            Less than zero
3289
            This instance is less than <paramref name="obj"/>.
3290
            Zero
3291
            This instance is equal to <paramref name="obj"/>.
3292
            Greater than zero
3293
            This instance is greater than <paramref name="obj"/>.
3294
            </returns>
3295
            <exception cref="T:System.ArgumentException">
3296
            	<paramref name="obj"/> is not the same type as this instance.
3297
            </exception>
3298
        </member>
3299
        <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
3300
            <summary>
3301
            Gets a value indicating whether this token has child tokens.
3302
            </summary>
3303
            <value>
3304
            	<c>true</c> if this token has child values; otherwise, <c>false</c>.
3305
            </value>
3306
        </member>
3307
        <member name="P:Newtonsoft.Json.Linq.JValue.Type">
3308
            <summary>
3309
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3310
            </summary>
3311
            <value>The type.</value>
3312
        </member>
3313
        <member name="P:Newtonsoft.Json.Linq.JValue.Value">
3314
            <summary>
3315
            Gets or sets the underlying token value.
3316
            </summary>
3317
            <value>The underlying token value.</value>
3318
        </member>
3319
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
3320
            <summary>
3321
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
3322
            </summary>
3323
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
3324
        </member>
3325
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
3326
            <summary>
3327
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
3328
            </summary>
3329
            <param name="rawJson">The raw json.</param>
3330
        </member>
3331
        <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
3332
            <summary>
3333
            Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
3334
            </summary>
3335
            <param name="reader">The reader.</param>
3336
            <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
3337
        </member>
3338
        <member name="T:Newtonsoft.Json.Required">
3339
            <summary>
3340
            Indicating whether a property is required.
3341
            </summary>
3342
        </member>
3343
        <member name="F:Newtonsoft.Json.Required.Default">
3344
            <summary>
3345
            The property is not required. The default state.
3346
            </summary>
3347
        </member>
3348
        <member name="F:Newtonsoft.Json.Required.AllowNull">
3349
            <summary>
3350
            The property must be defined in JSON but can be a null value.
3351
            </summary>
3352
        </member>
3353
        <member name="F:Newtonsoft.Json.Required.Always">
3354
            <summary>
3355
            The property must be defined in JSON and cannot be a null value.
3356
            </summary>
3357
        </member>
3358
        <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
3359
            <summary>
3360
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3361
            </summary>
3362
        </member>
3363
        <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
3364
            <summary>
3365
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
3366
            </summary>
3367
            <param name="underlyingType">The underlying type for the contract.</param>
3368
        </member>
3369
        <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
3370
            <summary>
3371
            Gets or sets the ISerializable object constructor.
3372
            </summary>
3373
            <value>The ISerializable object constructor.</value>
3374
        </member>
3375
        <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
3376
            <summary>
3377
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3378
            </summary>
3379
        </member>
3380
        <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
3381
            <summary>
3382
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
3383
            </summary>
3384
            <param name="underlyingType">The underlying type for the contract.</param>
3385
        </member>
3386
        <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
3387
            <summary>
3388
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3389
            </summary>
3390
        </member>
3391
        <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
3392
            <summary>
3393
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
3394
            </summary>
3395
            <param name="underlyingType">The underlying type for the contract.</param>
3396
        </member>
3397
        <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
3398
            <summary>
3399
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
3400
            </summary>
3401
        </member>
3402
        <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
3403
            <summary>
3404
            Provides methods to get and set values.
3405
            </summary>
3406
        </member>
3407
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
3408
            <summary>
3409
            Sets the value.
3410
            </summary>
3411
            <param name="target">The target to set the value on.</param>
3412
            <param name="value">The value to set on the target.</param>
3413
        </member>
3414
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
3415
            <summary>
3416
            Gets the value.
3417
            </summary>
3418
            <param name="target">The target to get the value from.</param>
3419
            <returns>The value.</returns>
3420
        </member>
3421
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
3422
            <summary>
3423
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
3424
            </summary>
3425
            <param name="memberInfo">The member info.</param>
3426
        </member>
3427
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
3428
            <summary>
3429
            Sets the value.
3430
            </summary>
3431
            <param name="target">The target to set the value on.</param>
3432
            <param name="value">The value to set on the target.</param>
3433
        </member>
3434
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
3435
            <summary>
3436
            Gets the value.
3437
            </summary>
3438
            <param name="target">The target to get the value from.</param>
3439
            <returns>The value.</returns>
3440
        </member>
3441
        <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
3442
            <summary>
3443
            Provides data for the Error event.
3444
            </summary>
3445
        </member>
3446
        <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
3447
            <summary>
3448
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
3449
            </summary>
3450
            <param name="currentObject">The current object.</param>
3451
            <param name="errorContext">The error context.</param>
3452
        </member>
3453
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
3454
            <summary>
3455
            Gets the current object the error event is being raised against.
3456
            </summary>
3457
            <value>The current object the error event is being raised against.</value>
3458
        </member>
3459
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
3460
            <summary>
3461
            Gets the error context.
3462
            </summary>
3463
            <value>The error context.</value>
3464
        </member>
3465
        <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
3466
            <summary>
3467
            Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3468
            </summary>
3469
        </member>
3470
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
3471
            <summary>
3472
            Resolves a reference to its object.
3473
            </summary>
3474
            <param name="context">The serialization context.</param>
3475
            <param name="reference">The reference to resolve.</param>
3476
            <returns>The object that</returns>
3477
        </member>
3478
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
3479
            <summary>
3480
            Gets the reference for the sepecified object.
3481
            </summary>
3482
            <param name="context">The serialization context.</param>
3483
            <param name="value">The object to get a reference for.</param>
3484
            <returns>The reference to the object.</returns>
3485
        </member>
3486
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
3487
            <summary>
3488
            Determines whether the specified object is referenced.
3489
            </summary>
3490
            <param name="context">The serialization context.</param>
3491
            <param name="value">The object to test for a reference.</param>
3492
            <returns>
3493
            	<c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
3494
            </returns>
3495
        </member>
3496
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
3497
            <summary>
3498
            Adds a reference to the specified object.
3499
            </summary>
3500
            <param name="context">The serialization context.</param>
3501
            <param name="reference">The reference.</param>
3502
            <param name="value">The object to reference.</param>
3503
        </member>
3504
        <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
3505
            <summary>
3506
            Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3507
            Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable.
3508
            </summary>
3509
            <example>
3510
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References"/>       
3511
            </example>
3512
        </member>
3513
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
3514
            <summary>
3515
            Do not preserve references when serializing types.
3516
            </summary>
3517
        </member>
3518
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
3519
            <summary>
3520
            Preserve references when serializing into a JSON object structure.
3521
            </summary>
3522
        </member>
3523
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
3524
            <summary>
3525
            Preserve references when serializing into a JSON array structure.
3526
            </summary>
3527
        </member>
3528
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
3529
            <summary>
3530
            Preserve references when serializing.
3531
            </summary>
3532
        </member>
3533
        <member name="T:Newtonsoft.Json.JsonArrayAttribute">
3534
            <summary>
3535
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
3536
            </summary>
3537
        </member>
3538
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
3539
            <summary>
3540
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
3541
            </summary>
3542
        </member>
3543
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
3544
            <summary>
3545
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items
3546
            </summary>
3547
            <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
3548
        </member>
3549
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
3550
            <summary>
3551
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
3552
            </summary>
3553
            <param name="id">The container Id.</param>
3554
        </member>
3555
        <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
3556
            <summary>
3557
            Gets or sets a value indicating whether null items are allowed in the collection.
3558
            </summary>
3559
            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
3560
        </member>
3561
        <member name="T:Newtonsoft.Json.DefaultValueHandling">
3562
            <summary>
3563
            Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3564
            </summary>
3565
            <example>
3566
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class"/>
3567
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example"/>
3568
            </example>
3569
        </member>
3570
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
3571
            <summary>
3572
            Include members where the member value is the same as the member's default value when serializing objects.
3573
            Included members are written to JSON. Has no effect when deserializing.
3574
            </summary>
3575
        </member>
3576
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
3577
            <summary>
3578
            Ignore members where the member value is the same as the member's default value when serializing objects
3579
            so that is is not written to JSON.
3580
            This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,
3581
            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
3582
            placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
3583
            </summary>
3584
        </member>
3585
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
3586
            <summary>
3587
            Members with a default value but no JSON will be set to their default value when deserializing.
3588
            </summary>
3589
        </member>
3590
        <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
3591
            <summary>
3592
            Ignore members where the member value is the same as the member's default value when serializing objects
3593
            and sets members to their default value when deserializing.
3594
            </summary>
3595
        </member>
3596
        <member name="T:Newtonsoft.Json.JsonConverterAttribute">
3597
            <summary>
3598
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
3599
            </summary>
3600
        </member>
3601
        <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
3602
            <summary>
3603
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
3604
            </summary>
3605
            <param name="converterType">Type of the converter.</param>
3606
        </member>
3607
        <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])">
3608
            <summary>
3609
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
3610
            </summary>
3611
            <param name="converterType">Type of the converter.</param>
3612
            <param name="converterParameters">Parameter list to use when constructing the JsonConverter.  Can be null.</param>
3613
        </member>
3614
        <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
3615
            <summary>
3616
            Gets the type of the converter.
3617
            </summary>
3618
            <value>The type of the converter.</value>
3619
        </member>
3620
        <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters">
3621
            <summary>
3622
            The parameter list to use when constructing the JsonConverter described by ConverterType.  
3623
            If null, the default constructor is used.
3624
            </summary>
3625
        </member>
3626
        <member name="T:Newtonsoft.Json.JsonObjectAttribute">
3627
            <summary>
3628
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
3629
            </summary>
3630
        </member>
3631
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
3632
            <summary>
3633
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
3634
            </summary>
3635
        </member>
3636
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
3637
            <summary>
3638
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
3639
            </summary>
3640
            <param name="memberSerialization">The member serialization.</param>
3641
        </member>
3642
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
3643
            <summary>
3644
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
3645
            </summary>
3646
            <param name="id">The container Id.</param>
3647
        </member>
3648
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
3649
            <summary>
3650
            Gets or sets the member serialization.
3651
            </summary>
3652
            <value>The member serialization.</value>
3653
        </member>
3654
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
3655
            <summary>
3656
            Gets or sets a value that indicates whether the object's properties are required.
3657
            </summary>
3658
            <value>
3659
            	A value indicating whether the object's properties are required.
3660
            </value>
3661
        </member>
3662
        <member name="T:Newtonsoft.Json.JsonSerializerSettings">
3663
            <summary>
3664
            Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
3665
            </summary>
3666
        </member>
3667
        <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
3668
            <summary>
3669
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
3670
            </summary>
3671
        </member>
3672
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
3673
            <summary>
3674
            Gets or sets how reference loops (e.g. a class referencing itself) is handled.
3675
            </summary>
3676
            <value>Reference loop handling.</value>
3677
        </member>
3678
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
3679
            <summary>
3680
            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
3681
            </summary>
3682
            <value>Missing member handling.</value>
3683
        </member>
3684
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
3685
            <summary>
3686
            Gets or sets how objects are created during deserialization.
3687
            </summary>
3688
            <value>The object creation handling.</value>
3689
        </member>
3690
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
3691
            <summary>
3692
            Gets or sets how null values are handled during serialization and deserialization.
3693
            </summary>
3694
            <value>Null value handling.</value>
3695
        </member>
3696
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
3697
            <summary>
3698
            Gets or sets how null default are handled during serialization and deserialization.
3699
            </summary>
3700
            <value>The default value handling.</value>
3701
        </member>
3702
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
3703
            <summary>
3704
            Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
3705
            </summary>
3706
            <value>The converters.</value>
3707
        </member>
3708
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
3709
            <summary>
3710
            Gets or sets how object references are preserved by the serializer.
3711
            </summary>
3712
            <value>The preserve references handling.</value>
3713
        </member>
3714
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
3715
            <summary>
3716
            Gets or sets how type name writing and reading is handled by the serializer.
3717
            </summary>
3718
            <value>The type name handling.</value>
3719
        </member>
3720
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">
3721
            <summary>
3722
            Gets or sets how metadata properties are used during deserialization.
3723
            </summary>
3724
            <value>The metadata properties handling.</value>
3725
        </member>
3726
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
3727
            <summary>
3728
            Gets or sets how a type name assembly is written and resolved by the serializer.
3729
            </summary>
3730
            <value>The type name assembly format.</value>
3731
        </member>
3732
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
3733
            <summary>
3734
            Gets or sets how constructors are used during deserialization.
3735
            </summary>
3736
            <value>The constructor handling.</value>
3737
        </member>
3738
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
3739
            <summary>
3740
            Gets or sets the contract resolver used by the serializer when
3741
            serializing .NET objects to JSON and vice versa.
3742
            </summary>
3743
            <value>The contract resolver.</value>
3744
        </member>
3745
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
3746
            <summary>
3747
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
3748
            </summary>
3749
            <value>The reference resolver.</value>
3750
        </member>
3751
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
3752
            <summary>
3753
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
3754
            </summary>
3755
            <value>The trace writer.</value>
3756
        </member>
3757
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
3758
            <summary>
3759
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
3760
            </summary>
3761
            <value>The binder.</value>
3762
        </member>
3763
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
3764
            <summary>
3765
            Gets or sets the error handler called during serialization and deserialization.
3766
            </summary>
3767
            <value>The error handler called during serialization and deserialization.</value>
3768
        </member>
3769
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
3770
            <summary>
3771
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
3772
            </summary>
3773
            <value>The context.</value>
3774
        </member>
3775
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
3776
            <summary>
3777
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
3778
            </summary>
3779
        </member>
3780
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
3781
            <summary>
3782
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
3783
            </summary>
3784
        </member>
3785
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
3786
            <summary>
3787
            Indicates how JSON text output is formatted.
3788
            </summary>
3789
        </member>
3790
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
3791
            <summary>
3792
            Get or set how dates are written to JSON text.
3793
            </summary>
3794
        </member>
3795
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
3796
            <summary>
3797
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
3798
            </summary>
3799
        </member>
3800
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
3801
            <summary>
3802
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
3803
            </summary>
3804
        </member>
3805
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
3806
            <summary>
3807
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
3808
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
3809
            are written as JSON.
3810
            </summary>
3811
        </member>
3812
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
3813
            <summary>
3814
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
3815
            </summary>
3816
        </member>
3817
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
3818
            <summary>
3819
            Get or set how strings are escaped when writing JSON text.
3820
            </summary>
3821
        </member>
3822
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
3823
            <summary>
3824
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
3825
            </summary>
3826
        </member>
3827
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
3828
            <summary>
3829
            Gets a value indicating whether there will be a check for additional content after deserializing an object.
3830
            </summary>
3831
            <value>
3832
            	<c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
3833
            </value>
3834
        </member>
3835
        <member name="T:Newtonsoft.Json.JsonValidatingReader">
3836
            <summary>
3837
            Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
3838
            </summary>
3839
        </member>
3840
        <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
3841
            <summary>
3842
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
3843
            validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
3844
            </summary>
3845
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
3846
        </member>
3847
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
3848
            <summary>
3849
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3850
            </summary>
3851
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3852
        </member>
3853
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
3854
            <summary>
3855
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
3856
            </summary>
3857
            <returns>
3858
            A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null.
3859
            </returns>
3860
        </member>
3861
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
3862
            <summary>
3863
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3864
            </summary>
3865
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3866
        </member>
3867
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
3868
            <summary>
3869
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
3870
            </summary>
3871
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3872
        </member>
3873
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
3874
            <summary>
3875
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3876
            </summary>
3877
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3878
        </member>
3879
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
3880
            <summary>
3881
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3882
            </summary>
3883
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3884
        </member>
3885
        <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
3886
            <summary>
3887
            Reads the next JSON token from the stream.
3888
            </summary>
3889
            <returns>
3890
            true if the next token was read successfully; false if there are no more tokens to read.
3891
            </returns>
3892
        </member>
3893
        <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
3894
            <summary>
3895
            Sets an event handler for receiving schema validation errors.
3896
            </summary>
3897
        </member>
3898
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
3899
            <summary>
3900
            Gets the text value of the current JSON token.
3901
            </summary>
3902
            <value></value>
3903
        </member>
3904
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
3905
            <summary>
3906
            Gets the depth of the current token in the JSON document.
3907
            </summary>
3908
            <value>The depth of the current token in the JSON document.</value>
3909
        </member>
3910
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
3911
            <summary>
3912
            Gets the path of the current JSON token. 
3913
            </summary>
3914
        </member>
3915
        <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
3916
            <summary>
3917
            Gets the quotation mark character used to enclose the value of a string.
3918
            </summary>
3919
            <value></value>
3920
        </member>
3921
        <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
3922
            <summary>
3923
            Gets the type of the current JSON token.
3924
            </summary>
3925
            <value></value>
3926
        </member>
3927
        <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
3928
            <summary>
3929
            Gets the Common Language Runtime (CLR) type for the current JSON token.
3930
            </summary>
3931
            <value></value>
3932
        </member>
3933
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
3934
            <summary>
3935
            Gets or sets the schema.
3936
            </summary>
3937
            <value>The schema.</value>
3938
        </member>
3939
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
3940
            <summary>
3941
            Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
3942
            </summary>
3943
            <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
3944
        </member>
3945
        <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
3946
            <summary>
3947
            Compares tokens to determine whether they are equal.
3948
            </summary>
3949
        </member>
3950
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
3951
            <summary>
3952
            Determines whether the specified objects are equal.
3953
            </summary>
3954
            <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
3955
            <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
3956
            <returns>
3957
            true if the specified objects are equal; otherwise, false.
3958
            </returns>
3959
        </member>
3960
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
3961
            <summary>
3962
            Returns a hash code for the specified object.
3963
            </summary>
3964
            <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
3965
            <returns>A hash code for the specified object.</returns>
3966
            <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception>
3967
        </member>
3968
        <member name="T:Newtonsoft.Json.MemberSerialization">
3969
            <summary>
3970
            Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3971
            </summary>
3972
        </member>
3973
        <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
3974
            <summary>
3975
            All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
3976
            This is the default member serialization mode.
3977
            </summary>
3978
        </member>
3979
        <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
3980
            <summary>
3981
            Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/> are serialized.
3982
            This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute"/>.
3983
            </summary>
3984
        </member>
3985
        <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
3986
            <summary>
3987
            All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
3988
            This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
3989
            and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to false.
3990
            </summary>
3991
        </member>
3992
        <member name="T:Newtonsoft.Json.ObjectCreationHandling">
3993
            <summary>
3994
            Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3995
            </summary>
3996
        </member>
3997
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
3998
            <summary>
3999
            Reuse existing objects, create new objects when needed.
4000
            </summary>
4001
        </member>
4002
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
4003
            <summary>
4004
            Only reuse existing objects.
4005
            </summary>
4006
        </member>
4007
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
4008
            <summary>
4009
            Always create new objects.
4010
            </summary>
4011
        </member>
4012
        <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
4013
            <summary>
4014
            Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).
4015
            </summary>
4016
        </member>
4017
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
4018
            <summary>
4019
            Writes the JSON representation of the object.
4020
            </summary>
4021
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
4022
            <param name="value">The value.</param>
4023
            <param name="serializer">The calling serializer.</param>
4024
        </member>
4025
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
4026
            <summary>
4027
            Reads the JSON representation of the object.
4028
            </summary>
4029
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
4030
            <param name="objectType">Type of the object.</param>
4031
            <param name="existingValue">The existing value of object being read.</param>
4032
            <param name="serializer">The calling serializer.</param>
4033
            <returns>The object value.</returns>
4034
        </member>
4035
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
4036
            <summary>
4037
            Gets or sets the date time styles used when converting a date to and from JSON.
4038
            </summary>
4039
            <value>The date time styles used when converting a date to and from JSON.</value>
4040
        </member>
4041
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
4042
            <summary>
4043
            Gets or sets the date time format used when converting a date to and from JSON.
4044
            </summary>
4045
            <value>The date time format used when converting a date to and from JSON.</value>
4046
        </member>
4047
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
4048
            <summary>
4049
            Gets or sets the culture used when converting a date to and from JSON.
4050
            </summary>
4051
            <value>The culture used when converting a date to and from JSON.</value>
4052
        </member>
4053
        <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
4054
            <summary>
4055
            Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).
4056
            </summary>
4057
        </member>
4058
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
4059
            <summary>
4060
            Writes the JSON representation of the object.
4061
            </summary>
4062
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
4063
            <param name="value">The value.</param>
4064
            <param name="serializer">The calling serializer.</param>
4065
        </member>
4066
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
4067
            <summary>
4068
            Reads the JSON representation of the object.
4069
            </summary>
4070
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
4071
            <param name="objectType">Type of the object.</param>
4072
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
4073
            <param name="serializer">The calling serializer.</param>
4074
            <returns>The object value.</returns>
4075
        </member>
4076
        <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
4077
            <summary>
4078
            Converts XML to and from JSON.
4079
            </summary>
4080
        </member>
4081
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
4082
            <summary>
4083
            Writes the JSON representation of the object.
4084
            </summary>
4085
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
4086
            <param name="serializer">The calling serializer.</param>
4087
            <param name="value">The value.</param>
4088
        </member>
4089
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
4090
            <summary>
4091
            Reads the JSON representation of the object.
4092
            </summary>
4093
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
4094
            <param name="objectType">Type of the object.</param>
4095
            <param name="existingValue">The existing value of object being read.</param>
4096
            <param name="serializer">The calling serializer.</param>
4097
            <returns>The object value.</returns>
4098
        </member>
4099
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
4100
            <summary>
4101
            Checks if the attributeName is a namespace attribute.
4102
            </summary>
4103
            <param name="attributeName">Attribute name to test.</param>
4104
            <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
4105
            <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>
4106
        </member>
4107
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
4108
            <summary>
4109
            Determines whether this instance can convert the specified value type.
4110
            </summary>
4111
            <param name="valueType">Type of the value.</param>
4112
            <returns>
4113
            	<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
4114
            </returns>
4115
        </member>
4116
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
4117
            <summary>
4118
            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.
4119
            </summary>
4120
            <value>The name of the deserialize root element.</value>
4121
        </member>
4122
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
4123
            <summary>
4124
            Gets or sets a flag to indicate whether to write the Json.NET array attribute.
4125
            This attribute helps preserve arrays when converting the written XML back to JSON.
4126
            </summary>
4127
            <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>
4128
        </member>
4129
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
4130
            <summary>
4131
            Gets or sets a value indicating whether to write the root JSON object.
4132
            </summary>
4133
            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
4134
        </member>
4135
        <member name="T:Newtonsoft.Json.JsonTextReader">
4136
            <summary>
4137
            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
4138
            </summary>
4139
        </member>
4140
        <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
4141
            <summary>
4142
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
4143
            </summary>
4144
            <param name="reader">The <c>TextReader</c> containing the XML data to read.</param>
4145
        </member>
4146
        <member name="M:Newtonsoft.Json.JsonTextReader.Read">
4147
            <summary>
4148
            Reads the next JSON token from the stream.
4149
            </summary>
4150
            <returns>
4151
            true if the next token was read successfully; false if there are no more tokens to read.
4152
            </returns>
4153
        </member>
4154
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
4155
            <summary>
4156
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
4157
            </summary>
4158
            <returns>
4159
            A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
4160
            </returns>
4161
        </member>
4162
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
4163
            <summary>
4164
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4165
            </summary>
4166
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
4167
        </member>
4168
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
4169
            <summary>
4170
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4171
            </summary>
4172
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
4173
        </member>
4174
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
4175
            <summary>
4176
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
4177
            </summary>
4178
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4179
        </member>
4180
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
4181
            <summary>
4182
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4183
            </summary>
4184
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4185
        </member>
4186
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
4187
            <summary>
4188
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4189
            </summary>
4190
            <returns>A <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>
4191
        </member>
4192
        <member name="M:Newtonsoft.Json.JsonTextReader.Close">
4193
            <summary>
4194
            Changes the state to closed. 
4195
            </summary>
4196
        </member>
4197
        <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
4198
            <summary>
4199
            Gets a value indicating whether the class can return line information.
4200
            </summary>
4201
            <returns>
4202
            	<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
4203
            </returns>
4204
        </member>
4205
        <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
4206
            <summary>
4207
            Gets the current line number.
4208
            </summary>
4209
            <value>
4210
            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
4211
            </value>
4212
        </member>
4213
        <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
4214
            <summary>
4215
            Gets the current line position.
4216
            </summary>
4217
            <value>
4218
            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
4219
            </value>
4220
        </member>
4221
        <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
4222
            <summary>
4223
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
4224
            </summary>
4225
        </member>
4226
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
4227
            <summary>
4228
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
4229
            </summary>
4230
        </member>
4231
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
4232
            <summary>
4233
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
4234
            </summary>
4235
            <param name="propertyName">Name of the property.</param>
4236
        </member>
4237
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
4238
            <summary>
4239
            Gets or sets the converter used when serializing the property's collection items.
4240
            </summary>
4241
            <value>The collection's items converter.</value>
4242
        </member>
4243
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterParameters">
4244
            <summary>
4245
            The parameter list to use when constructing the JsonConverter described by ItemConverterType.
4246
            If null, the default constructor is used.
4247
            When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
4248
            order, and type of these parameters.
4249
            </summary>
4250
            <example>
4251
            [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
4252
            </example>
4253
        </member>
4254
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
4255
            <summary>
4256
            Gets or sets the null value handling used when serializing this property.
4257
            </summary>
4258
            <value>The null value handling.</value>
4259
        </member>
4260
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
4261
            <summary>
4262
            Gets or sets the default value handling used when serializing this property.
4263
            </summary>
4264
            <value>The default value handling.</value>
4265
        </member>
4266
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
4267
            <summary>
4268
            Gets or sets the reference loop handling used when serializing this property.
4269
            </summary>
4270
            <value>The reference loop handling.</value>
4271
        </member>
4272
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
4273
            <summary>
4274
            Gets or sets the object creation handling used when deserializing this property.
4275
            </summary>
4276
            <value>The object creation handling.</value>
4277
        </member>
4278
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
4279
            <summary>
4280
            Gets or sets the type name handling used when serializing this property.
4281
            </summary>
4282
            <value>The type name handling.</value>
4283
        </member>
4284
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
4285
            <summary>
4286
            Gets or sets whether this property's value is serialized as a reference.
4287
            </summary>
4288
            <value>Whether this property's value is serialized as a reference.</value>
4289
        </member>
4290
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
4291
            <summary>
4292
            Gets or sets the order of serialization and deserialization of a member.
4293
            </summary>
4294
            <value>The numeric order of serialization or deserialization.</value>
4295
        </member>
4296
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
4297
            <summary>
4298
            Gets or sets a value indicating whether this property is required.
4299
            </summary>
4300
            <value>
4301
            	A value indicating whether this property is required.
4302
            </value>
4303
        </member>
4304
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
4305
            <summary>
4306
            Gets or sets the name of the property.
4307
            </summary>
4308
            <value>The name of the property.</value>
4309
        </member>
4310
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
4311
            <summary>
4312
            Gets or sets the the reference loop handling used when serializing the property's collection items.
4313
            </summary>
4314
            <value>The collection's items reference loop handling.</value>
4315
        </member>
4316
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
4317
            <summary>
4318
            Gets or sets the the type name handling used when serializing the property's collection items.
4319
            </summary>
4320
            <value>The collection's items type name handling.</value>
4321
        </member>
4322
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
4323
            <summary>
4324
            Gets or sets whether this property's collection items are serialized as a reference.
4325
            </summary>
4326
            <value>Whether this property's collection items are serialized as a reference.</value>
4327
        </member>
4328
        <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
4329
            <summary>
4330
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
4331
            </summary>
4332
        </member>
4333
        <member name="T:Newtonsoft.Json.JsonTextWriter">
4334
            <summary>
4335
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
4336
            </summary>
4337
        </member>
4338
        <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
4339
            <summary>
4340
            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>. 
4341
            </summary>
4342
            <param name="textWriter">The <c>TextWriter</c> to write to.</param>
4343
        </member>
4344
        <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
4345
            <summary>
4346
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
4347
            </summary>
4348
        </member>
4349
        <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
4350
            <summary>
4351
            Closes this stream and the underlying stream.
4352
            </summary>
4353
        </member>
4354
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
4355
            <summary>
4356
            Writes the beginning of a Json object.
4357
            </summary>
4358
        </member>
4359
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
4360
            <summary>
4361
            Writes the beginning of a Json array.
4362
            </summary>
4363
        </member>
4364
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
4365
            <summary>
4366
            Writes the start of a constructor with the given name.
4367
            </summary>
4368
            <param name="name">The name of the constructor.</param>
4369
        </member>
4370
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
4371
            <summary>
4372
            Writes the specified end token.
4373
            </summary>
4374
            <param name="token">The end token to write.</param>
4375
        </member>
4376
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
4377
            <summary>
4378
            Writes the property name of a name/value pair on a Json object.
4379
            </summary>
4380
            <param name="name">The name of the property.</param>
4381
        </member>
4382
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">
4383
            <summary>
4384
            Writes the property name of a name/value pair on a JSON object.
4385
            </summary>
4386
            <param name="name">The name of the property.</param>
4387
            <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
4388
        </member>
4389
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
4390
            <summary>
4391
            Writes indent characters.
4392
            </summary>
4393
        </member>
4394
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
4395
            <summary>
4396
            Writes the JSON value delimiter.
4397
            </summary>
4398
        </member>
4399
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
4400
            <summary>
4401
            Writes an indent space.
4402
            </summary>
4403
        </member>
4404
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">
4405
            <summary>
4406
            Writes a <see cref="T:System.Object"/> value.
4407
            An error will raised if the value cannot be written as a single JSON token.
4408
            </summary>
4409
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
4410
        </member>
4411
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
4412
            <summary>
4413
            Writes a null value.
4414
            </summary>
4415
        </member>
4416
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
4417
            <summary>
4418
            Writes an undefined value.
4419
            </summary>
4420
        </member>
4421
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
4422
            <summary>
4423
            Writes raw JSON.
4424
            </summary>
4425
            <param name="json">The raw JSON to write.</param>
4426
        </member>
4427
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
4428
            <summary>
4429
            Writes a <see cref="T:System.String"/> value.
4430
            </summary>
4431
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
4432
        </member>
4433
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
4434
            <summary>
4435
            Writes a <see cref="T:System.Int32"/> value.
4436
            </summary>
4437
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
4438
        </member>
4439
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
4440
            <summary>
4441
            Writes a <see cref="T:System.UInt32"/> value.
4442
            </summary>
4443
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
4444
        </member>
4445
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
4446
            <summary>
4447
            Writes a <see cref="T:System.Int64"/> value.
4448
            </summary>
4449
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
4450
        </member>
4451
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
4452
            <summary>
4453
            Writes a <see cref="T:System.UInt64"/> value.
4454
            </summary>
4455
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
4456
        </member>
4457
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
4458
            <summary>
4459
            Writes a <see cref="T:System.Single"/> value.
4460
            </summary>
4461
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
4462
        </member>
4463
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
4464
            <summary>
4465
            Writes a <see cref="T:System.Nullable`1"/> value.
4466
            </summary>
4467
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
4468
        </member>
4469
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
4470
            <summary>
4471
            Writes a <see cref="T:System.Double"/> value.
4472
            </summary>
4473
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
4474
        </member>
4475
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
4476
            <summary>
4477
            Writes a <see cref="T:System.Nullable`1"/> value.
4478
            </summary>
4479
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
4480
        </member>
4481
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
4482
            <summary>
4483
            Writes a <see cref="T:System.Boolean"/> value.
4484
            </summary>
4485
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
4486
        </member>
4487
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
4488
            <summary>
4489
            Writes a <see cref="T:System.Int16"/> value.
4490
            </summary>
4491
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
4492
        </member>
4493
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
4494
            <summary>
4495
            Writes a <see cref="T:System.UInt16"/> value.
4496
            </summary>
4497
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
4498
        </member>
4499
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
4500
            <summary>
4501
            Writes a <see cref="T:System.Char"/> value.
4502
            </summary>
4503
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
4504
        </member>
4505
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
4506
            <summary>
4507
            Writes a <see cref="T:System.Byte"/> value.
4508
            </summary>
4509
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
4510
        </member>
4511
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
4512
            <summary>
4513
            Writes a <see cref="T:System.SByte"/> value.
4514
            </summary>
4515
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
4516
        </member>
4517
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
4518
            <summary>
4519
            Writes a <see cref="T:System.Decimal"/> value.
4520
            </summary>
4521
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
4522
        </member>
4523
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
4524
            <summary>
4525
            Writes a <see cref="T:System.DateTime"/> value.
4526
            </summary>
4527
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
4528
        </member>
4529
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
4530
            <summary>
4531
            Writes a <see cref="T:System.Byte"/>[] value.
4532
            </summary>
4533
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
4534
        </member>
4535
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
4536
            <summary>
4537
            Writes a <see cref="T:System.DateTimeOffset"/> value.
4538
            </summary>
4539
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
4540
        </member>
4541
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
4542
            <summary>
4543
            Writes a <see cref="T:System.Guid"/> value.
4544
            </summary>
4545
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
4546
        </member>
4547
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
4548
            <summary>
4549
            Writes a <see cref="T:System.TimeSpan"/> value.
4550
            </summary>
4551
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
4552
        </member>
4553
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
4554
            <summary>
4555
            Writes a <see cref="T:System.Uri"/> value.
4556
            </summary>
4557
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
4558
        </member>
4559
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
4560
            <summary>
4561
            Writes out a comment <code>/*...*/</code> containing the specified text. 
4562
            </summary>
4563
            <param name="text">Text to place inside the comment.</param>
4564
        </member>
4565
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
4566
            <summary>
4567
            Writes out the given white space.
4568
            </summary>
4569
            <param name="ws">The string of white space characters.</param>
4570
        </member>
4571
        <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
4572
            <summary>
4573
            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>.
4574
            </summary>
4575
        </member>
4576
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
4577
            <summary>
4578
            Gets or sets which character to use to quote attribute values.
4579
            </summary>
4580
        </member>
4581
        <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
4582
            <summary>
4583
            Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
4584
            </summary>
4585
        </member>
4586
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
4587
            <summary>
4588
            Gets or sets a value indicating whether object names will be surrounded with quotes.
4589
            </summary>
4590
        </member>
4591
        <member name="T:Newtonsoft.Json.JsonWriterException">
4592
            <summary>
4593
            The exception thrown when an error occurs while reading Json text.
4594
            </summary>
4595
        </member>
4596
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
4597
            <summary>
4598
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
4599
            </summary>
4600
        </member>
4601
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
4602
            <summary>
4603
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
4604
            with a specified error message.
4605
            </summary>
4606
            <param name="message">The error message that explains the reason for the exception.</param>
4607
        </member>
4608
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
4609
            <summary>
4610
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
4611
            with a specified error message and a reference to the inner exception that is the cause of this exception.
4612
            </summary>
4613
            <param name="message">The error message that explains the reason for the exception.</param>
4614
            <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>
4615
        </member>
4616
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
4617
            <summary>
4618
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
4619
            </summary>
4620
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4621
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4622
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
4623
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
4624
        </member>
4625
        <member name="P:Newtonsoft.Json.JsonWriterException.Path">
4626
            <summary>
4627
            Gets the path to the JSON where the error occurred.
4628
            </summary>
4629
            <value>The path to the JSON where the error occurred.</value>
4630
        </member>
4631
        <member name="T:Newtonsoft.Json.JsonReaderException">
4632
            <summary>
4633
            The exception thrown when an error occurs while reading Json text.
4634
            </summary>
4635
        </member>
4636
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
4637
            <summary>
4638
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
4639
            </summary>
4640
        </member>
4641
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
4642
            <summary>
4643
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
4644
            with a specified error message.
4645
            </summary>
4646
            <param name="message">The error message that explains the reason for the exception.</param>
4647
        </member>
4648
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
4649
            <summary>
4650
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
4651
            with a specified error message and a reference to the inner exception that is the cause of this exception.
4652
            </summary>
4653
            <param name="message">The error message that explains the reason for the exception.</param>
4654
            <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>
4655
        </member>
4656
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
4657
            <summary>
4658
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
4659
            </summary>
4660
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4661
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4662
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
4663
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
4664
        </member>
4665
        <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
4666
            <summary>
4667
            Gets the line number indicating where the error occurred.
4668
            </summary>
4669
            <value>The line number indicating where the error occurred.</value>
4670
        </member>
4671
        <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
4672
            <summary>
4673
            Gets the line position indicating where the error occurred.
4674
            </summary>
4675
            <value>The line position indicating where the error occurred.</value>
4676
        </member>
4677
        <member name="P:Newtonsoft.Json.JsonReaderException.Path">
4678
            <summary>
4679
            Gets the path to the JSON where the error occurred.
4680
            </summary>
4681
            <value>The path to the JSON where the error occurred.</value>
4682
        </member>
4683
        <member name="T:Newtonsoft.Json.JsonConverterCollection">
4684
            <summary>
4685
            Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4686
            </summary>
4687
        </member>
4688
        <member name="T:Newtonsoft.Json.JsonConvert">
4689
            <summary>
4690
            Provides methods for converting between common language runtime types and JSON types.
4691
            </summary>
4692
            <example>
4693
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
4694
            </example>
4695
        </member>
4696
        <member name="F:Newtonsoft.Json.JsonConvert.True">
4697
            <summary>
4698
            Represents JavaScript's boolean value true as a string. This field is read-only.
4699
            </summary>
4700
        </member>
4701
        <member name="F:Newtonsoft.Json.JsonConvert.False">
4702
            <summary>
4703
            Represents JavaScript's boolean value false as a string. This field is read-only.
4704
            </summary>
4705
        </member>
4706
        <member name="F:Newtonsoft.Json.JsonConvert.Null">
4707
            <summary>
4708
            Represents JavaScript's null as a string. This field is read-only.
4709
            </summary>
4710
        </member>
4711
        <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
4712
            <summary>
4713
            Represents JavaScript's undefined as a string. This field is read-only.
4714
            </summary>
4715
        </member>
4716
        <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
4717
            <summary>
4718
            Represents JavaScript's positive infinity as a string. This field is read-only.
4719
            </summary>
4720
        </member>
4721
        <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
4722
            <summary>
4723
            Represents JavaScript's negative infinity as a string. This field is read-only.
4724
            </summary>
4725
        </member>
4726
        <member name="F:Newtonsoft.Json.JsonConvert.NaN">
4727
            <summary>
4728
            Represents JavaScript's NaN as a string. This field is read-only.
4729
            </summary>
4730
        </member>
4731
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
4732
            <summary>
4733
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
4734
            </summary>
4735
            <param name="value">The value to convert.</param>
4736
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
4737
        </member>
4738
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
4739
            <summary>
4740
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
4741
            </summary>
4742
            <param name="value">The value to convert.</param>
4743
            <param name="format">The format the date will be converted to.</param>
4744
            <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
4745
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
4746
        </member>
4747
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
4748
            <summary>
4749
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
4750
            </summary>
4751
            <param name="value">The value to convert.</param>
4752
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
4753
        </member>
4754
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
4755
            <summary>
4756
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
4757
            </summary>
4758
            <param name="value">The value to convert.</param>
4759
            <param name="format">The format the date will be converted to.</param>
4760
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
4761
        </member>
4762
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
4763
            <summary>
4764
            Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
4765
            </summary>
4766
            <param name="value">The value to convert.</param>
4767
            <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
4768
        </member>
4769
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
4770
            <summary>
4771
            Converts the <see cref="T:System.Char"/> to its JSON string representation.
4772
            </summary>
4773
            <param name="value">The value to convert.</param>
4774
            <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
4775
        </member>
4776
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
4777
            <summary>
4778
            Converts the <see cref="T:System.Enum"/> to its JSON string representation.
4779
            </summary>
4780
            <param name="value">The value to convert.</param>
4781
            <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
4782
        </member>
4783
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
4784
            <summary>
4785
            Converts the <see cref="T:System.Int32"/> to its JSON string representation.
4786
            </summary>
4787
            <param name="value">The value to convert.</param>
4788
            <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
4789
        </member>
4790
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
4791
            <summary>
4792
            Converts the <see cref="T:System.Int16"/> to its JSON string representation.
4793
            </summary>
4794
            <param name="value">The value to convert.</param>
4795
            <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
4796
        </member>
4797
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
4798
            <summary>
4799
            Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
4800
            </summary>
4801
            <param name="value">The value to convert.</param>
4802
            <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
4803
        </member>
4804
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
4805
            <summary>
4806
            Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
4807
            </summary>
4808
            <param name="value">The value to convert.</param>
4809
            <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
4810
        </member>
4811
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
4812
            <summary>
4813
            Converts the <see cref="T:System.Int64"/>  to its JSON string representation.
4814
            </summary>
4815
            <param name="value">The value to convert.</param>
4816
            <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
4817
        </member>
4818
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
4819
            <summary>
4820
            Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
4821
            </summary>
4822
            <param name="value">The value to convert.</param>
4823
            <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
4824
        </member>
4825
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
4826
            <summary>
4827
            Converts the <see cref="T:System.Single"/> to its JSON string representation.
4828
            </summary>
4829
            <param name="value">The value to convert.</param>
4830
            <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
4831
        </member>
4832
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
4833
            <summary>
4834
            Converts the <see cref="T:System.Double"/> to its JSON string representation.
4835
            </summary>
4836
            <param name="value">The value to convert.</param>
4837
            <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
4838
        </member>
4839
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
4840
            <summary>
4841
            Converts the <see cref="T:System.Byte"/> to its JSON string representation.
4842
            </summary>
4843
            <param name="value">The value to convert.</param>
4844
            <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
4845
        </member>
4846
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
4847
            <summary>
4848
            Converts the <see cref="T:System.SByte"/> to its JSON string representation.
4849
            </summary>
4850
            <param name="value">The value to convert.</param>
4851
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
4852
        </member>
4853
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
4854
            <summary>
4855
            Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
4856
            </summary>
4857
            <param name="value">The value to convert.</param>
4858
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
4859
        </member>
4860
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
4861
            <summary>
4862
            Converts the <see cref="T:System.Guid"/> to its JSON string representation.
4863
            </summary>
4864
            <param name="value">The value to convert.</param>
4865
            <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
4866
        </member>
4867
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
4868
            <summary>
4869
            Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
4870
            </summary>
4871
            <param name="value">The value to convert.</param>
4872
            <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
4873
        </member>
4874
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
4875
            <summary>
4876
            Converts the <see cref="T:System.Uri"/> to its JSON string representation.
4877
            </summary>
4878
            <param name="value">The value to convert.</param>
4879
            <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
4880
        </member>
4881
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
4882
            <summary>
4883
            Converts the <see cref="T:System.String"/> to its JSON string representation.
4884
            </summary>
4885
            <param name="value">The value to convert.</param>
4886
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
4887
        </member>
4888
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
4889
            <summary>
4890
            Converts the <see cref="T:System.String"/> to its JSON string representation.
4891
            </summary>
4892
            <param name="value">The value to convert.</param>
4893
            <param name="delimiter">The string delimiter character.</param>
4894
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
4895
        </member>
4896
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)">
4897
            <summary>
4898
            Converts the <see cref="T:System.String"/> to its JSON string representation.
4899
            </summary>
4900
            <param name="value">The value to convert.</param>
4901
            <param name="delimiter">The string delimiter character.</param>
4902
            <param name="stringEscapeHandling">The string escape handling.</param>
4903
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
4904
        </member>
4905
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
4906
            <summary>
4907
            Converts the <see cref="T:System.Object"/> to its JSON string representation.
4908
            </summary>
4909
            <param name="value">The value to convert.</param>
4910
            <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
4911
        </member>
4912
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
4913
            <summary>
4914
            Serializes the specified object to a JSON string.
4915
            </summary>
4916
            <param name="value">The object to serialize.</param>
4917
            <returns>A JSON string representation of the object.</returns>
4918
        </member>
4919
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
4920
            <summary>
4921
            Serializes the specified object to a JSON string using formatting.
4922
            </summary>
4923
            <param name="value">The object to serialize.</param>
4924
            <param name="formatting">Indicates how the output is formatted.</param>
4925
            <returns>
4926
            A JSON string representation of the object.
4927
            </returns>
4928
        </member>
4929
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
4930
            <summary>
4931
            Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4932
            </summary>
4933
            <param name="value">The object to serialize.</param>
4934
            <param name="converters">A collection converters used while serializing.</param>
4935
            <returns>A JSON string representation of the object.</returns>
4936
        </member>
4937
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
4938
            <summary>
4939
            Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4940
            </summary>
4941
            <param name="value">The object to serialize.</param>
4942
            <param name="formatting">Indicates how the output is formatted.</param>
4943
            <param name="converters">A collection converters used while serializing.</param>
4944
            <returns>A JSON string representation of the object.</returns>
4945
        </member>
4946
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
4947
            <summary>
4948
            Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4949
            </summary>
4950
            <param name="value">The object to serialize.</param>
4951
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4952
            If this is null, default serialization settings will be used.</param>
4953
            <returns>
4954
            A JSON string representation of the object.
4955
            </returns>
4956
        </member>
4957
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
4958
            <summary>
4959
            Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4960
            </summary>
4961
            <param name="value">The object to serialize.</param>
4962
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4963
            If this is null, default serialization settings will be used.</param>
4964
            <param name="type">
4965
            The type of the value being serialized.
4966
            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.
4967
            Specifing the type is optional.
4968
            </param>
4969
            <returns>
4970
            A JSON string representation of the object.
4971
            </returns>
4972
        </member>
4973
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
4974
            <summary>
4975
            Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4976
            </summary>
4977
            <param name="value">The object to serialize.</param>
4978
            <param name="formatting">Indicates how the output is formatted.</param>
4979
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4980
            If this is null, default serialization settings will be used.</param>
4981
            <returns>
4982
            A JSON string representation of the object.
4983
            </returns>
4984
        </member>
4985
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
4986
            <summary>
4987
            Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4988
            </summary>
4989
            <param name="value">The object to serialize.</param>
4990
            <param name="formatting">Indicates how the output is formatted.</param>
4991
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4992
            If this is null, default serialization settings will be used.</param>
4993
            <param name="type">
4994
            The type of the value being serialized.
4995
            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.
4996
            Specifing the type is optional.
4997
            </param>
4998
            <returns>
4999
            A JSON string representation of the object.
5000
            </returns>
5001
        </member>
5002
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
5003
            <summary>
5004
            Deserializes the JSON to a .NET object.
5005
            </summary>
5006
            <param name="value">The JSON to deserialize.</param>
5007
            <returns>The deserialized object from the JSON string.</returns>
5008
        </member>
5009
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
5010
            <summary>
5011
            Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5012
            </summary>
5013
            <param name="value">The JSON to deserialize.</param>
5014
            <param name="settings">
5015
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5016
            If this is null, default serialization settings will be used.
5017
            </param>
5018
            <returns>The deserialized object from the JSON string.</returns>
5019
        </member>
5020
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
5021
            <summary>
5022
            Deserializes the JSON to the specified .NET type.
5023
            </summary>
5024
            <param name="value">The JSON to deserialize.</param>
5025
            <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
5026
            <returns>The deserialized object from the JSON string.</returns>
5027
        </member>
5028
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
5029
            <summary>
5030
            Deserializes the JSON to the specified .NET type.
5031
            </summary>
5032
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5033
            <param name="value">The JSON to deserialize.</param>
5034
            <returns>The deserialized object from the JSON string.</returns>
5035
        </member>
5036
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
5037
            <summary>
5038
            Deserializes the JSON to the given anonymous type.
5039
            </summary>
5040
            <typeparam name="T">
5041
            The anonymous type to deserialize to. This can't be specified
5042
            traditionally and must be infered from the anonymous type passed
5043
            as a parameter.
5044
            </typeparam>
5045
            <param name="value">The JSON to deserialize.</param>
5046
            <param name="anonymousTypeObject">The anonymous type object.</param>
5047
            <returns>The deserialized anonymous type from the JSON string.</returns>
5048
        </member>
5049
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
5050
            <summary>
5051
            Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5052
            </summary>
5053
            <typeparam name="T">
5054
            The anonymous type to deserialize to. This can't be specified
5055
            traditionally and must be infered from the anonymous type passed
5056
            as a parameter.
5057
            </typeparam>
5058
            <param name="value">The JSON to deserialize.</param>
5059
            <param name="anonymousTypeObject">The anonymous type object.</param>
5060
            <param name="settings">
5061
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5062
            If this is null, default serialization settings will be used.
5063
            </param>
5064
            <returns>The deserialized anonymous type from the JSON string.</returns>
5065
        </member>
5066
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
5067
            <summary>
5068
            Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5069
            </summary>
5070
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5071
            <param name="value">The JSON to deserialize.</param>
5072
            <param name="converters">Converters to use while deserializing.</param>
5073
            <returns>The deserialized object from the JSON string.</returns>
5074
        </member>
5075
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
5076
            <summary>
5077
            Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5078
            </summary>
5079
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5080
            <param name="value">The object to deserialize.</param>
5081
            <param name="settings">
5082
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5083
            If this is null, default serialization settings will be used.
5084
            </param>
5085
            <returns>The deserialized object from the JSON string.</returns>
5086
        </member>
5087
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
5088
            <summary>
5089
            Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5090
            </summary>
5091
            <param name="value">The JSON to deserialize.</param>
5092
            <param name="type">The type of the object to deserialize.</param>
5093
            <param name="converters">Converters to use while deserializing.</param>
5094
            <returns>The deserialized object from the JSON string.</returns>
5095
        </member>
5096
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
5097
            <summary>
5098
            Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5099
            </summary>
5100
            <param name="value">The JSON to deserialize.</param>
5101
            <param name="type">The type of the object to deserialize to.</param>
5102
            <param name="settings">
5103
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5104
            If this is null, default serialization settings will be used.
5105
            </param>
5106
            <returns>The deserialized object from the JSON string.</returns>
5107
        </member>
5108
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
5109
            <summary>
5110
            Populates the object with values from the JSON string.
5111
            </summary>
5112
            <param name="value">The JSON to populate values from.</param>
5113
            <param name="target">The target object to populate values onto.</param>
5114
        </member>
5115
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
5116
            <summary>
5117
            Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5118
            </summary>
5119
            <param name="value">The JSON to populate values from.</param>
5120
            <param name="target">The target object to populate values onto.</param>
5121
            <param name="settings">
5122
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5123
            If this is null, default serialization settings will be used.
5124
            </param>
5125
        </member>
5126
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
5127
            <summary>
5128
            Serializes the XML node to a JSON string.
5129
            </summary>
5130
            <param name="node">The node to serialize.</param>
5131
            <returns>A JSON string of the XmlNode.</returns>
5132
        </member>
5133
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
5134
            <summary>
5135
            Serializes the XML node to a JSON string using formatting.
5136
            </summary>
5137
            <param name="node">The node to serialize.</param>
5138
            <param name="formatting">Indicates how the output is formatted.</param>
5139
            <returns>A JSON string of the XmlNode.</returns>
5140
        </member>
5141
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
5142
            <summary>
5143
            Serializes the XML node to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
5144
            </summary>
5145
            <param name="node">The node to serialize.</param>
5146
            <param name="formatting">Indicates how the output is formatted.</param>
5147
            <param name="omitRootObject">Omits writing the root object.</param>
5148
            <returns>A JSON string of the XmlNode.</returns>
5149
        </member>
5150
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
5151
            <summary>
5152
            Deserializes the XmlNode from a JSON string.
5153
            </summary>
5154
            <param name="value">The JSON string.</param>
5155
            <returns>The deserialized XmlNode</returns>
5156
        </member>
5157
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
5158
            <summary>
5159
            Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
5160
            </summary>
5161
            <param name="value">The JSON string.</param>
5162
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5163
            <returns>The deserialized XmlNode</returns>
5164
        </member>
5165
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
5166
            <summary>
5167
            Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
5168
            and writes a .NET array attribute for collections.
5169
            </summary>
5170
            <param name="value">The JSON string.</param>
5171
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5172
            <param name="writeArrayAttribute">
5173
            A flag to indicate whether to write the Json.NET array attribute.
5174
            This attribute helps preserve arrays when converting the written XML back to JSON.
5175
            </param>
5176
            <returns>The deserialized XmlNode</returns>
5177
        </member>
5178
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
5179
            <summary>
5180
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
5181
            </summary>
5182
            <param name="node">The node to convert to JSON.</param>
5183
            <returns>A JSON string of the XNode.</returns>
5184
        </member>
5185
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
5186
            <summary>
5187
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting.
5188
            </summary>
5189
            <param name="node">The node to convert to JSON.</param>
5190
            <param name="formatting">Indicates how the output is formatted.</param>
5191
            <returns>A JSON string of the XNode.</returns>
5192
        </member>
5193
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
5194
            <summary>
5195
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
5196
            </summary>
5197
            <param name="node">The node to serialize.</param>
5198
            <param name="formatting">Indicates how the output is formatted.</param>
5199
            <param name="omitRootObject">Omits writing the root object.</param>
5200
            <returns>A JSON string of the XNode.</returns>
5201
        </member>
5202
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
5203
            <summary>
5204
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.
5205
            </summary>
5206
            <param name="value">The JSON string.</param>
5207
            <returns>The deserialized XNode</returns>
5208
        </member>
5209
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
5210
            <summary>
5211
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
5212
            </summary>
5213
            <param name="value">The JSON string.</param>
5214
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5215
            <returns>The deserialized XNode</returns>
5216
        </member>
5217
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
5218
            <summary>
5219
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
5220
            and writes a .NET array attribute for collections.
5221
            </summary>
5222
            <param name="value">The JSON string.</param>
5223
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5224
            <param name="writeArrayAttribute">
5225
            A flag to indicate whether to write the Json.NET array attribute.
5226
            This attribute helps preserve arrays when converting the written XML back to JSON.
5227
            </param>
5228
            <returns>The deserialized XNode</returns>
5229
        </member>
5230
        <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
5231
            <summary>
5232
            Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5233
            Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
5234
            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"/>.
5235
            To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
5236
            <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
5237
            </summary>
5238
        </member>
5239
        <member name="T:Newtonsoft.Json.JsonSerializationException">
5240
            <summary>
5241
            The exception thrown when an error occurs during Json serialization or deserialization.
5242
            </summary>
5243
        </member>
5244
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
5245
            <summary>
5246
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
5247
            </summary>
5248
        </member>
5249
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
5250
            <summary>
5251
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
5252
            with a specified error message.
5253
            </summary>
5254
            <param name="message">The error message that explains the reason for the exception.</param>
5255
        </member>
5256
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
5257
            <summary>
5258
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
5259
            with a specified error message and a reference to the inner exception that is the cause of this exception.
5260
            </summary>
5261
            <param name="message">The error message that explains the reason for the exception.</param>
5262
            <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>
5263
        </member>
5264
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5265
            <summary>
5266
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
5267
            </summary>
5268
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
5269
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
5270
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
5271
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
5272
        </member>
5273
        <member name="T:Newtonsoft.Json.JsonSerializer">
5274
            <summary>
5275
            Serializes and deserializes objects into and from the JSON format.
5276
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
5277
            </summary>
5278
        </member>
5279
        <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
5280
            <summary>
5281
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
5282
            </summary>
5283
        </member>
5284
        <member name="M:Newtonsoft.Json.JsonSerializer.Create">
5285
            <summary>
5286
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5287
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5288
            </summary>
5289
            <returns>
5290
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5291
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5292
            </returns>
5293
        </member>
5294
        <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
5295
            <summary>
5296
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5297
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5298
            </summary>
5299
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
5300
            <returns>
5301
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5302
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5303
            </returns>
5304
        </member>
5305
        <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
5306
            <summary>
5307
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5308
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5309
            </summary>
5310
            <returns>
5311
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
5312
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5313
            </returns>
5314
        </member>
5315
        <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
5316
            <summary>
5317
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5318
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5319
            </summary>
5320
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
5321
            <returns>
5322
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5323
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5324
            </returns>
5325
        </member>
5326
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
5327
            <summary>
5328
            Populates the JSON values onto the target object.
5329
            </summary>
5330
            <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
5331
            <param name="target">The target object to populate values onto.</param>
5332
        </member>
5333
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
5334
            <summary>
5335
            Populates the JSON values onto the target object.
5336
            </summary>
5337
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
5338
            <param name="target">The target object to populate values onto.</param>
5339
        </member>
5340
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
5341
            <summary>
5342
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
5343
            </summary>
5344
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
5345
            <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
5346
        </member>
5347
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
5348
            <summary>
5349
            Deserializes the Json structure contained by the specified <see cref="T:System.IO.StringReader"/>
5350
            into an instance of the specified type.
5351
            </summary>
5352
            <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
5353
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
5354
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
5355
        </member>
5356
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
5357
            <summary>
5358
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
5359
            into an instance of the specified type.
5360
            </summary>
5361
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
5362
            <typeparam name="T">The type of the object to deserialize.</typeparam>
5363
            <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
5364
        </member>
5365
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
5366
            <summary>
5367
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
5368
            into an instance of the specified type.
5369
            </summary>
5370
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
5371
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
5372
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
5373
        </member>
5374
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
5375
            <summary>
5376
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5377
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
5378
            </summary>
5379
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
5380
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5381
        </member>
5382
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
5383
            <summary>
5384
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5385
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
5386
            </summary>
5387
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
5388
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5389
            <param name="objectType">
5390
            The type of the value being serialized.
5391
            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.
5392
            Specifing the type is optional.
5393
            </param>
5394
        </member>
5395
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
5396
            <summary>
5397
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5398
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
5399
            </summary>
5400
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
5401
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5402
            <param name="objectType">
5403
            The type of the value being serialized.
5404
            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.
5405
            Specifing the type is optional.
5406
            </param>
5407
        </member>
5408
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
5409
            <summary>
5410
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
5411
            to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>. 
5412
            </summary>
5413
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
5414
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5415
        </member>
5416
        <member name="E:Newtonsoft.Json.JsonSerializer.Error">
5417
            <summary>
5418
            Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
5419
            </summary>
5420
        </member>
5421
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
5422
            <summary>
5423
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
5424
            </summary>
5425
        </member>
5426
        <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
5427
            <summary>
5428
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
5429
            </summary>
5430
        </member>
5431
        <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
5432
            <summary>
5433
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
5434
            </summary>
5435
            <value>The trace writer.</value>
5436
        </member>
5437
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
5438
            <summary>
5439
            Gets or sets how type name writing and reading is handled by the serializer.
5440
            </summary>
5441
        </member>
5442
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
5443
            <summary>
5444
            Gets or sets how a type name assembly is written and resolved by the serializer.
5445
            </summary>
5446
            <value>The type name assembly format.</value>
5447
        </member>
5448
        <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
5449
            <summary>
5450
            Gets or sets how object references are preserved by the serializer.
5451
            </summary>
5452
        </member>
5453
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
5454
            <summary>
5455
            Get or set how reference loops (e.g. a class referencing itself) is handled.
5456
            </summary>
5457
        </member>
5458
        <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
5459
            <summary>
5460
            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
5461
            </summary>
5462
        </member>
5463
        <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
5464
            <summary>
5465
            Get or set how null values are handled during serialization and deserialization.
5466
            </summary>
5467
        </member>
5468
        <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
5469
            <summary>
5470
            Get or set how null default are handled during serialization and deserialization.
5471
            </summary>
5472
        </member>
5473
        <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
5474
            <summary>
5475
            Gets or sets how objects are created during deserialization.
5476
            </summary>
5477
            <value>The object creation handling.</value>
5478
        </member>
5479
        <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
5480
            <summary>
5481
            Gets or sets how constructors are used during deserialization.
5482
            </summary>
5483
            <value>The constructor handling.</value>
5484
        </member>
5485
        <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">
5486
            <summary>
5487
            Gets or sets how metadata properties are used during deserialization.
5488
            </summary>
5489
            <value>The metadata properties handling.</value>
5490
        </member>
5491
        <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
5492
            <summary>
5493
            Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
5494
            </summary>
5495
            <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
5496
        </member>
5497
        <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
5498
            <summary>
5499
            Gets or sets the contract resolver used by the serializer when
5500
            serializing .NET objects to JSON and vice versa.
5501
            </summary>
5502
        </member>
5503
        <member name="P:Newtonsoft.Json.JsonSerializer.Context">
5504
            <summary>
5505
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
5506
            </summary>
5507
            <value>The context.</value>
5508
        </member>
5509
        <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
5510
            <summary>
5511
            Indicates how JSON text output is formatted.
5512
            </summary>
5513
        </member>
5514
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
5515
            <summary>
5516
            Get or set how dates are written to JSON text.
5517
            </summary>
5518
        </member>
5519
        <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
5520
            <summary>
5521
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
5522
            </summary>
5523
        </member>
5524
        <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
5525
            <summary>
5526
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
5527
            </summary>
5528
        </member>
5529
        <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
5530
            <summary>
5531
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
5532
            </summary>
5533
        </member>
5534
        <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
5535
            <summary>
5536
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
5537
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
5538
            are written as JSON text.
5539
            </summary>
5540
        </member>
5541
        <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
5542
            <summary>
5543
            Get or set how strings are escaped when writing JSON text.
5544
            </summary>
5545
        </member>
5546
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
5547
            <summary>
5548
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
5549
            </summary>
5550
        </member>
5551
        <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
5552
            <summary>
5553
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
5554
            </summary>
5555
        </member>
5556
        <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
5557
            <summary>
5558
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
5559
            </summary>
5560
        </member>
5561
        <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
5562
            <summary>
5563
            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
5564
            </summary>
5565
            <value>
5566
            	<c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
5567
            </value>
5568
        </member>
5569
        <member name="T:Newtonsoft.Json.Linq.Extensions">
5570
            <summary>
5571
            Contains the LINQ to JSON extension methods.
5572
            </summary>
5573
        </member>
5574
        <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
5575
            <summary>
5576
            Returns a collection of tokens that contains the ancestors of every token in the source collection.
5577
            </summary>
5578
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
5579
            <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>
5580
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the ancestors of every token in the source collection.</returns>
5581
        </member>
5582
        <member name="M:Newtonsoft.Json.Linq.Extensions.AncestorsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
5583
            <summary>
5584
            Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection.
5585
            </summary>
5586
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
5587
            <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>
5588
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains every token in the source collection, the ancestors of every token in the source collection.</returns>
5589
        </member>
5590
        <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
5591
            <summary>
5592
            Returns a collection of tokens that contains the descendants of every token in the source collection.
5593
            </summary>
5594
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
5595
            <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>
5596
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the descendants of every token in the source collection.</returns>
5597
        </member>
5598
        <member name="M:Newtonsoft.Json.Linq.Extensions.DescendantsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
5599
            <summary>
5600
            Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection.
5601
            </summary>
5602
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
5603
            <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>
5604
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains every token in the source collection, and the descendants of every token in the source collection.</returns>
5605
        </member>
5606
        <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
5607
            <summary>
5608
            Returns a collection of child properties of every object in the source collection.
5609
            </summary>
5610
            <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>
5611
            <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>
5612
        </member>
5613
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
5614
            <summary>
5615
            Returns a collection of child values of every object in the source collection with the given key.
5616
            </summary>
5617
            <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>
5618
            <param name="key">The token key.</param>
5619
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every token in the source collection with the given key.</returns>
5620
        </member>
5621
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5622
            <summary>
5623
            Returns a collection of child values of every object in the source collection.
5624
            </summary>
5625
            <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>
5626
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every token in the source collection.</returns>
5627
        </member>
5628
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
5629
            <summary>
5630
            Returns a collection of converted child values of every object in the source collection with the given key.
5631
            </summary>
5632
            <typeparam name="U">The type to convert the values to.</typeparam>
5633
            <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>
5634
            <param name="key">The token key.</param>
5635
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection with the given key.</returns>
5636
        </member>
5637
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5638
            <summary>
5639
            Returns a collection of converted child values of every object in the source collection.
5640
            </summary>
5641
            <typeparam name="U">The type to convert the values to.</typeparam>
5642
            <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>
5643
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
5644
        </member>
5645
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5646
            <summary>
5647
            Converts the value.
5648
            </summary>
5649
            <typeparam name="U">The type to convert the value to.</typeparam>
5650
            <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>
5651
            <returns>A converted value.</returns>
5652
        </member>
5653
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
5654
            <summary>
5655
            Converts the value.
5656
            </summary>
5657
            <typeparam name="T">The source collection type.</typeparam>
5658
            <typeparam name="U">The type to convert the value to.</typeparam>
5659
            <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>
5660
            <returns>A converted value.</returns>
5661
        </member>
5662
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
5663
            <summary>
5664
            Returns a collection of child tokens of every array in the source collection.
5665
            </summary>
5666
            <typeparam name="T">The source collection type.</typeparam>
5667
            <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>
5668
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every token in the source collection.</returns>
5669
        </member>
5670
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
5671
            <summary>
5672
            Returns a collection of converted child tokens of every array in the source collection.
5673
            </summary>
5674
            <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>
5675
            <typeparam name="U">The type to convert the values to.</typeparam>
5676
            <typeparam name="T">The source collection type.</typeparam>
5677
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
5678
        </member>
5679
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5680
            <summary>
5681
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
5682
            </summary>
5683
            <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>
5684
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
5685
        </member>
5686
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
5687
            <summary>
5688
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
5689
            </summary>
5690
            <typeparam name="T">The source collection type.</typeparam>
5691
            <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>
5692
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
5693
        </member>
5694
        <member name="T:Newtonsoft.Json.Linq.JConstructor">
5695
            <summary>
5696
            Represents a JSON constructor.
5697
            </summary>
5698
        </member>
5699
        <member name="T:Newtonsoft.Json.Linq.JContainer">
5700
            <summary>
5701
            Represents a token that can contain other tokens.
5702
            </summary>
5703
        </member>
5704
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
5705
            <summary>
5706
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
5707
            </summary>
5708
            <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
5709
        </member>
5710
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
5711
            <summary>
5712
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
5713
            </summary>
5714
            <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
5715
        </member>
5716
        <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
5717
            <summary>
5718
            Returns a collection of the child tokens of this token, in document order.
5719
            </summary>
5720
            <returns>
5721
            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.
5722
            </returns>
5723
        </member>
5724
        <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
5725
            <summary>
5726
            Returns a collection of the child values of this token, in document order.
5727
            </summary>
5728
            <typeparam name="T">The type to convert the values to.</typeparam>
5729
            <returns>
5730
            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.
5731
            </returns>
5732
        </member>
5733
        <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
5734
            <summary>
5735
            Returns a collection of the descendant tokens for this token in document order.
5736
            </summary>
5737
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
5738
        </member>
5739
        <member name="M:Newtonsoft.Json.Linq.JContainer.DescendantsAndSelf">
5740
            <summary>
5741
            Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
5742
            </summary>
5743
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing this token, and all the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
5744
        </member>
5745
        <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
5746
            <summary>
5747
            Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5748
            </summary>
5749
            <param name="content">The content to be added.</param>
5750
        </member>
5751
        <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
5752
            <summary>
5753
            Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5754
            </summary>
5755
            <param name="content">The content to be added.</param>
5756
        </member>
5757
        <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
5758
            <summary>
5759
            Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5760
            </summary>
5761
            <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
5762
        </member>
5763
        <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
5764
            <summary>
5765
            Replaces the children nodes of this token with the specified content.
5766
            </summary>
5767
            <param name="content">The content.</param>
5768
        </member>
5769
        <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
5770
            <summary>
5771
            Removes the child nodes from this token.
5772
            </summary>
5773
        </member>
5774
        <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">
5775
            <summary>
5776
            Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5777
            </summary>
5778
            <param name="content">The content to be merged.</param>
5779
        </member>
5780
        <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">
5781
            <summary>
5782
            Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.
5783
            </summary>
5784
            <param name="content">The content to be merged.</param>
5785
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>
5786
        </member>
5787
        <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
5788
            <summary>
5789
            Occurs when the list changes or an item in the list changes.
5790
            </summary>
5791
        </member>
5792
        <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
5793
            <summary>
5794
            Occurs before an item is added to the collection.
5795
            </summary>
5796
        </member>
5797
        <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
5798
            <summary>
5799
            Gets the container's children tokens.
5800
            </summary>
5801
            <value>The container's children tokens.</value>
5802
        </member>
5803
        <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
5804
            <summary>
5805
            Gets a value indicating whether this token has child tokens.
5806
            </summary>
5807
            <value>
5808
            	<c>true</c> if this token has child values; otherwise, <c>false</c>.
5809
            </value>
5810
        </member>
5811
        <member name="P:Newtonsoft.Json.Linq.JContainer.First">
5812
            <summary>
5813
            Get the first child token of this token.
5814
            </summary>
5815
            <value>
5816
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5817
            </value>
5818
        </member>
5819
        <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
5820
            <summary>
5821
            Get the last child token of this token.
5822
            </summary>
5823
            <value>
5824
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5825
            </value>
5826
        </member>
5827
        <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
5828
            <summary>
5829
            Gets the count of child JSON tokens.
5830
            </summary>
5831
            <value>The count of child JSON tokens</value>
5832
        </member>
5833
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
5834
            <summary>
5835
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
5836
            </summary>
5837
        </member>
5838
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
5839
            <summary>
5840
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
5841
            </summary>
5842
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
5843
        </member>
5844
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
5845
            <summary>
5846
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
5847
            </summary>
5848
            <param name="name">The constructor name.</param>
5849
            <param name="content">The contents of the constructor.</param>
5850
        </member>
5851
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
5852
            <summary>
5853
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
5854
            </summary>
5855
            <param name="name">The constructor name.</param>
5856
            <param name="content">The contents of the constructor.</param>
5857
        </member>
5858
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
5859
            <summary>
5860
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
5861
            </summary>
5862
            <param name="name">The constructor name.</param>
5863
        </member>
5864
        <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5865
            <summary>
5866
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5867
            </summary>
5868
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5869
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5870
        </member>
5871
        <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
5872
            <summary>
5873
            Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5874
            </summary>
5875
            <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>
5876
            <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>
5877
        </member>
5878
        <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
5879
            <summary>
5880
            Gets the container's children tokens.
5881
            </summary>
5882
            <value>The container's children tokens.</value>
5883
        </member>
5884
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
5885
            <summary>
5886
            Gets or sets the name of this constructor.
5887
            </summary>
5888
            <value>The constructor name.</value>
5889
        </member>
5890
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
5891
            <summary>
5892
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5893
            </summary>
5894
            <value>The type.</value>
5895
        </member>
5896
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
5897
            <summary>
5898
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5899
            </summary>
5900
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
5901
        </member>
5902
        <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
5903
            <summary>
5904
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
5905
            </summary>
5906
            <typeparam name="T">The type of token</typeparam>
5907
        </member>
5908
        <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
5909
            <summary>
5910
            An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
5911
            </summary>
5912
        </member>
5913
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
5914
            <summary>
5915
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
5916
            </summary>
5917
            <param name="enumerable">The enumerable.</param>
5918
        </member>
5919
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
5920
            <summary>
5921
            Returns an enumerator that iterates through the collection.
5922
            </summary>
5923
            <returns>
5924
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
5925
            </returns>
5926
        </member>
5927
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator">
5928
            <summary>
5929
            Returns an enumerator that iterates through a collection.
5930
            </summary>
5931
            <returns>
5932
            An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
5933
            </returns>
5934
        </member>
5935
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(Newtonsoft.Json.Linq.JEnumerable{`0})">
5936
            <summary>
5937
            Determines whether the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance.
5938
            </summary>
5939
            <param name="other">The <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> to compare with this instance.</param>
5940
            <returns>
5941
            	<c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance; otherwise, <c>false</c>.
5942
            </returns>
5943
        </member>
5944
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
5945
            <summary>
5946
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
5947
            </summary>
5948
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
5949
            <returns>
5950
            	<c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
5951
            </returns>
5952
        </member>
5953
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
5954
            <summary>
5955
            Returns a hash code for this instance.
5956
            </summary>
5957
            <returns>
5958
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
5959
            </returns>
5960
        </member>
5961
        <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
5962
            <summary>
5963
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
5964
            </summary>
5965
            <value></value>
5966
        </member>
5967
        <member name="T:Newtonsoft.Json.Linq.JObject">
5968
            <summary>
5969
            Represents a JSON object.
5970
            </summary>
5971
            <example>
5972
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
5973
            </example>
5974
        </member>
5975
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
5976
            <summary>
5977
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
5978
            </summary>
5979
        </member>
5980
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
5981
            <summary>
5982
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
5983
            </summary>
5984
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
5985
        </member>
5986
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
5987
            <summary>
5988
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
5989
            </summary>
5990
            <param name="content">The contents of the object.</param>
5991
        </member>
5992
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
5993
            <summary>
5994
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
5995
            </summary>
5996
            <param name="content">The contents of the object.</param>
5997
        </member>
5998
        <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
5999
            <summary>
6000
            Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.
6001
            </summary>
6002
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns>
6003
        </member>
6004
        <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
6005
            <summary>
6006
            Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
6007
            </summary>
6008
            <param name="name">The property name.</param>
6009
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns>
6010
        </member>
6011
        <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
6012
            <summary>
6013
            Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.
6014
            </summary>
6015
            <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns>
6016
        </member>
6017
        <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
6018
            <summary>
6019
            Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6020
            </summary>
6021
            <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>
6022
            <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>
6023
        </member>
6024
        <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
6025
            <summary>
6026
            Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
6027
            </summary>
6028
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6029
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
6030
            <example>
6031
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text"/>
6032
            </example>
6033
        </member>
6034
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
6035
            <summary>
6036
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
6037
            </summary>
6038
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6039
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
6040
        </member>
6041
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
6042
            <summary>
6043
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
6044
            </summary>
6045
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6046
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
6047
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
6048
        </member>
6049
        <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6050
            <summary>
6051
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6052
            </summary>
6053
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6054
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6055
        </member>
6056
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
6057
            <summary>
6058
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6059
            </summary>
6060
            <param name="propertyName">Name of the property.</param>
6061
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
6062
        </member>
6063
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
6064
            <summary>
6065
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6066
            The exact property name will be searched for first and if no matching property is found then
6067
            the <see cref="T:System.StringComparison"/> will be used to match a property.
6068
            </summary>
6069
            <param name="propertyName">Name of the property.</param>
6070
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
6071
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
6072
        </member>
6073
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
6074
            <summary>
6075
            Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6076
            The exact property name will be searched for first and if no matching property is found then
6077
            the <see cref="T:System.StringComparison"/> will be used to match a property.
6078
            </summary>
6079
            <param name="propertyName">Name of the property.</param>
6080
            <param name="value">The value.</param>
6081
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
6082
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
6083
        </member>
6084
        <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
6085
            <summary>
6086
            Adds the specified property name.
6087
            </summary>
6088
            <param name="propertyName">Name of the property.</param>
6089
            <param name="value">The value.</param>
6090
        </member>
6091
        <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
6092
            <summary>
6093
            Removes the property with the specified name.
6094
            </summary>
6095
            <param name="propertyName">Name of the property.</param>
6096
            <returns>true if item was successfully removed; otherwise, false.</returns>
6097
        </member>
6098
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
6099
            <summary>
6100
            Tries the get value.
6101
            </summary>
6102
            <param name="propertyName">Name of the property.</param>
6103
            <param name="value">The value.</param>
6104
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
6105
        </member>
6106
        <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
6107
            <summary>
6108
            Returns an enumerator that iterates through the collection.
6109
            </summary>
6110
            <returns>
6111
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
6112
            </returns>
6113
        </member>
6114
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
6115
            <summary>
6116
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
6117
            </summary>
6118
            <param name="propertyName">Name of the property.</param>
6119
        </member>
6120
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">
6121
            <summary>
6122
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments.
6123
            </summary>
6124
            <param name="propertyName">Name of the property.</param>
6125
        </member>
6126
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
6127
            <summary>
6128
            Returns the properties for this instance of a component.
6129
            </summary>
6130
            <returns>
6131
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance.
6132
            </returns>
6133
        </member>
6134
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
6135
            <summary>
6136
            Returns the properties for this instance of a component using the attribute array as a filter.
6137
            </summary>
6138
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
6139
            <returns>
6140
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.
6141
            </returns>
6142
        </member>
6143
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
6144
            <summary>
6145
            Returns a collection of custom attributes for this instance of a component.
6146
            </summary>
6147
            <returns>
6148
            An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object.
6149
            </returns>
6150
        </member>
6151
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
6152
            <summary>
6153
            Returns the class name of this instance of a component.
6154
            </summary>
6155
            <returns>
6156
            The class name of the object, or null if the class does not have a name.
6157
            </returns>
6158
        </member>
6159
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
6160
            <summary>
6161
            Returns the name of this instance of a component.
6162
            </summary>
6163
            <returns>
6164
            The name of the object, or null if the object does not have a name.
6165
            </returns>
6166
        </member>
6167
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
6168
            <summary>
6169
            Returns a type converter for this instance of a component.
6170
            </summary>
6171
            <returns>
6172
            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.
6173
            </returns>
6174
        </member>
6175
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
6176
            <summary>
6177
            Returns the default event for this instance of a component.
6178
            </summary>
6179
            <returns>
6180
            An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events.
6181
            </returns>
6182
        </member>
6183
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
6184
            <summary>
6185
            Returns the default property for this instance of a component.
6186
            </summary>
6187
            <returns>
6188
            A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties.
6189
            </returns>
6190
        </member>
6191
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
6192
            <summary>
6193
            Returns an editor of the specified type for this instance of a component.
6194
            </summary>
6195
            <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param>
6196
            <returns>
6197
            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.
6198
            </returns>
6199
        </member>
6200
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
6201
            <summary>
6202
            Returns the events for this instance of a component using the specified attribute array as a filter.
6203
            </summary>
6204
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
6205
            <returns>
6206
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance.
6207
            </returns>
6208
        </member>
6209
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
6210
            <summary>
6211
            Returns the events for this instance of a component.
6212
            </summary>
6213
            <returns>
6214
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance.
6215
            </returns>
6216
        </member>
6217
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
6218
            <summary>
6219
            Returns an object that contains the property described by the specified property descriptor.
6220
            </summary>
6221
            <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param>
6222
            <returns>
6223
            An <see cref="T:System.Object"/> that represents the owner of the specified property.
6224
            </returns>
6225
        </member>
6226
        <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
6227
            <summary>
6228
            Gets the container's children tokens.
6229
            </summary>
6230
            <value>The container's children tokens.</value>
6231
        </member>
6232
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
6233
            <summary>
6234
            Occurs when a property value changes.
6235
            </summary>
6236
        </member>
6237
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">
6238
            <summary>
6239
            Occurs when a property value is changing.
6240
            </summary>
6241
        </member>
6242
        <member name="P:Newtonsoft.Json.Linq.JObject.Type">
6243
            <summary>
6244
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6245
            </summary>
6246
            <value>The type.</value>
6247
        </member>
6248
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
6249
            <summary>
6250
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6251
            </summary>
6252
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6253
        </member>
6254
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
6255
            <summary>
6256
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6257
            </summary>
6258
            <value></value>
6259
        </member>
6260
        <member name="T:Newtonsoft.Json.Linq.JArray">
6261
            <summary>
6262
            Represents a JSON array.
6263
            </summary>
6264
            <example>
6265
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
6266
            </example>
6267
        </member>
6268
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
6269
            <summary>
6270
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
6271
            </summary>
6272
        </member>
6273
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
6274
            <summary>
6275
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
6276
            </summary>
6277
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
6278
        </member>
6279
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
6280
            <summary>
6281
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
6282
            </summary>
6283
            <param name="content">The contents of the array.</param>
6284
        </member>
6285
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
6286
            <summary>
6287
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
6288
            </summary>
6289
            <param name="content">The contents of the array.</param>
6290
        </member>
6291
        <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
6292
            <summary>
6293
            Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6294
            </summary>
6295
            <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>
6296
            <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>
6297
        </member>
6298
        <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
6299
            <summary>
6300
            Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
6301
            </summary>
6302
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6303
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
6304
            <example>
6305
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text"/>
6306
            </example>
6307
        </member>
6308
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
6309
            <summary>
6310
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
6311
            </summary>
6312
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6313
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
6314
        </member>
6315
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
6316
            <summary>
6317
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
6318
            </summary>
6319
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6320
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
6321
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
6322
        </member>
6323
        <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6324
            <summary>
6325
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6326
            </summary>
6327
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6328
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6329
        </member>
6330
        <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
6331
            <summary>
6332
            Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
6333
            </summary>
6334
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
6335
            <returns>
6336
            The index of <paramref name="item"/> if found in the list; otherwise, -1.
6337
            </returns>
6338
        </member>
6339
        <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
6340
            <summary>
6341
            Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.
6342
            </summary>
6343
            <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
6344
            <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
6345
            <exception cref="T:System.ArgumentOutOfRangeException">
6346
            	<paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
6347
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
6348
        </member>
6349
        <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
6350
            <summary>
6351
            Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
6352
            </summary>
6353
            <param name="index">The zero-based index of the item to remove.</param>
6354
            <exception cref="T:System.ArgumentOutOfRangeException">
6355
            	<paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
6356
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
6357
        </member>
6358
        <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">
6359
            <summary>
6360
            Returns an enumerator that iterates through the collection.
6361
            </summary>
6362
            <returns>
6363
            A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.
6364
            </returns>
6365
        </member>
6366
        <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
6367
            <summary>
6368
            Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
6369
            </summary>
6370
            <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
6371
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
6372
        </member>
6373
        <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
6374
            <summary>
6375
            Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
6376
            </summary>
6377
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
6378
        </member>
6379
        <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
6380
            <summary>
6381
            Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
6382
            </summary>
6383
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
6384
            <returns>
6385
            true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
6386
            </returns>
6387
        </member>
6388
        <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
6389
            <summary>
6390
            Copies to.
6391
            </summary>
6392
            <param name="array">The array.</param>
6393
            <param name="arrayIndex">Index of the array.</param>
6394
        </member>
6395
        <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
6396
            <summary>
6397
            Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
6398
            </summary>
6399
            <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
6400
            <returns>
6401
            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"/>.
6402
            </returns>
6403
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
6404
        </member>
6405
        <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
6406
            <summary>
6407
            Gets the container's children tokens.
6408
            </summary>
6409
            <value>The container's children tokens.</value>
6410
        </member>
6411
        <member name="P:Newtonsoft.Json.Linq.JArray.Type">
6412
            <summary>
6413
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6414
            </summary>
6415
            <value>The type.</value>
6416
        </member>
6417
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
6418
            <summary>
6419
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6420
            </summary>
6421
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6422
        </member>
6423
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
6424
            <summary>
6425
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
6426
            </summary>
6427
            <value></value>
6428
        </member>
6429
        <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
6430
            <summary>
6431
            Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.
6432
            </summary>
6433
            <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</returns>
6434
        </member>
6435
        <member name="T:Newtonsoft.Json.Linq.JTokenReader">
6436
            <summary>
6437
            Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
6438
            </summary>
6439
        </member>
6440
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
6441
            <summary>
6442
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
6443
            </summary>
6444
            <param name="token">The token to read from.</param>
6445
        </member>
6446
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">
6447
            <summary>
6448
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
6449
            </summary>
6450
            <returns>
6451
            A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
6452
            </returns>
6453
        </member>
6454
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">
6455
            <summary>
6456
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6457
            </summary>
6458
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6459
        </member>
6460
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
6461
            <summary>
6462
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6463
            </summary>
6464
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6465
        </member>
6466
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString">
6467
            <summary>
6468
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
6469
            </summary>
6470
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6471
        </member>
6472
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime">
6473
            <summary>
6474
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6475
            </summary>
6476
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6477
        </member>
6478
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">
6479
            <summary>
6480
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6481
            </summary>
6482
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6483
        </member>
6484
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
6485
            <summary>
6486
            Reads the next JSON token from the stream.
6487
            </summary>
6488
            <returns>
6489
            true if the next token was read successfully; false if there are no more tokens to read.
6490
            </returns>
6491
        </member>
6492
        <member name="P:Newtonsoft.Json.Linq.JTokenReader.CurrentToken">
6493
            <summary>
6494
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the reader's current position.
6495
            </summary>
6496
        </member>
6497
        <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">
6498
            <summary>
6499
            Gets the path of the current JSON token. 
6500
            </summary>
6501
        </member>
6502
        <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
6503
            <summary>
6504
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
6505
            </summary>
6506
        </member>
6507
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
6508
            <summary>
6509
            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"/>.
6510
            </summary>
6511
            <param name="container">The container being written to.</param>
6512
        </member>
6513
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
6514
            <summary>
6515
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
6516
            </summary>
6517
        </member>
6518
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
6519
            <summary>
6520
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
6521
            </summary>
6522
        </member>
6523
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
6524
            <summary>
6525
            Closes this stream and the underlying stream.
6526
            </summary>
6527
        </member>
6528
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
6529
            <summary>
6530
            Writes the beginning of a Json object.
6531
            </summary>
6532
        </member>
6533
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
6534
            <summary>
6535
            Writes the beginning of a Json array.
6536
            </summary>
6537
        </member>
6538
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
6539
            <summary>
6540
            Writes the start of a constructor with the given name.
6541
            </summary>
6542
            <param name="name">The name of the constructor.</param>
6543
        </member>
6544
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
6545
            <summary>
6546
            Writes the end.
6547
            </summary>
6548
            <param name="token">The token.</param>
6549
        </member>
6550
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
6551
            <summary>
6552
            Writes the property name of a name/value pair on a Json object.
6553
            </summary>
6554
            <param name="name">The name of the property.</param>
6555
        </member>
6556
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
6557
            <summary>
6558
            Writes a <see cref="T:System.Object"/> value.
6559
            An error will raised if the value cannot be written as a single JSON token.
6560
            </summary>
6561
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
6562
        </member>
6563
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
6564
            <summary>
6565
            Writes a null value.
6566
            </summary>
6567
        </member>
6568
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
6569
            <summary>
6570
            Writes an undefined value.
6571
            </summary>
6572
        </member>
6573
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
6574
            <summary>
6575
            Writes raw JSON.
6576
            </summary>
6577
            <param name="json">The raw JSON to write.</param>
6578
        </member>
6579
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
6580
            <summary>
6581
            Writes out a comment <code>/*...*/</code> containing the specified text.
6582
            </summary>
6583
            <param name="text">Text to place inside the comment.</param>
6584
        </member>
6585
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
6586
            <summary>
6587
            Writes a <see cref="T:System.String"/> value.
6588
            </summary>
6589
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
6590
        </member>
6591
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
6592
            <summary>
6593
            Writes a <see cref="T:System.Int32"/> value.
6594
            </summary>
6595
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
6596
        </member>
6597
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
6598
            <summary>
6599
            Writes a <see cref="T:System.UInt32"/> value.
6600
            </summary>
6601
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
6602
        </member>
6603
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
6604
            <summary>
6605
            Writes a <see cref="T:System.Int64"/> value.
6606
            </summary>
6607
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
6608
        </member>
6609
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
6610
            <summary>
6611
            Writes a <see cref="T:System.UInt64"/> value.
6612
            </summary>
6613
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
6614
        </member>
6615
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
6616
            <summary>
6617
            Writes a <see cref="T:System.Single"/> value.
6618
            </summary>
6619
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
6620
        </member>
6621
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
6622
            <summary>
6623
            Writes a <see cref="T:System.Double"/> value.
6624
            </summary>
6625
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
6626
        </member>
6627
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
6628
            <summary>
6629
            Writes a <see cref="T:System.Boolean"/> value.
6630
            </summary>
6631
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
6632
        </member>
6633
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
6634
            <summary>
6635
            Writes a <see cref="T:System.Int16"/> value.
6636
            </summary>
6637
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
6638
        </member>
6639
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
6640
            <summary>
6641
            Writes a <see cref="T:System.UInt16"/> value.
6642
            </summary>
6643
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
6644
        </member>
6645
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
6646
            <summary>
6647
            Writes a <see cref="T:System.Char"/> value.
6648
            </summary>
6649
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
6650
        </member>
6651
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
6652
            <summary>
6653
            Writes a <see cref="T:System.Byte"/> value.
6654
            </summary>
6655
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
6656
        </member>
6657
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
6658
            <summary>
6659
            Writes a <see cref="T:System.SByte"/> value.
6660
            </summary>
6661
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
6662
        </member>
6663
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
6664
            <summary>
6665
            Writes a <see cref="T:System.Decimal"/> value.
6666
            </summary>
6667
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
6668
        </member>
6669
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
6670
            <summary>
6671
            Writes a <see cref="T:System.DateTime"/> value.
6672
            </summary>
6673
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
6674
        </member>
6675
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">
6676
            <summary>
6677
            Writes a <see cref="T:System.DateTimeOffset"/> value.
6678
            </summary>
6679
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
6680
        </member>
6681
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
6682
            <summary>
6683
            Writes a <see cref="T:System.Byte"/>[] value.
6684
            </summary>
6685
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
6686
        </member>
6687
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
6688
            <summary>
6689
            Writes a <see cref="T:System.TimeSpan"/> value.
6690
            </summary>
6691
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
6692
        </member>
6693
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
6694
            <summary>
6695
            Writes a <see cref="T:System.Guid"/> value.
6696
            </summary>
6697
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
6698
        </member>
6699
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
6700
            <summary>
6701
            Writes a <see cref="T:System.Uri"/> value.
6702
            </summary>
6703
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
6704
        </member>
6705
        <member name="P:Newtonsoft.Json.Linq.JTokenWriter.CurrentToken">
6706
            <summary>
6707
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the writer's current position.
6708
            </summary>
6709
        </member>
6710
        <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
6711
            <summary>
6712
            Gets the token being writen.
6713
            </summary>
6714
            <value>The token being writen.</value>
6715
        </member>
6716
        <member name="T:Newtonsoft.Json.Linq.JProperty">
6717
            <summary>
6718
            Represents a JSON property.
6719
            </summary>
6720
        </member>
6721
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
6722
            <summary>
6723
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
6724
            </summary>
6725
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
6726
        </member>
6727
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
6728
            <summary>
6729
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
6730
            </summary>
6731
            <param name="name">The property name.</param>
6732
            <param name="content">The property content.</param>
6733
        </member>
6734
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
6735
            <summary>
6736
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
6737
            </summary>
6738
            <param name="name">The property name.</param>
6739
            <param name="content">The property content.</param>
6740
        </member>
6741
        <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6742
            <summary>
6743
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6744
            </summary>
6745
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6746
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6747
        </member>
6748
        <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
6749
            <summary>
6750
            Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6751
            </summary>
6752
            <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>
6753
            <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>
6754
        </member>
6755
        <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
6756
            <summary>
6757
            Gets the container's children tokens.
6758
            </summary>
6759
            <value>The container's children tokens.</value>
6760
        </member>
6761
        <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
6762
            <summary>
6763
            Gets the property name.
6764
            </summary>
6765
            <value>The property name.</value>
6766
        </member>
6767
        <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
6768
            <summary>
6769
            Gets or sets the property value.
6770
            </summary>
6771
            <value>The property value.</value>
6772
        </member>
6773
        <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
6774
            <summary>
6775
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6776
            </summary>
6777
            <value>The type.</value>
6778
        </member>
6779
        <member name="T:Newtonsoft.Json.Linq.JTokenType">
6780
            <summary>
6781
            Specifies the type of token.
6782
            </summary>
6783
        </member>
6784
        <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
6785
            <summary>
6786
            No token type has been set.
6787
            </summary>
6788
        </member>
6789
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
6790
            <summary>
6791
            A JSON object.
6792
            </summary>
6793
        </member>
6794
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
6795
            <summary>
6796
            A JSON array.
6797
            </summary>
6798
        </member>
6799
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
6800
            <summary>
6801
            A JSON constructor.
6802
            </summary>
6803
        </member>
6804
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
6805
            <summary>
6806
            A JSON object property.
6807
            </summary>
6808
        </member>
6809
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
6810
            <summary>
6811
            A comment.
6812
            </summary>
6813
        </member>
6814
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
6815
            <summary>
6816
            An integer value.
6817
            </summary>
6818
        </member>
6819
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
6820
            <summary>
6821
            A float value.
6822
            </summary>
6823
        </member>
6824
        <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
6825
            <summary>
6826
            A string value.
6827
            </summary>
6828
        </member>
6829
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
6830
            <summary>
6831
            A boolean value.
6832
            </summary>
6833
        </member>
6834
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
6835
            <summary>
6836
            A null value.
6837
            </summary>
6838
        </member>
6839
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
6840
            <summary>
6841
            An undefined value.
6842
            </summary>
6843
        </member>
6844
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
6845
            <summary>
6846
            A date value.
6847
            </summary>
6848
        </member>
6849
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
6850
            <summary>
6851
            A raw JSON value.
6852
            </summary>
6853
        </member>
6854
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
6855
            <summary>
6856
            A collection of bytes value.
6857
            </summary>
6858
        </member>
6859
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
6860
            <summary>
6861
            A Guid value.
6862
            </summary>
6863
        </member>
6864
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
6865
            <summary>
6866
            A Uri value.
6867
            </summary>
6868
        </member>
6869
        <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
6870
            <summary>
6871
            A TimeSpan value.
6872
            </summary>
6873
        </member>
6874
        <member name="T:Newtonsoft.Json.Schema.Extensions">
6875
            <summary>
6876
            Contains the JSON schema extension methods.
6877
            </summary>
6878
        </member>
6879
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
6880
            <summary>
6881
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
6882
            </summary>
6883
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6884
            <param name="schema">The schema to test with.</param>
6885
            <returns>
6886
            	<c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
6887
            </returns>
6888
        </member>
6889
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
6890
            <summary>
6891
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
6892
            </summary>
6893
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6894
            <param name="schema">The schema to test with.</param>
6895
            <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
6896
            <returns>
6897
            	<c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
6898
            </returns>
6899
        </member>
6900
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
6901
            <summary>
6902
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6903
            </summary>
6904
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6905
            <param name="schema">The schema to test with.</param>
6906
        </member>
6907
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
6908
            <summary>
6909
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6910
            </summary>
6911
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6912
            <param name="schema">The schema to test with.</param>
6913
            <param name="validationEventHandler">The validation event handler.</param>
6914
        </member>
6915
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
6916
            <summary>
6917
            Returns detailed information about the schema exception.
6918
            </summary>
6919
        </member>
6920
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
6921
            <summary>
6922
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
6923
            </summary>
6924
        </member>
6925
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
6926
            <summary>
6927
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
6928
            with a specified error message.
6929
            </summary>
6930
            <param name="message">The error message that explains the reason for the exception.</param>
6931
        </member>
6932
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
6933
            <summary>
6934
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
6935
            with a specified error message and a reference to the inner exception that is the cause of this exception.
6936
            </summary>
6937
            <param name="message">The error message that explains the reason for the exception.</param>
6938
            <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>
6939
        </member>
6940
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
6941
            <summary>
6942
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
6943
            </summary>
6944
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
6945
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
6946
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
6947
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
6948
        </member>
6949
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
6950
            <summary>
6951
            Gets the line number indicating where the error occurred.
6952
            </summary>
6953
            <value>The line number indicating where the error occurred.</value>
6954
        </member>
6955
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
6956
            <summary>
6957
            Gets the line position indicating where the error occurred.
6958
            </summary>
6959
            <value>The line position indicating where the error occurred.</value>
6960
        </member>
6961
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
6962
            <summary>
6963
            Gets the path to the JSON where the error occurred.
6964
            </summary>
6965
            <value>The path to the JSON where the error occurred.</value>
6966
        </member>
6967
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
6968
            <summary>
6969
            Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
6970
            </summary>
6971
        </member>
6972
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
6973
            <summary>
6974
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
6975
            </summary>
6976
        </member>
6977
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
6978
            <summary>
6979
            Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.
6980
            </summary>
6981
            <param name="reference">The id.</param>
6982
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>
6983
        </member>
6984
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
6985
            <summary>
6986
            Gets or sets the loaded schemas.
6987
            </summary>
6988
            <value>The loaded schemas.</value>
6989
        </member>
6990
        <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
6991
            <summary>
6992
            Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
6993
            </summary>
6994
        </member>
6995
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
6996
            <summary>
6997
            Do not infer a schema Id.
6998
            </summary>
6999
        </member>
7000
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
7001
            <summary>
7002
            Use the .NET type name as the schema Id.
7003
            </summary>
7004
        </member>
7005
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
7006
            <summary>
7007
            Use the assembly qualified .NET type name as the schema Id.
7008
            </summary>
7009
        </member>
7010
        <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
7011
            <summary>
7012
            Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
7013
            </summary>
7014
        </member>
7015
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
7016
            <summary>
7017
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.
7018
            </summary>
7019
            <value>The JsonSchemaException associated with the validation error.</value>
7020
        </member>
7021
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
7022
            <summary>
7023
            Gets the path of the JSON location where the validation error occurred.
7024
            </summary>
7025
            <value>The path of the JSON location where the validation error occurred.</value>
7026
        </member>
7027
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
7028
            <summary>
7029
            Gets the text description corresponding to the validation error.
7030
            </summary>
7031
            <value>The text description.</value>
7032
        </member>
7033
        <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
7034
            <summary>
7035
            Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
7036
            </summary>
7037
        </member>
7038
        <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
7039
            <summary>
7040
            Resolves member mappings for a type, camel casing property names.
7041
            </summary>
7042
        </member>
7043
        <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
7044
            <summary>
7045
            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"/>.
7046
            </summary>
7047
        </member>
7048
        <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
7049
            <summary>
7050
            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"/>.
7051
            </summary>
7052
            <example>
7053
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class"/>
7054
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example"/>
7055
            </example>
7056
        </member>
7057
        <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
7058
            <summary>
7059
            Resolves the contract for a given type.
7060
            </summary>
7061
            <param name="type">The type to resolve a contract for.</param>
7062
            <returns>The contract for a given type.</returns>
7063
        </member>
7064
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
7065
            <summary>
7066
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
7067
            </summary>
7068
        </member>
7069
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)">
7070
            <summary>
7071
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
7072
            </summary>
7073
            <param name="shareCache">
7074
            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.
7075
            Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only
7076
            happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different
7077
            results. When set to false it is highly recommended to reuse <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> instances with the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7078
            </param>
7079
        </member>
7080
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
7081
            <summary>
7082
            Resolves the contract for a given type.
7083
            </summary>
7084
            <param name="type">The type to resolve a contract for.</param>
7085
            <returns>The contract for a given type.</returns>
7086
        </member>
7087
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
7088
            <summary>
7089
            Gets the serializable members for the type.
7090
            </summary>
7091
            <param name="objectType">The type to get serializable members for.</param>
7092
            <returns>The serializable members for the type.</returns>
7093
        </member>
7094
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
7095
            <summary>
7096
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
7097
            </summary>
7098
            <param name="objectType">Type of the object.</param>
7099
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
7100
        </member>
7101
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
7102
            <summary>
7103
            Creates the constructor parameters.
7104
            </summary>
7105
            <param name="constructor">The constructor to create properties for.</param>
7106
            <param name="memberProperties">The type's member properties.</param>
7107
            <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
7108
        </member>
7109
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
7110
            <summary>
7111
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
7112
            </summary>
7113
            <param name="matchingMemberProperty">The matching member property.</param>
7114
            <param name="parameterInfo">The constructor parameter.</param>
7115
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
7116
        </member>
7117
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
7118
            <summary>
7119
            Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for the contract.
7120
            </summary>
7121
            <param name="objectType">Type of the object.</param>
7122
            <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter"/>.</returns>
7123
        </member>
7124
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
7125
            <summary>
7126
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
7127
            </summary>
7128
            <param name="objectType">Type of the object.</param>
7129
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
7130
        </member>
7131
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
7132
            <summary>
7133
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
7134
            </summary>
7135
            <param name="objectType">Type of the object.</param>
7136
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
7137
        </member>
7138
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
7139
            <summary>
7140
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
7141
            </summary>
7142
            <param name="objectType">Type of the object.</param>
7143
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
7144
        </member>
7145
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
7146
            <summary>
7147
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
7148
            </summary>
7149
            <param name="objectType">Type of the object.</param>
7150
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
7151
        </member>
7152
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
7153
            <summary>
7154
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
7155
            </summary>
7156
            <param name="objectType">Type of the object.</param>
7157
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
7158
        </member>
7159
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
7160
            <summary>
7161
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
7162
            </summary>
7163
            <param name="objectType">Type of the object.</param>
7164
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
7165
        </member>
7166
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
7167
            <summary>
7168
            Determines which contract type is created for the given type.
7169
            </summary>
7170
            <param name="objectType">Type of the object.</param>
7171
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
7172
        </member>
7173
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
7174
            <summary>
7175
            Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
7176
            </summary>
7177
            <param name="type">The type to create properties for.</param>
7178
            /// <param name="memberSerialization">The member serialization mode for the type.</param>
7179
            <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
7180
        </member>
7181
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
7182
            <summary>
7183
            Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
7184
            </summary>
7185
            <param name="member">The member.</param>
7186
            <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
7187
        </member>
7188
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
7189
            <summary>
7190
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
7191
            </summary>
7192
            <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
7193
            <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
7194
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
7195
        </member>
7196
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
7197
            <summary>
7198
            Resolves the name of the property.
7199
            </summary>
7200
            <param name="propertyName">Name of the property.</param>
7201
            <returns>Name of the property.</returns>
7202
        </member>
7203
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
7204
            <summary>
7205
            Gets the resolved name of the property.
7206
            </summary>
7207
            <param name="propertyName">Name of the property.</param>
7208
            <returns>Name of the property.</returns>
7209
        </member>
7210
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
7211
            <summary>
7212
            Gets a value indicating whether members are being get and set using dynamic code generation.
7213
            This value is determined by the runtime permissions available.
7214
            </summary>
7215
            <value>
7216
            	<c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
7217
            </value>
7218
        </member>
7219
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
7220
            <summary>
7221
            Gets or sets the default members search flags.
7222
            </summary>
7223
            <value>The default members search flags.</value>
7224
        </member>
7225
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
7226
            <summary>
7227
            Gets or sets a value indicating whether compiler generated members should be serialized.
7228
            </summary>
7229
            <value>
7230
            	<c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
7231
            </value>
7232
        </member>
7233
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
7234
            <summary>
7235
            Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.
7236
            </summary>
7237
            <value>
7238
            	<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>.
7239
            </value>
7240
        </member>
7241
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
7242
            <summary>
7243
            Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.
7244
            </summary>
7245
            <value>
7246
            	<c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
7247
            </value>
7248
        </member>
7249
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
7250
            <summary>
7251
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
7252
            </summary>
7253
        </member>
7254
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)">
7255
            <summary>
7256
            Resolves the name of the property.
7257
            </summary>
7258
            <param name="propertyName">Name of the property.</param>
7259
            <returns>The property name camel cased.</returns>
7260
        </member>
7261
        <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
7262
            <summary>
7263
            The default serialization binder used when resolving and loading classes from type names.
7264
            </summary>
7265
        </member>
7266
        <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
7267
            <summary>
7268
            When overridden in a derived class, controls the binding of a serialized object to a type.
7269
            </summary>
7270
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
7271
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
7272
            <returns>
7273
            The type of the object the formatter creates a new instance of.
7274
            </returns>
7275
        </member>
7276
        <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
7277
            <summary>
7278
            Provides information surrounding an error.
7279
            </summary>
7280
        </member>
7281
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
7282
            <summary>
7283
            Gets the error.
7284
            </summary>
7285
            <value>The error.</value>
7286
        </member>
7287
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
7288
            <summary>
7289
            Gets the original object that caused the error.
7290
            </summary>
7291
            <value>The original object that caused the error.</value>
7292
        </member>
7293
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
7294
            <summary>
7295
            Gets the member that caused the error.
7296
            </summary>
7297
            <value>The member that caused the error.</value>
7298
        </member>
7299
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
7300
            <summary>
7301
            Gets the path of the JSON location where the error occurred.
7302
            </summary>
7303
            <value>The path of the JSON location where the error occurred.</value>
7304
        </member>
7305
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
7306
            <summary>
7307
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
7308
            </summary>
7309
            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
7310
        </member>
7311
        <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
7312
            <summary>
7313
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7314
            </summary>
7315
        </member>
7316
        <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
7317
            <summary>
7318
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
7319
            </summary>
7320
            <param name="underlyingType">The underlying type for the contract.</param>
7321
        </member>
7322
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
7323
            <summary>
7324
            Gets the <see cref="T:System.Type"/> of the collection items.
7325
            </summary>
7326
            <value>The <see cref="T:System.Type"/> of the collection items.</value>
7327
        </member>
7328
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
7329
            <summary>
7330
            Gets a value indicating whether the collection type is a multidimensional array.
7331
            </summary>
7332
            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
7333
        </member>
7334
        <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">
7335
            <summary>
7336
            Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.
7337
            </summary>
7338
            <param name="o">The object that raised the callback event.</param>
7339
            <param name="context">The streaming context.</param>
7340
        </member>
7341
        <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">
7342
            <summary>
7343
            Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.
7344
            </summary>
7345
            <param name="o">The object that raised the callback event.</param>
7346
            <param name="context">The streaming context.</param>
7347
            <param name="errorContext">The error context.</param>
7348
        </member>
7349
        <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">
7350
            <summary>
7351
            Sets extension data for an object during deserialization.
7352
            </summary>
7353
            <param name="o">The object to set extension data on.</param>
7354
            <param name="key">The extension data key.</param>
7355
            <param name="value">The extension data value.</param>
7356
        </member>
7357
        <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">
7358
            <summary>
7359
            Gets extension data for an object during serialization.
7360
            </summary>
7361
            <param name="o">The object to set extension data on.</param>
7362
        </member>
7363
        <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
7364
            <summary>
7365
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7366
            </summary>
7367
        </member>
7368
        <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
7369
            <summary>
7370
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
7371
            </summary>
7372
            <param name="underlyingType">The underlying type for the contract.</param>
7373
        </member>
7374
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver">
7375
            <summary>
7376
            Gets or sets the property name resolver.
7377
            </summary>
7378
            <value>The property name resolver.</value>
7379
        </member>
7380
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
7381
            <summary>
7382
            Gets the <see cref="T:System.Type"/> of the dictionary keys.
7383
            </summary>
7384
            <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
7385
        </member>
7386
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
7387
            <summary>
7388
            Gets the <see cref="T:System.Type"/> of the dictionary values.
7389
            </summary>
7390
            <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
7391
        </member>
7392
        <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
7393
            <summary>
7394
            Maps a JSON property to a .NET member or constructor parameter.
7395
            </summary>
7396
        </member>
7397
        <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
7398
            <summary>
7399
            Returns a <see cref="T:System.String"/> that represents this instance.
7400
            </summary>
7401
            <returns>
7402
            A <see cref="T:System.String"/> that represents this instance.
7403
            </returns>
7404
        </member>
7405
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
7406
            <summary>
7407
            Gets or sets the name of the property.
7408
            </summary>
7409
            <value>The name of the property.</value>
7410
        </member>
7411
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
7412
            <summary>
7413
            Gets or sets the type that declared this property.
7414
            </summary>
7415
            <value>The type that declared this property.</value>
7416
        </member>
7417
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
7418
            <summary>
7419
            Gets or sets the order of serialization and deserialization of a member.
7420
            </summary>
7421
            <value>The numeric order of serialization or deserialization.</value>
7422
        </member>
7423
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
7424
            <summary>
7425
            Gets or sets the name of the underlying member or parameter.
7426
            </summary>
7427
            <value>The name of the underlying member or parameter.</value>
7428
        </member>
7429
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
7430
            <summary>
7431
            Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
7432
            </summary>
7433
            <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>
7434
        </member>
7435
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.AttributeProvider">
7436
            <summary>
7437
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.
7438
            </summary>
7439
            <value>The <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.</value>
7440
        </member>
7441
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
7442
            <summary>
7443
            Gets or sets the type of the property.
7444
            </summary>
7445
            <value>The type of the property.</value>
7446
        </member>
7447
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
7448
            <summary>
7449
            Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> for the property.
7450
            If set this converter takes presidence over the contract converter for the property type.
7451
            </summary>
7452
            <value>The converter.</value>
7453
        </member>
7454
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
7455
            <summary>
7456
            Gets or sets the member converter.
7457
            </summary>
7458
            <value>The member converter.</value>
7459
        </member>
7460
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
7461
            <summary>
7462
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
7463
            </summary>
7464
            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
7465
        </member>
7466
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
7467
            <summary>
7468
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
7469
            </summary>
7470
            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
7471
        </member>
7472
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
7473
            <summary>
7474
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
7475
            </summary>
7476
            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
7477
        </member>
7478
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
7479
            <summary>
7480
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
7481
            </summary>
7482
            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
7483
        </member>
7484
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
7485
            <summary>
7486
            Gets the default value.
7487
            </summary>
7488
            <value>The default value.</value>
7489
        </member>
7490
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
7491
            <summary>
7492
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
7493
            </summary>
7494
            <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
7495
        </member>
7496
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
7497
            <summary>
7498
            Gets or sets a value indicating whether this property preserves object references.
7499
            </summary>
7500
            <value>
7501
            	<c>true</c> if this instance is reference; otherwise, <c>false</c>.
7502
            </value>
7503
        </member>
7504
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
7505
            <summary>
7506
            Gets or sets the property null value handling.
7507
            </summary>
7508
            <value>The null value handling.</value>
7509
        </member>
7510
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
7511
            <summary>
7512
            Gets or sets the property default value handling.
7513
            </summary>
7514
            <value>The default value handling.</value>
7515
        </member>
7516
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
7517
            <summary>
7518
            Gets or sets the property reference loop handling.
7519
            </summary>
7520
            <value>The reference loop handling.</value>
7521
        </member>
7522
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
7523
            <summary>
7524
            Gets or sets the property object creation handling.
7525
            </summary>
7526
            <value>The object creation handling.</value>
7527
        </member>
7528
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
7529
            <summary>
7530
            Gets or sets or sets the type name handling.
7531
            </summary>
7532
            <value>The type name handling.</value>
7533
        </member>
7534
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
7535
            <summary>
7536
            Gets or sets a predicate used to determine whether the property should be serialize.
7537
            </summary>
7538
            <value>A predicate used to determine whether the property should be serialize.</value>
7539
        </member>
7540
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
7541
            <summary>
7542
            Gets or sets a predicate used to determine whether the property should be serialized.
7543
            </summary>
7544
            <value>A predicate used to determine whether the property should be serialized.</value>
7545
        </member>
7546
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
7547
            <summary>
7548
            Gets or sets an action used to set whether the property has been deserialized.
7549
            </summary>
7550
            <value>An action used to set whether the property has been deserialized.</value>
7551
        </member>
7552
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
7553
            <summary>
7554
            Gets or sets the converter used when serializing the property's collection items.
7555
            </summary>
7556
            <value>The collection's items converter.</value>
7557
        </member>
7558
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
7559
            <summary>
7560
            Gets or sets whether this property's collection items are serialized as a reference.
7561
            </summary>
7562
            <value>Whether this property's collection items are serialized as a reference.</value>
7563
        </member>
7564
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
7565
            <summary>
7566
            Gets or sets the the type name handling used when serializing the property's collection items.
7567
            </summary>
7568
            <value>The collection's items type name handling.</value>
7569
        </member>
7570
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
7571
            <summary>
7572
            Gets or sets the the reference loop handling used when serializing the property's collection items.
7573
            </summary>
7574
            <value>The collection's items reference loop handling.</value>
7575
        </member>
7576
        <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
7577
            <summary>
7578
            A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
7579
            </summary>
7580
        </member>
7581
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
7582
            <summary>
7583
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
7584
            </summary>
7585
            <param name="type">The type.</param>
7586
        </member>
7587
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
7588
            <summary>
7589
            When implemented in a derived class, extracts the key from the specified element.
7590
            </summary>
7591
            <param name="item">The element from which to extract the key.</param>
7592
            <returns>The key for the specified element.</returns>
7593
        </member>
7594
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
7595
            <summary>
7596
            Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
7597
            </summary>
7598
            <param name="property">The property to add to the collection.</param>
7599
        </member>
7600
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
7601
            <summary>
7602
            Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
7603
            First attempts to get an exact case match of propertyName and then
7604
            a case insensitive match.
7605
            </summary>
7606
            <param name="propertyName">Name of the property.</param>
7607
            <returns>A matching property if found.</returns>
7608
        </member>
7609
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
7610
            <summary>
7611
            Gets a property by property name.
7612
            </summary>
7613
            <param name="propertyName">The name of the property to get.</param>
7614
            <param name="comparisonType">Type property name string comparison.</param>
7615
            <returns>A matching property if found.</returns>
7616
        </member>
7617
        <member name="T:Newtonsoft.Json.MissingMemberHandling">
7618
            <summary>
7619
            Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7620
            </summary>
7621
        </member>
7622
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
7623
            <summary>
7624
            Ignore a missing member and do not attempt to deserialize it.
7625
            </summary>
7626
        </member>
7627
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
7628
            <summary>
7629
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
7630
            </summary>
7631
        </member>
7632
        <member name="T:Newtonsoft.Json.NullValueHandling">
7633
            <summary>
7634
            Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7635
            </summary>
7636
            <example>
7637
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class"/>
7638
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example"/>
7639
            </example>
7640
        </member>
7641
        <member name="F:Newtonsoft.Json.NullValueHandling.Include">
7642
            <summary>
7643
            Include null values when serializing and deserializing objects.
7644
            </summary>
7645
        </member>
7646
        <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
7647
            <summary>
7648
            Ignore null values when serializing and deserializing objects.
7649
            </summary>
7650
        </member>
7651
        <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
7652
            <summary>
7653
            Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7654
            </summary>
7655
        </member>
7656
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
7657
            <summary>
7658
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
7659
            </summary>
7660
        </member>
7661
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
7662
            <summary>
7663
            Ignore loop references and do not serialize.
7664
            </summary>
7665
        </member>
7666
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
7667
            <summary>
7668
            Serialize loop references.
7669
            </summary>
7670
        </member>
7671
        <member name="T:Newtonsoft.Json.Schema.JsonSchema">
7672
            <summary>
7673
            An in-memory representation of a JSON Schema.
7674
            </summary>
7675
        </member>
7676
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
7677
            <summary>
7678
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
7679
            </summary>
7680
        </member>
7681
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
7682
            <summary>
7683
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7684
            </summary>
7685
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
7686
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
7687
        </member>
7688
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7689
            <summary>
7690
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7691
            </summary>
7692
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
7693
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
7694
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
7695
        </member>
7696
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
7697
            <summary>
7698
            Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON.
7699
            </summary>
7700
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
7701
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
7702
        </member>
7703
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7704
            <summary>
7705
            Parses the specified json.
7706
            </summary>
7707
            <param name="json">The json.</param>
7708
            <param name="resolver">The resolver.</param>
7709
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
7710
        </member>
7711
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
7712
            <summary>
7713
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
7714
            </summary>
7715
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7716
        </member>
7717
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7718
            <summary>
7719
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
7720
            </summary>
7721
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7722
            <param name="resolver">The resolver used.</param>
7723
        </member>
7724
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
7725
            <summary>
7726
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
7727
            </summary>
7728
            <returns>
7729
            A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
7730
            </returns>
7731
        </member>
7732
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
7733
            <summary>
7734
            Gets or sets the id.
7735
            </summary>
7736
        </member>
7737
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
7738
            <summary>
7739
            Gets or sets the title.
7740
            </summary>
7741
        </member>
7742
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
7743
            <summary>
7744
            Gets or sets whether the object is required.
7745
            </summary>
7746
        </member>
7747
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
7748
            <summary>
7749
            Gets or sets whether the object is read only.
7750
            </summary>
7751
        </member>
7752
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
7753
            <summary>
7754
            Gets or sets whether the object is visible to users.
7755
            </summary>
7756
        </member>
7757
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
7758
            <summary>
7759
            Gets or sets whether the object is transient.
7760
            </summary>
7761
        </member>
7762
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
7763
            <summary>
7764
            Gets or sets the description of the object.
7765
            </summary>
7766
        </member>
7767
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
7768
            <summary>
7769
            Gets or sets the types of values allowed by the object.
7770
            </summary>
7771
            <value>The type.</value>
7772
        </member>
7773
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
7774
            <summary>
7775
            Gets or sets the pattern.
7776
            </summary>
7777
            <value>The pattern.</value>
7778
        </member>
7779
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
7780
            <summary>
7781
            Gets or sets the minimum length.
7782
            </summary>
7783
            <value>The minimum length.</value>
7784
        </member>
7785
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
7786
            <summary>
7787
            Gets or sets the maximum length.
7788
            </summary>
7789
            <value>The maximum length.</value>
7790
        </member>
7791
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
7792
            <summary>
7793
            Gets or sets a number that the value should be divisble by.
7794
            </summary>
7795
            <value>A number that the value should be divisble by.</value>
7796
        </member>
7797
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
7798
            <summary>
7799
            Gets or sets the minimum.
7800
            </summary>
7801
            <value>The minimum.</value>
7802
        </member>
7803
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
7804
            <summary>
7805
            Gets or sets the maximum.
7806
            </summary>
7807
            <value>The maximum.</value>
7808
        </member>
7809
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
7810
            <summary>
7811
            Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.
7812
            </summary>
7813
            <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value>
7814
        </member>
7815
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
7816
            <summary>
7817
            Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.
7818
            </summary>
7819
            <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>
7820
        </member>
7821
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
7822
            <summary>
7823
            Gets or sets the minimum number of items.
7824
            </summary>
7825
            <value>The minimum number of items.</value>
7826
        </member>
7827
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
7828
            <summary>
7829
            Gets or sets the maximum number of items.
7830
            </summary>
7831
            <value>The maximum number of items.</value>
7832
        </member>
7833
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
7834
            <summary>
7835
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
7836
            </summary>
7837
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
7838
        </member>
7839
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">
7840
            <summary>
7841
            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"/>.
7842
            </summary>
7843
            <value>
7844
            	<c>true</c> if items are validated using their array position; otherwise, <c>false</c>.
7845
            </value>
7846
        </member>
7847
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">
7848
            <summary>
7849
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.
7850
            </summary>
7851
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value>
7852
        </member>
7853
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">
7854
            <summary>
7855
            Gets or sets a value indicating whether additional items are allowed.
7856
            </summary>
7857
            <value>
7858
            	<c>true</c> if additional items are allowed; otherwise, <c>false</c>.
7859
            </value>
7860
        </member>
7861
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">
7862
            <summary>
7863
            Gets or sets whether the array items must be unique.
7864
            </summary>
7865
        </member>
7866
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
7867
            <summary>
7868
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
7869
            </summary>
7870
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
7871
        </member>
7872
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
7873
            <summary>
7874
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
7875
            </summary>
7876
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
7877
        </member>
7878
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
7879
            <summary>
7880
            Gets or sets the pattern properties.
7881
            </summary>
7882
            <value>The pattern properties.</value>
7883
        </member>
7884
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
7885
            <summary>
7886
            Gets or sets a value indicating whether additional properties are allowed.
7887
            </summary>
7888
            <value>
7889
            	<c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
7890
            </value>
7891
        </member>
7892
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
7893
            <summary>
7894
            Gets or sets the required property if this property is present.
7895
            </summary>
7896
            <value>The required property if this property is present.</value>
7897
        </member>
7898
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
7899
            <summary>
7900
            Gets or sets the a collection of valid enum values allowed.
7901
            </summary>
7902
            <value>A collection of valid enum values allowed.</value>
7903
        </member>
7904
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
7905
            <summary>
7906
            Gets or sets disallowed types.
7907
            </summary>
7908
            <value>The disallow types.</value>
7909
        </member>
7910
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
7911
            <summary>
7912
            Gets or sets the default value.
7913
            </summary>
7914
            <value>The default value.</value>
7915
        </member>
7916
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
7917
            <summary>
7918
            Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.
7919
            </summary>
7920
            <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value>
7921
        </member>
7922
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
7923
            <summary>
7924
            Gets or sets the format.
7925
            </summary>
7926
            <value>The format.</value>
7927
        </member>
7928
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
7929
            <summary>
7930
            Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
7931
            </summary>
7932
        </member>
7933
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
7934
            <summary>
7935
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7936
            </summary>
7937
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7938
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7939
        </member>
7940
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7941
            <summary>
7942
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7943
            </summary>
7944
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7945
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
7946
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7947
        </member>
7948
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
7949
            <summary>
7950
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7951
            </summary>
7952
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7953
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
7954
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7955
        </member>
7956
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
7957
            <summary>
7958
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7959
            </summary>
7960
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7961
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
7962
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
7963
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7964
        </member>
7965
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
7966
            <summary>
7967
            Gets or sets how undefined schemas are handled by the serializer.
7968
            </summary>
7969
        </member>
7970
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
7971
            <summary>
7972
            Gets or sets the contract resolver.
7973
            </summary>
7974
            <value>The contract resolver.</value>
7975
        </member>
7976
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
7977
            <summary>
7978
            The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
7979
            </summary>
7980
        </member>
7981
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
7982
            <summary>
7983
            No type specified.
7984
            </summary>
7985
        </member>
7986
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
7987
            <summary>
7988
            String type.
7989
            </summary>
7990
        </member>
7991
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
7992
            <summary>
7993
            Float type.
7994
            </summary>
7995
        </member>
7996
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
7997
            <summary>
7998
            Integer type.
7999
            </summary>
8000
        </member>
8001
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
8002
            <summary>
8003
            Boolean type.
8004
            </summary>
8005
        </member>
8006
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
8007
            <summary>
8008
            Object type.
8009
            </summary>
8010
        </member>
8011
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
8012
            <summary>
8013
            Array type.
8014
            </summary>
8015
        </member>
8016
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
8017
            <summary>
8018
            Null type.
8019
            </summary>
8020
        </member>
8021
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
8022
            <summary>
8023
            Any type.
8024
            </summary>
8025
        </member>
8026
        <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
8027
            <summary>
8028
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8029
            </summary>
8030
        </member>
8031
        <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
8032
            <summary>
8033
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
8034
            </summary>
8035
            <param name="underlyingType">The underlying type for the contract.</param>
8036
        </member>
8037
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
8038
            <summary>
8039
            Gets or sets the object member serialization.
8040
            </summary>
8041
            <value>The member object serialization.</value>
8042
        </member>
8043
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
8044
            <summary>
8045
            Gets or sets a value that indicates whether the object's properties are required.
8046
            </summary>
8047
            <value>
8048
            	A value indicating whether the object's properties are required.
8049
            </value>
8050
        </member>
8051
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
8052
            <summary>
8053
            Gets the object's properties.
8054
            </summary>
8055
            <value>The object's properties.</value>
8056
        </member>
8057
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters">
8058
            <summary>
8059
            Gets the constructor parameters required for any non-default constructor
8060
            </summary>
8061
        </member>
8062
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">
8063
            <summary>
8064
            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"/>.
8065
            </summary>
8066
        </member>
8067
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor">
8068
            <summary>
8069
            Gets or sets the override constructor used to create the object.
8070
            This is set when a constructor is marked up using the
8071
            JsonConstructor attribute.
8072
            </summary>
8073
            <value>The override constructor.</value>
8074
        </member>
8075
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor">
8076
            <summary>
8077
            Gets or sets the parametrized constructor used to create the object.
8078
            </summary>
8079
            <value>The parametrized constructor.</value>
8080
        </member>
8081
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">
8082
            <summary>
8083
            Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
8084
            This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection.
8085
            </summary>
8086
            <value>The function used to create the object.</value>
8087
        </member>
8088
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">
8089
            <summary>
8090
            Gets or sets the extension data setter.
8091
            </summary>
8092
        </member>
8093
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">
8094
            <summary>
8095
            Gets or sets the extension data getter.
8096
            </summary>
8097
        </member>
8098
        <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
8099
            <summary>
8100
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8101
            </summary>
8102
        </member>
8103
        <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
8104
            <summary>
8105
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
8106
            </summary>
8107
            <param name="underlyingType">The underlying type for the contract.</param>
8108
        </member>
8109
        <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.CreateJsonConverterInstance(System.Type,System.Object[])">
8110
            <summary>
8111
            Lookup and create an instance of the JsonConverter type described by the argument.
8112
            </summary>
8113
            <param name="converterType">The JsonConverter type to create.</param>
8114
            <param name="converterArgs">Optional arguments to pass to an initializing constructor of the JsonConverter.
8115
            If null, the default constructor is used.</param>
8116
        </member>
8117
        <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.GetJsonConverterCreator(System.Type)">
8118
            <summary>
8119
            Create a factory function that can be used to create instances of a JsonConverter described by the 
8120
            argument type.  The returned function can then be used to either invoke the converter's default ctor, or any 
8121
            parameterized constructors by way of an object array.
8122
            </summary>
8123
        </member>
8124
        <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
8125
            <summary>
8126
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
8127
            </summary>
8128
        </member>
8129
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
8130
            <summary>
8131
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
8132
            </summary>
8133
            <param name="memberInfo">The member info.</param>
8134
        </member>
8135
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
8136
            <summary>
8137
            Sets the value.
8138
            </summary>
8139
            <param name="target">The target to set the value on.</param>
8140
            <param name="value">The value to set on the target.</param>
8141
        </member>
8142
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
8143
            <summary>
8144
            Gets the value.
8145
            </summary>
8146
            <param name="target">The target to get the value from.</param>
8147
            <returns>The value.</returns>
8148
        </member>
8149
        <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
8150
            <summary>
8151
            When applied to a method, specifies that the method is called when an error occurs serializing an object.
8152
            </summary>
8153
        </member>
8154
        <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
8155
            <summary>
8156
            Represents a method that constructs an object.
8157
            </summary>
8158
            <typeparam name="T">The object type to create.</typeparam>
8159
        </member>
8160
        <member name="T:Newtonsoft.Json.TypeNameHandling">
8161
            <summary>
8162
            Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8163
            </summary>
8164
        </member>
8165
        <member name="F:Newtonsoft.Json.TypeNameHandling.None">
8166
            <summary>
8167
            Do not include the .NET type name when serializing types.
8168
            </summary>
8169
        </member>
8170
        <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
8171
            <summary>
8172
            Include the .NET type name when serializing into a JSON object structure.
8173
            </summary>
8174
        </member>
8175
        <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
8176
            <summary>
8177
            Include the .NET type name when serializing into a JSON array structure.
8178
            </summary>
8179
        </member>
8180
        <member name="F:Newtonsoft.Json.TypeNameHandling.All">
8181
            <summary>
8182
            Always include the .NET type name when serializing.
8183
            </summary>
8184
        </member>
8185
        <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
8186
            <summary>
8187
            Include the .NET type name when the type of the object being serialized is not the same as its declared type.
8188
            </summary>
8189
        </member>
8190
        <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
8191
            <summary>
8192
            Converts the value to the specified type. If the value is unable to be converted, the
8193
            value is checked whether it assignable to the specified type.
8194
            </summary>
8195
            <param name="initialValue">The value to convert.</param>
8196
            <param name="culture">The culture to use when converting.</param>
8197
            <param name="targetType">The type to convert or cast the value to.</param>
8198
            <returns>
8199
            The converted type. If conversion was unsuccessful, the initial value
8200
            is returned if assignable to the target type.
8201
            </returns>
8202
        </member>
8203
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
8204
            <summary>
8205
            Gets a dictionary of the names and values of an Enum type.
8206
            </summary>
8207
            <returns></returns>
8208
        </member>
8209
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
8210
            <summary>
8211
            Gets a dictionary of the names and values of an Enum type.
8212
            </summary>
8213
            <param name="enumType">The enum type to get names and values for.</param>
8214
            <returns></returns>
8215
        </member>
8216
        <member name="T:Newtonsoft.Json.JsonToken">
8217
            <summary>
8218
            Specifies the type of Json token.
8219
            </summary>
8220
        </member>
8221
        <member name="F:Newtonsoft.Json.JsonToken.None">
8222
            <summary>
8223
            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. 
8224
            </summary>
8225
        </member>
8226
        <member name="F:Newtonsoft.Json.JsonToken.StartObject">
8227
            <summary>
8228
            An object start token.
8229
            </summary>
8230
        </member>
8231
        <member name="F:Newtonsoft.Json.JsonToken.StartArray">
8232
            <summary>
8233
            An array start token.
8234
            </summary>
8235
        </member>
8236
        <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
8237
            <summary>
8238
            A constructor start token.
8239
            </summary>
8240
        </member>
8241
        <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
8242
            <summary>
8243
            An object property name.
8244
            </summary>
8245
        </member>
8246
        <member name="F:Newtonsoft.Json.JsonToken.Comment">
8247
            <summary>
8248
            A comment.
8249
            </summary>
8250
        </member>
8251
        <member name="F:Newtonsoft.Json.JsonToken.Raw">
8252
            <summary>
8253
            Raw JSON.
8254
            </summary>
8255
        </member>
8256
        <member name="F:Newtonsoft.Json.JsonToken.Integer">
8257
            <summary>
8258
            An integer.
8259
            </summary>
8260
        </member>
8261
        <member name="F:Newtonsoft.Json.JsonToken.Float">
8262
            <summary>
8263
            A float.
8264
            </summary>
8265
        </member>
8266
        <member name="F:Newtonsoft.Json.JsonToken.String">
8267
            <summary>
8268
            A string.
8269
            </summary>
8270
        </member>
8271
        <member name="F:Newtonsoft.Json.JsonToken.Boolean">
8272
            <summary>
8273
            A boolean.
8274
            </summary>
8275
        </member>
8276
        <member name="F:Newtonsoft.Json.JsonToken.Null">
8277
            <summary>
8278
            A null token.
8279
            </summary>
8280
        </member>
8281
        <member name="F:Newtonsoft.Json.JsonToken.Undefined">
8282
            <summary>
8283
            An undefined token.
8284
            </summary>
8285
        </member>
8286
        <member name="F:Newtonsoft.Json.JsonToken.EndObject">
8287
            <summary>
8288
            An object end token.
8289
            </summary>
8290
        </member>
8291
        <member name="F:Newtonsoft.Json.JsonToken.EndArray">
8292
            <summary>
8293
            An array end token.
8294
            </summary>
8295
        </member>
8296
        <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
8297
            <summary>
8298
            A constructor end token.
8299
            </summary>
8300
        </member>
8301
        <member name="F:Newtonsoft.Json.JsonToken.Date">
8302
            <summary>
8303
            A Date.
8304
            </summary>
8305
        </member>
8306
        <member name="F:Newtonsoft.Json.JsonToken.Bytes">
8307
            <summary>
8308
            Byte data.
8309
            </summary>
8310
        </member>
8311
        <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
8312
            <summary>
8313
            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
8314
            </summary>
8315
        </member>
8316
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
8317
            <summary>
8318
            Determines whether the collection is null or empty.
8319
            </summary>
8320
            <param name="collection">The collection.</param>
8321
            <returns>
8322
            	<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
8323
            </returns>
8324
        </member>
8325
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
8326
            <summary>
8327
            Adds the elements of the specified collection to the specified generic IList.
8328
            </summary>
8329
            <param name="initial">The list to add to.</param>
8330
            <param name="collection">The collection of elements to add.</param>
8331
        </member>
8332
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
8333
            <summary>
8334
            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
8335
            </summary>
8336
            <typeparam name="TSource">The type of the elements of source.</typeparam>
8337
            <param name="list">A sequence in which to locate a value.</param>
8338
            <param name="value">The object to locate in the sequence</param>
8339
            <param name="comparer">An equality comparer to compare values.</param>
8340
            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
8341
        </member>
8342
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
8343
            <summary>
8344
            Gets the type of the typed collection's items.
8345
            </summary>
8346
            <param name="type">The type.</param>
8347
            <returns>The type of the typed collection's items.</returns>
8348
        </member>
8349
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
8350
            <summary>
8351
            Gets the member's underlying type.
8352
            </summary>
8353
            <param name="member">The member.</param>
8354
            <returns>The underlying type of the member.</returns>
8355
        </member>
8356
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
8357
            <summary>
8358
            Determines whether the member is an indexed property.
8359
            </summary>
8360
            <param name="member">The member.</param>
8361
            <returns>
8362
            	<c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
8363
            </returns>
8364
        </member>
8365
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
8366
            <summary>
8367
            Determines whether the property is an indexed property.
8368
            </summary>
8369
            <param name="property">The property.</param>
8370
            <returns>
8371
            	<c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
8372
            </returns>
8373
        </member>
8374
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
8375
            <summary>
8376
            Gets the member's value on the object.
8377
            </summary>
8378
            <param name="member">The member.</param>
8379
            <param name="target">The target object.</param>
8380
            <returns>The member's value on the object.</returns>
8381
        </member>
8382
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
8383
            <summary>
8384
            Sets the member's value on the target object.
8385
            </summary>
8386
            <param name="member">The member.</param>
8387
            <param name="target">The target.</param>
8388
            <param name="value">The value.</param>
8389
        </member>
8390
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
8391
            <summary>
8392
            Determines whether the specified MemberInfo can be read.
8393
            </summary>
8394
            <param name="member">The MemberInfo to determine whether can be read.</param>
8395
            /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
8396
            <returns>
8397
            	<c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
8398
            </returns>
8399
        </member>
8400
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
8401
            <summary>
8402
            Determines whether the specified MemberInfo can be set.
8403
            </summary>
8404
            <param name="member">The MemberInfo to determine whether can be set.</param>
8405
            <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
8406
            <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
8407
            <returns>
8408
            	<c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
8409
            </returns>
8410
        </member>
8411
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
8412
            <summary>
8413
            Determines whether the string is all white space. Empty string will return false.
8414
            </summary>
8415
            <param name="s">The string to test whether it is all white space.</param>
8416
            <returns>
8417
            	<c>true</c> if the string is all white space; otherwise, <c>false</c>.
8418
            </returns>
8419
        </member>
8420
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
8421
            <summary>
8422
            Nulls an empty string.
8423
            </summary>
8424
            <param name="s">The string.</param>
8425
            <returns>Null if the string was null, otherwise the string unchanged.</returns>
8426
        </member>
8427
        <member name="T:Newtonsoft.Json.WriteState">
8428
            <summary>
8429
            Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
8430
            </summary>
8431
        </member>
8432
        <member name="F:Newtonsoft.Json.WriteState.Error">
8433
            <summary>
8434
            An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
8435
            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.
8436
            Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown. 
8437
            </summary>
8438
        </member>
8439
        <member name="F:Newtonsoft.Json.WriteState.Closed">
8440
            <summary>
8441
            The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called. 
8442
            </summary>
8443
        </member>
8444
        <member name="F:Newtonsoft.Json.WriteState.Object">
8445
            <summary>
8446
            An object is being written. 
8447
            </summary>
8448
        </member>
8449
        <member name="F:Newtonsoft.Json.WriteState.Array">
8450
            <summary>
8451
            A array is being written.
8452
            </summary>
8453
        </member>
8454
        <member name="F:Newtonsoft.Json.WriteState.Constructor">
8455
            <summary>
8456
            A constructor is being written.
8457
            </summary>
8458
        </member>
8459
        <member name="F:Newtonsoft.Json.WriteState.Property">
8460
            <summary>
8461
            A property is being written.
8462
            </summary>
8463
        </member>
8464
        <member name="F:Newtonsoft.Json.WriteState.Start">
8465
            <summary>
8466
            A write method has not been called.
8467
            </summary>
8468
        </member>
8469
    </members>
8470
</doc>