Statistics
| Branch: | Revision:

root / trunk / packages / Newtonsoft.Json.4.5.10 / lib / net35 / Newtonsoft.Json.xml @ 44cae3e0

History | View | Annotate | Download (400.1 kB)

1
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>Newtonsoft.Json</name>
5
    </assembly>
6
    <members>
7
        <member name="T:Newtonsoft.Json.Bson.BsonReader">
8
            <summary>
9
            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
10
            </summary>
11
        </member>
12
        <member name="T:Newtonsoft.Json.JsonReader">
13
            <summary>
14
            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
15
            </summary>
16
        </member>
17
        <member name="M:Newtonsoft.Json.JsonReader.#ctor">
18
            <summary>
19
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
20
            </summary>
21
        </member>
22
        <member name="M:Newtonsoft.Json.JsonReader.Read">
23
            <summary>
24
            Reads the next JSON token from the stream.
25
            </summary>
26
            <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
27
        </member>
28
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
29
            <summary>
30
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
31
            </summary>
32
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
33
        </member>
34
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
35
            <summary>
36
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
37
            </summary>
38
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
39
        </member>
40
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
41
            <summary>
42
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
43
            </summary>
44
            <returns>A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>
45
        </member>
46
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
47
            <summary>
48
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
49
            </summary>
50
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
51
        </member>
52
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
53
            <summary>
54
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
55
            </summary>
56
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
57
        </member>
58
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">
59
            <summary>
60
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
61
            </summary>
62
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
63
        </member>
64
        <member name="M:Newtonsoft.Json.JsonReader.Skip">
65
            <summary>
66
            Skips the children of the current token.
67
            </summary>
68
        </member>
69
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
70
            <summary>
71
            Sets the current token.
72
            </summary>
73
            <param name="newToken">The new token.</param>
74
        </member>
75
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
76
            <summary>
77
            Sets the current token and value.
78
            </summary>
79
            <param name="newToken">The new token.</param>
80
            <param name="value">The value.</param>
81
        </member>
82
        <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
83
            <summary>
84
            Sets the state based on current token type.
85
            </summary>
86
        </member>
87
        <member name="M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose">
88
            <summary>
89
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
90
            </summary>
91
        </member>
92
        <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
93
            <summary>
94
            Releases unmanaged and - optionally - managed resources
95
            </summary>
96
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
97
        </member>
98
        <member name="M:Newtonsoft.Json.JsonReader.Close">
99
            <summary>
100
            Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed. 
101
            </summary>
102
        </member>
103
        <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
104
            <summary>
105
            Gets the current reader state.
106
            </summary>
107
            <value>The current reader state.</value>
108
        </member>
109
        <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
110
            <summary>
111
            Gets or sets a value indicating whether the underlying stream or
112
            <see cref="T:System.IO.TextReader"/> should be closed when the reader is closed.
113
            </summary>
114
            <value>
115
            true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
116
            the reader is closed; otherwise false. The default is true.
117
            </value>
118
        </member>
119
        <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
120
            <summary>
121
            Gets the quotation mark character used to enclose the value of a string.
122
            </summary>
123
        </member>
124
        <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
125
            <summary>
126
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when reading JSON.
127
            </summary>
128
        </member>
129
        <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
130
            <summary>
131
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
132
            </summary>
133
        </member>
134
        <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
135
            <summary>
136
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
137
            </summary>
138
        </member>
139
        <member name="P:Newtonsoft.Json.JsonReader.TokenType">
140
            <summary>
141
            Gets the type of the current JSON token. 
142
            </summary>
143
        </member>
144
        <member name="P:Newtonsoft.Json.JsonReader.Value">
145
            <summary>
146
            Gets the text value of the current JSON token.
147
            </summary>
148
        </member>
149
        <member name="P:Newtonsoft.Json.JsonReader.ValueType">
150
            <summary>
151
            Gets The Common Language Runtime (CLR) type for the current JSON token.
152
            </summary>
153
        </member>
154
        <member name="P:Newtonsoft.Json.JsonReader.Depth">
155
            <summary>
156
            Gets the depth of the current token in the JSON document.
157
            </summary>
158
            <value>The depth of the current token in the JSON document.</value>
159
        </member>
160
        <member name="P:Newtonsoft.Json.JsonReader.Path">
161
            <summary>
162
            Gets the path of the current JSON token. 
163
            </summary>
164
        </member>
165
        <member name="P:Newtonsoft.Json.JsonReader.Culture">
166
            <summary>
167
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
168
            </summary>
169
        </member>
170
        <member name="T:Newtonsoft.Json.JsonReader.State">
171
            <summary>
172
            Specifies the state of the reader.
173
            </summary>
174
        </member>
175
        <member name="F:Newtonsoft.Json.JsonReader.State.Start">
176
            <summary>
177
            The Read method has not been called.
178
            </summary>
179
        </member>
180
        <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
181
            <summary>
182
            The end of the file has been reached successfully.
183
            </summary>
184
        </member>
185
        <member name="F:Newtonsoft.Json.JsonReader.State.Property">
186
            <summary>
187
            Reader is at a property.
188
            </summary>
189
        </member>
190
        <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
191
            <summary>
192
            Reader is at the start of an object.
193
            </summary>
194
        </member>
195
        <member name="F:Newtonsoft.Json.JsonReader.State.Object">
196
            <summary>
197
            Reader is in an object.
198
            </summary>
199
        </member>
200
        <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
201
            <summary>
202
            Reader is at the start of an array.
203
            </summary>
204
        </member>
205
        <member name="F:Newtonsoft.Json.JsonReader.State.Array">
206
            <summary>
207
            Reader is in an array.
208
            </summary>
209
        </member>
210
        <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
211
            <summary>
212
            The Close method has been called.
213
            </summary>
214
        </member>
215
        <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
216
            <summary>
217
            Reader has just read a value.
218
            </summary>
219
        </member>
220
        <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
221
            <summary>
222
            Reader is at the start of a constructor.
223
            </summary>
224
        </member>
225
        <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
226
            <summary>
227
            Reader in a constructor.
228
            </summary>
229
        </member>
230
        <member name="F:Newtonsoft.Json.JsonReader.State.Error">
231
            <summary>
232
            An error occurred that prevents the read operation from continuing.
233
            </summary>
234
        </member>
235
        <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
236
            <summary>
237
            The end of the file has been reached successfully.
238
            </summary>
239
        </member>
240
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
241
            <summary>
242
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
243
            </summary>
244
            <param name="stream">The stream.</param>
245
        </member>
246
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
247
            <summary>
248
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
249
            </summary>
250
            <param name="reader">The reader.</param>
251
        </member>
252
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
253
            <summary>
254
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
255
            </summary>
256
            <param name="stream">The stream.</param>
257
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
258
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
259
        </member>
260
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
261
            <summary>
262
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
263
            </summary>
264
            <param name="reader">The reader.</param>
265
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
266
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
267
        </member>
268
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
269
            <summary>
270
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
271
            </summary>
272
            <returns>
273
            A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
274
            </returns>
275
        </member>
276
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal">
277
            <summary>
278
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
279
            </summary>
280
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
281
        </member>
282
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
283
            <summary>
284
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
285
            </summary>
286
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
287
        </member>
288
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsString">
289
            <summary>
290
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
291
            </summary>
292
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
293
        </member>
294
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime">
295
            <summary>
296
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
297
            </summary>
298
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
299
        </member>
300
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset">
301
            <summary>
302
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
303
            </summary>
304
            <returns>
305
            A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.
306
            </returns>
307
        </member>
308
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
309
            <summary>
310
            Reads the next JSON token from the stream.
311
            </summary>
312
            <returns>
313
            true if the next token was read successfully; false if there are no more tokens to read.
314
            </returns>
315
        </member>
316
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
317
            <summary>
318
            Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed.
319
            </summary>
320
        </member>
321
        <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
322
            <summary>
323
            Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.
324
            </summary>
325
            <value>
326
                    <c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
327
            </value>
328
        </member>
329
        <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
330
            <summary>
331
            Gets or sets a value indicating whether the root object will be read as a JSON array.
332
            </summary>
333
            <value>
334
                    <c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
335
            </value>
336
        </member>
337
        <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
338
            <summary>
339
            Gets or sets the <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.
340
            </summary>
341
            <value>The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
342
        </member>
343
        <member name="T:Newtonsoft.Json.Bson.BsonWriter">
344
            <summary>
345
            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
346
            </summary>
347
        </member>
348
        <member name="T:Newtonsoft.Json.JsonWriter">
349
            <summary>
350
            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
351
            </summary>
352
        </member>
353
        <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
354
            <summary>
355
            Creates an instance of the <c>JsonWriter</c> class. 
356
            </summary>
357
        </member>
358
        <member name="M:Newtonsoft.Json.JsonWriter.Flush">
359
            <summary>
360
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
361
            </summary>
362
        </member>
363
        <member name="M:Newtonsoft.Json.JsonWriter.Close">
364
            <summary>
365
            Closes this stream and the underlying stream.
366
            </summary>
367
        </member>
368
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
369
            <summary>
370
            Writes the beginning of a Json object.
371
            </summary>
372
        </member>
373
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
374
            <summary>
375
            Writes the end of a Json object.
376
            </summary>
377
        </member>
378
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
379
            <summary>
380
            Writes the beginning of a Json array.
381
            </summary>
382
        </member>
383
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
384
            <summary>
385
            Writes the end of an array.
386
            </summary>
387
        </member>
388
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
389
            <summary>
390
            Writes the start of a constructor with the given name.
391
            </summary>
392
            <param name="name">The name of the constructor.</param>
393
        </member>
394
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
395
            <summary>
396
            Writes the end constructor.
397
            </summary>
398
        </member>
399
        <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
400
            <summary>
401
            Writes the property name of a name/value pair on a Json object.
402
            </summary>
403
            <param name="name">The name of the property.</param>
404
        </member>
405
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
406
            <summary>
407
            Writes the end of the current Json object or array.
408
            </summary>
409
        </member>
410
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
411
            <summary>
412
            Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
413
            </summary>
414
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
415
        </member>
416
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
417
            <summary>
418
            Writes the specified end token.
419
            </summary>
420
            <param name="token">The end token to write.</param>
421
        </member>
422
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
423
            <summary>
424
            Writes indent characters.
425
            </summary>
426
        </member>
427
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
428
            <summary>
429
            Writes the JSON value delimiter.
430
            </summary>
431
        </member>
432
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
433
            <summary>
434
            Writes an indent space.
435
            </summary>
436
        </member>
437
        <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
438
            <summary>
439
            Writes a null value.
440
            </summary>
441
        </member>
442
        <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
443
            <summary>
444
            Writes an undefined value.
445
            </summary>
446
        </member>
447
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
448
            <summary>
449
            Writes raw JSON without changing the writer's state.
450
            </summary>
451
            <param name="json">The raw JSON to write.</param>
452
        </member>
453
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
454
            <summary>
455
            Writes raw JSON where a value is expected and updates the writer's state.
456
            </summary>
457
            <param name="json">The raw JSON to write.</param>
458
        </member>
459
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
460
            <summary>
461
            Writes a <see cref="T:System.String"/> value.
462
            </summary>
463
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
464
        </member>
465
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
466
            <summary>
467
            Writes a <see cref="T:System.Int32"/> value.
468
            </summary>
469
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
470
        </member>
471
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
472
            <summary>
473
            Writes a <see cref="T:System.UInt32"/> value.
474
            </summary>
475
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
476
        </member>
477
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
478
            <summary>
479
            Writes a <see cref="T:System.Int64"/> value.
480
            </summary>
481
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
482
        </member>
483
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
484
            <summary>
485
            Writes a <see cref="T:System.UInt64"/> value.
486
            </summary>
487
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
488
        </member>
489
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
490
            <summary>
491
            Writes a <see cref="T:System.Single"/> value.
492
            </summary>
493
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
494
        </member>
495
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
496
            <summary>
497
            Writes a <see cref="T:System.Double"/> value.
498
            </summary>
499
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
500
        </member>
501
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
502
            <summary>
503
            Writes a <see cref="T:System.Boolean"/> value.
504
            </summary>
505
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
506
        </member>
507
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
508
            <summary>
509
            Writes a <see cref="T:System.Int16"/> value.
510
            </summary>
511
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
512
        </member>
513
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
514
            <summary>
515
            Writes a <see cref="T:System.UInt16"/> value.
516
            </summary>
517
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
518
        </member>
519
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
520
            <summary>
521
            Writes a <see cref="T:System.Char"/> value.
522
            </summary>
523
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
524
        </member>
525
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
526
            <summary>
527
            Writes a <see cref="T:System.Byte"/> value.
528
            </summary>
529
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
530
        </member>
531
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
532
            <summary>
533
            Writes a <see cref="T:System.SByte"/> value.
534
            </summary>
535
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
536
        </member>
537
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
538
            <summary>
539
            Writes a <see cref="T:System.Decimal"/> value.
540
            </summary>
541
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
542
        </member>
543
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
544
            <summary>
545
            Writes a <see cref="T:System.DateTime"/> value.
546
            </summary>
547
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
548
        </member>
549
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
550
            <summary>
551
            Writes a <see cref="T:System.DateTimeOffset"/> value.
552
            </summary>
553
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
554
        </member>
555
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
556
            <summary>
557
            Writes a <see cref="T:System.Guid"/> value.
558
            </summary>
559
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
560
        </member>
561
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
562
            <summary>
563
            Writes a <see cref="T:System.TimeSpan"/> value.
564
            </summary>
565
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
566
        </member>
567
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
568
            <summary>
569
            Writes a <see cref="T:System.Nullable`1"/> value.
570
            </summary>
571
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
572
        </member>
573
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
574
            <summary>
575
            Writes a <see cref="T:System.Nullable`1"/> value.
576
            </summary>
577
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
578
        </member>
579
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
580
            <summary>
581
            Writes a <see cref="T:System.Nullable`1"/> value.
582
            </summary>
583
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
584
        </member>
585
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
586
            <summary>
587
            Writes a <see cref="T:System.Nullable`1"/> value.
588
            </summary>
589
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
590
        </member>
591
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
592
            <summary>
593
            Writes a <see cref="T:System.Nullable`1"/> value.
594
            </summary>
595
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
596
        </member>
597
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
598
            <summary>
599
            Writes a <see cref="T:System.Nullable`1"/> value.
600
            </summary>
601
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
602
        </member>
603
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
604
            <summary>
605
            Writes a <see cref="T:System.Nullable`1"/> value.
606
            </summary>
607
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
608
        </member>
609
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
610
            <summary>
611
            Writes a <see cref="T:System.Nullable`1"/> value.
612
            </summary>
613
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
614
        </member>
615
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
616
            <summary>
617
            Writes a <see cref="T:System.Nullable`1"/> value.
618
            </summary>
619
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
620
        </member>
621
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
622
            <summary>
623
            Writes a <see cref="T:System.Nullable`1"/> value.
624
            </summary>
625
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
626
        </member>
627
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
628
            <summary>
629
            Writes a <see cref="T:System.Nullable`1"/> value.
630
            </summary>
631
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
632
        </member>
633
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
634
            <summary>
635
            Writes a <see cref="T:System.Nullable`1"/> value.
636
            </summary>
637
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
638
        </member>
639
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
640
            <summary>
641
            Writes a <see cref="T:System.Nullable`1"/> value.
642
            </summary>
643
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
644
        </member>
645
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
646
            <summary>
647
            Writes a <see cref="T:System.Nullable`1"/> value.
648
            </summary>
649
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
650
        </member>
651
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">
652
            <summary>
653
            Writes a <see cref="T:System.Nullable`1"/> value.
654
            </summary>
655
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
656
        </member>
657
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
658
            <summary>
659
            Writes a <see cref="T:System.Nullable`1"/> value.
660
            </summary>
661
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
662
        </member>
663
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
664
            <summary>
665
            Writes a <see cref="T:System.Nullable`1"/> value.
666
            </summary>
667
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
668
        </member>
669
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
670
            <summary>
671
            Writes a <see cref="T:Byte[]"/> value.
672
            </summary>
673
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
674
        </member>
675
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
676
            <summary>
677
            Writes a <see cref="T:System.Uri"/> value.
678
            </summary>
679
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
680
        </member>
681
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
682
            <summary>
683
            Writes a <see cref="T:System.Object"/> value.
684
            An error will raised if the value cannot be written as a single JSON token.
685
            </summary>
686
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
687
        </member>
688
        <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
689
            <summary>
690
            Writes out a comment <code>/*...*/</code> containing the specified text. 
691
            </summary>
692
            <param name="text">Text to place inside the comment.</param>
693
        </member>
694
        <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
695
            <summary>
696
            Writes out the given white space.
697
            </summary>
698
            <param name="ws">The string of white space characters.</param>
699
        </member>
700
        <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
701
            <summary>
702
            Gets or sets a value indicating whether the underlying stream or
703
            <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed.
704
            </summary>
705
            <value>
706
            true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
707
            the writer is closed; otherwise false. The default is true.
708
            </value>
709
        </member>
710
        <member name="P:Newtonsoft.Json.JsonWriter.Top">
711
            <summary>
712
            Gets the top.
713
            </summary>
714
            <value>The top.</value>
715
        </member>
716
        <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
717
            <summary>
718
            Gets the state of the writer.
719
            </summary>
720
        </member>
721
        <member name="P:Newtonsoft.Json.JsonWriter.Path">
722
            <summary>
723
            Gets the path of the writer. 
724
            </summary>
725
        </member>
726
        <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
727
            <summary>
728
            Indicates how JSON text output is formatted.
729
            </summary>
730
        </member>
731
        <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
732
            <summary>
733
            Get or set how dates are written to JSON text.
734
            </summary>
735
        </member>
736
        <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
737
            <summary>
738
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when writing JSON.
739
            </summary>
740
        </member>
741
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
742
            <summary>
743
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
744
            </summary>
745
            <param name="stream">The stream.</param>
746
        </member>
747
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
748
            <summary>
749
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
750
            </summary>
751
            <param name="writer">The writer.</param>
752
        </member>
753
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
754
            <summary>
755
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
756
            </summary>
757
        </member>
758
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
759
            <summary>
760
            Writes the end.
761
            </summary>
762
            <param name="token">The token.</param>
763
        </member>
764
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
765
            <summary>
766
            Writes out a comment <code>/*...*/</code> containing the specified text.
767
            </summary>
768
            <param name="text">Text to place inside the comment.</param>
769
        </member>
770
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
771
            <summary>
772
            Writes the start of a constructor with the given name.
773
            </summary>
774
            <param name="name">The name of the constructor.</param>
775
        </member>
776
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
777
            <summary>
778
            Writes raw JSON.
779
            </summary>
780
            <param name="json">The raw JSON to write.</param>
781
        </member>
782
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
783
            <summary>
784
            Writes raw JSON where a value is expected and updates the writer's state.
785
            </summary>
786
            <param name="json">The raw JSON to write.</param>
787
        </member>
788
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
789
            <summary>
790
            Writes the beginning of a Json array.
791
            </summary>
792
        </member>
793
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
794
            <summary>
795
            Writes the beginning of a Json object.
796
            </summary>
797
        </member>
798
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
799
            <summary>
800
            Writes the property name of a name/value pair on a Json object.
801
            </summary>
802
            <param name="name">The name of the property.</param>
803
        </member>
804
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
805
            <summary>
806
            Closes this stream and the underlying stream.
807
            </summary>
808
        </member>
809
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
810
            <summary>
811
            Writes a null value.
812
            </summary>
813
        </member>
814
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
815
            <summary>
816
            Writes an undefined value.
817
            </summary>
818
        </member>
819
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
820
            <summary>
821
            Writes a <see cref="T:System.String"/> value.
822
            </summary>
823
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
824
        </member>
825
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
826
            <summary>
827
            Writes a <see cref="T:System.Int32"/> value.
828
            </summary>
829
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
830
        </member>
831
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
832
            <summary>
833
            Writes a <see cref="T:System.UInt32"/> value.
834
            </summary>
835
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
836
        </member>
837
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
838
            <summary>
839
            Writes a <see cref="T:System.Int64"/> value.
840
            </summary>
841
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
842
        </member>
843
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
844
            <summary>
845
            Writes a <see cref="T:System.UInt64"/> value.
846
            </summary>
847
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
848
        </member>
849
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
850
            <summary>
851
            Writes a <see cref="T:System.Single"/> value.
852
            </summary>
853
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
854
        </member>
855
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
856
            <summary>
857
            Writes a <see cref="T:System.Double"/> value.
858
            </summary>
859
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
860
        </member>
861
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
862
            <summary>
863
            Writes a <see cref="T:System.Boolean"/> value.
864
            </summary>
865
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
866
        </member>
867
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
868
            <summary>
869
            Writes a <see cref="T:System.Int16"/> value.
870
            </summary>
871
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
872
        </member>
873
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
874
            <summary>
875
            Writes a <see cref="T:System.UInt16"/> value.
876
            </summary>
877
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
878
        </member>
879
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
880
            <summary>
881
            Writes a <see cref="T:System.Char"/> value.
882
            </summary>
883
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
884
        </member>
885
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
886
            <summary>
887
            Writes a <see cref="T:System.Byte"/> value.
888
            </summary>
889
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
890
        </member>
891
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
892
            <summary>
893
            Writes a <see cref="T:System.SByte"/> value.
894
            </summary>
895
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
896
        </member>
897
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
898
            <summary>
899
            Writes a <see cref="T:System.Decimal"/> value.
900
            </summary>
901
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
902
        </member>
903
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
904
            <summary>
905
            Writes a <see cref="T:System.DateTime"/> value.
906
            </summary>
907
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
908
        </member>
909
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)">
910
            <summary>
911
            Writes a <see cref="T:System.DateTimeOffset"/> value.
912
            </summary>
913
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
914
        </member>
915
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
916
            <summary>
917
            Writes a <see cref="T:Byte[]"/> value.
918
            </summary>
919
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
920
        </member>
921
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
922
            <summary>
923
            Writes a <see cref="T:System.Guid"/> value.
924
            </summary>
925
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
926
        </member>
927
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
928
            <summary>
929
            Writes a <see cref="T:System.TimeSpan"/> value.
930
            </summary>
931
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
932
        </member>
933
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
934
            <summary>
935
            Writes a <see cref="T:System.Uri"/> value.
936
            </summary>
937
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
938
        </member>
939
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
940
            <summary>
941
            Writes a <see cref="T:Byte[]"/> value that represents a BSON object id.
942
            </summary>
943
            <param name="value">The Object ID value to write.</param>
944
        </member>
945
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
946
            <summary>
947
            Writes a BSON regex.
948
            </summary>
949
            <param name="pattern">The regex pattern.</param>
950
            <param name="options">The regex options.</param>
951
        </member>
952
        <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
953
            <summary>
954
            Gets or sets the <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.
955
            When set to <see cref="F:System.DateTimeKind.Unspecified"/> no conversion will occur.
956
            </summary>
957
            <value>The <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
958
        </member>
959
        <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
960
            <summary>
961
            Represents a BSON Oid (object id).
962
            </summary>
963
        </member>
964
        <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">
965
            <summary>
966
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.
967
            </summary>
968
            <param name="value">The Oid value.</param>
969
        </member>
970
        <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
971
            <summary>
972
            Gets or sets the value of the Oid.
973
            </summary>
974
            <value>The value of the Oid.</value>
975
        </member>
976
        <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
977
            <summary>
978
            Converts a binary value to and from a base 64 string value.
979
            </summary>
980
        </member>
981
        <member name="T:Newtonsoft.Json.JsonConverter">
982
            <summary>
983
            Converts an object to and from JSON.
984
            </summary>
985
        </member>
986
        <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
987
            <summary>
988
            Writes the JSON representation of the object.
989
            </summary>
990
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
991
            <param name="value">The value.</param>
992
            <param name="serializer">The calling serializer.</param>
993
        </member>
994
        <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
995
            <summary>
996
            Reads the JSON representation of the object.
997
            </summary>
998
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
999
            <param name="objectType">Type of the object.</param>
1000
            <param name="existingValue">The existing value of object being read.</param>
1001
            <param name="serializer">The calling serializer.</param>
1002
            <returns>The object value.</returns>
1003
        </member>
1004
        <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
1005
            <summary>
1006
            Determines whether this instance can convert the specified object type.
1007
            </summary>
1008
            <param name="objectType">Type of the object.</param>
1009
            <returns>
1010
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1011
            </returns>
1012
        </member>
1013
        <member name="M:Newtonsoft.Json.JsonConverter.GetSchema">
1014
            <summary>
1015
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.
1016
            </summary>
1017
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns>
1018
        </member>
1019
        <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
1020
            <summary>
1021
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
1022
            </summary>
1023
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
1024
        </member>
1025
        <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
1026
            <summary>
1027
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1028
            </summary>
1029
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
1030
        </member>
1031
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1032
            <summary>
1033
            Writes the JSON representation of the object.
1034
            </summary>
1035
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1036
            <param name="value">The value.</param>
1037
            <param name="serializer">The calling serializer.</param>
1038
        </member>
1039
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1040
            <summary>
1041
            Reads the JSON representation of the object.
1042
            </summary>
1043
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1044
            <param name="objectType">Type of the object.</param>
1045
            <param name="existingValue">The existing value of object being read.</param>
1046
            <param name="serializer">The calling serializer.</param>
1047
            <returns>The object value.</returns>
1048
        </member>
1049
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
1050
            <summary>
1051
            Determines whether this instance can convert the specified object type.
1052
            </summary>
1053
            <param name="objectType">Type of the object.</param>
1054
            <returns>
1055
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1056
            </returns>
1057
        </member>
1058
        <member name="T:Newtonsoft.Json.Converters.DataSetConverter">
1059
            <summary>
1060
            Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.
1061
            </summary>
1062
        </member>
1063
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1064
            <summary>
1065
            Writes the JSON representation of the object.
1066
            </summary>
1067
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1068
            <param name="value">The value.</param>
1069
            <param name="serializer">The calling serializer.</param>
1070
        </member>
1071
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1072
            <summary>
1073
            Reads the JSON representation of the object.
1074
            </summary>
1075
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1076
            <param name="objectType">Type of the object.</param>
1077
            <param name="existingValue">The existing value of object being read.</param>
1078
            <param name="serializer">The calling serializer.</param>
1079
            <returns>The object value.</returns>
1080
        </member>
1081
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
1082
            <summary>
1083
            Determines whether this instance can convert the specified value type.
1084
            </summary>
1085
            <param name="valueType">Type of the value.</param>
1086
            <returns>
1087
                    <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1088
            </returns>
1089
        </member>
1090
        <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
1091
            <summary>
1092
            Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
1093
            </summary>
1094
        </member>
1095
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1096
            <summary>
1097
            Writes the JSON representation of the object.
1098
            </summary>
1099
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1100
            <param name="value">The value.</param>
1101
            <param name="serializer">The calling serializer.</param>
1102
        </member>
1103
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1104
            <summary>
1105
            Reads the JSON representation of the object.
1106
            </summary>
1107
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1108
            <param name="objectType">Type of the object.</param>
1109
            <param name="existingValue">The existing value of object being read.</param>
1110
            <param name="serializer">The calling serializer.</param>
1111
            <returns>The object value.</returns>
1112
        </member>
1113
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
1114
            <summary>
1115
            Determines whether this instance can convert the specified value type.
1116
            </summary>
1117
            <param name="valueType">Type of the value.</param>
1118
            <returns>
1119
                    <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1120
            </returns>
1121
        </member>
1122
        <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
1123
            <summary>
1124
            Create a custom object
1125
            </summary>
1126
            <typeparam name="T">The object type to convert.</typeparam>
1127
        </member>
1128
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1129
            <summary>
1130
            Writes the JSON representation of the object.
1131
            </summary>
1132
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1133
            <param name="value">The value.</param>
1134
            <param name="serializer">The calling serializer.</param>
1135
        </member>
1136
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1137
            <summary>
1138
            Reads the JSON representation of the object.
1139
            </summary>
1140
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1141
            <param name="objectType">Type of the object.</param>
1142
            <param name="existingValue">The existing value of object being read.</param>
1143
            <param name="serializer">The calling serializer.</param>
1144
            <returns>The object value.</returns>
1145
        </member>
1146
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
1147
            <summary>
1148
            Creates an object which will then be populated by the serializer.
1149
            </summary>
1150
            <param name="objectType">Type of the object.</param>
1151
            <returns>The created object.</returns>
1152
        </member>
1153
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
1154
            <summary>
1155
            Determines whether this instance can convert the specified object type.
1156
            </summary>
1157
            <param name="objectType">Type of the object.</param>
1158
            <returns>
1159
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1160
            </returns>
1161
        </member>
1162
        <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
1163
            <summary>
1164
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1165
            </summary>
1166
            <value>
1167
                    <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
1168
            </value>
1169
        </member>
1170
        <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
1171
            <summary>
1172
            Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
1173
            </summary>
1174
        </member>
1175
        <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">
1176
            <summary>
1177
            Determines whether this instance can convert the specified object type.
1178
            </summary>
1179
            <param name="objectType">Type of the object.</param>
1180
            <returns>
1181
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1182
            </returns>
1183
        </member>
1184
        <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter">
1185
            <summary>
1186
            Converts an Entity Framework EntityKey to and from JSON.
1187
            </summary>
1188
        </member>
1189
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1190
            <summary>
1191
            Writes the JSON representation of the object.
1192
            </summary>
1193
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1194
            <param name="value">The value.</param>
1195
            <param name="serializer">The calling serializer.</param>
1196
        </member>
1197
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1198
            <summary>
1199
            Reads the JSON representation of the object.
1200
            </summary>
1201
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1202
            <param name="objectType">Type of the object.</param>
1203
            <param name="existingValue">The existing value of object being read.</param>
1204
            <param name="serializer">The calling serializer.</param>
1205
            <returns>The object value.</returns>
1206
        </member>
1207
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)">
1208
            <summary>
1209
            Determines whether this instance can convert the specified object type.
1210
            </summary>
1211
            <param name="objectType">Type of the object.</param>
1212
            <returns>
1213
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1214
            </returns>
1215
        </member>
1216
        <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
1217
            <summary>
1218
            Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
1219
            </summary>
1220
        </member>
1221
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1222
            <summary>
1223
            Writes the JSON representation of the object.
1224
            </summary>
1225
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1226
            <param name="value">The value.</param>
1227
            <param name="serializer">The calling serializer.</param>
1228
        </member>
1229
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1230
            <summary>
1231
            Reads the JSON representation of the object.
1232
            </summary>
1233
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1234
            <param name="objectType">Type of the object.</param>
1235
            <param name="existingValue">The existing value of object being read.</param>
1236
            <param name="serializer">The calling serializer.</param>
1237
            <returns>The object value.</returns>
1238
        </member>
1239
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
1240
            <summary>
1241
            Determines whether this instance can convert the specified object type.
1242
            </summary>
1243
            <param name="objectType">Type of the object.</param>
1244
            <returns>
1245
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1246
            </returns>
1247
        </member>
1248
        <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
1249
            <summary>
1250
            Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
1251
            </summary>
1252
        </member>
1253
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1254
            <summary>
1255
            Writes the JSON representation of the object.
1256
            </summary>
1257
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1258
            <param name="value">The value.</param>
1259
            <param name="serializer">The calling serializer.</param>
1260
        </member>
1261
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1262
            <summary>
1263
            Reads the JSON representation of the object.
1264
            </summary>
1265
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1266
            <param name="objectType">Type of the object.</param>
1267
            <param name="existingValue">The existing value of object being read.</param>
1268
            <param name="serializer">The calling serializer.</param>
1269
            <returns>The object value.</returns>
1270
        </member>
1271
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
1272
            <summary>
1273
            Determines whether this instance can convert the specified object type.
1274
            </summary>
1275
            <param name="objectType">Type of the object.</param>
1276
            <returns>
1277
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1278
            </returns>
1279
        </member>
1280
        <member name="T:Newtonsoft.Json.Converters.RegexConverter">
1281
            <summary>
1282
            Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
1283
            </summary>
1284
        </member>
1285
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1286
            <summary>
1287
            Writes the JSON representation of the object.
1288
            </summary>
1289
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1290
            <param name="value">The value.</param>
1291
            <param name="serializer">The calling serializer.</param>
1292
        </member>
1293
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1294
            <summary>
1295
            Reads the JSON representation of the object.
1296
            </summary>
1297
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1298
            <param name="objectType">Type of the object.</param>
1299
            <param name="existingValue">The existing value of object being read.</param>
1300
            <param name="serializer">The calling serializer.</param>
1301
            <returns>The object value.</returns>
1302
        </member>
1303
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
1304
            <summary>
1305
            Determines whether this instance can convert the specified object type.
1306
            </summary>
1307
            <param name="objectType">Type of the object.</param>
1308
            <returns>
1309
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1310
            </returns>
1311
        </member>
1312
        <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
1313
            <summary>
1314
            Converts an <see cref="T:System.Enum"/> to and from its name string value.
1315
            </summary>
1316
        </member>
1317
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1318
            <summary>
1319
            Writes the JSON representation of the object.
1320
            </summary>
1321
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1322
            <param name="value">The value.</param>
1323
            <param name="serializer">The calling serializer.</param>
1324
        </member>
1325
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1326
            <summary>
1327
            Reads the JSON representation of the object.
1328
            </summary>
1329
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1330
            <param name="objectType">Type of the object.</param>
1331
            <param name="existingValue">The existing value of object being read.</param>
1332
            <param name="serializer">The calling serializer.</param>
1333
            <returns>The object value.</returns>
1334
        </member>
1335
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.GetEnumNameMap(System.Type)">
1336
            <summary>
1337
            A cached representation of the Enum string representation to respect per Enum field name.
1338
            </summary>
1339
            <param name="t">The type of the Enum.</param>
1340
            <returns>A map of enum field name to either the field name, or the configured enum member name (<see cref="T:System.Runtime.Serialization.EnumMemberAttribute"/>).</returns>
1341
        </member>
1342
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
1343
            <summary>
1344
            Determines whether this instance can convert the specified object type.
1345
            </summary>
1346
            <param name="objectType">Type of the object.</param>
1347
            <returns>
1348
            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1349
            </returns>
1350
        </member>
1351
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
1352
            <summary>
1353
            Gets or sets a value indicating whether the written enum text should be camel case.
1354
            </summary>
1355
            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
1356
        </member>
1357
        <member name="T:Newtonsoft.Json.ConstructorHandling">
1358
            <summary>
1359
            Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1360
            </summary>
1361
        </member>
1362
        <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
1363
            <summary>
1364
            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.
1365
            </summary>
1366
        </member>
1367
        <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
1368
            <summary>
1369
            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.
1370
            </summary>
1371
        </member>
1372
        <member name="T:Newtonsoft.Json.Converters.VersionConverter">
1373
            <summary>
1374
            Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4").
1375
            </summary>
1376
        </member>
1377
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1378
            <summary>
1379
            Writes the JSON representation of the object.
1380
            </summary>
1381
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1382
            <param name="value">The value.</param>
1383
            <param name="serializer">The calling serializer.</param>
1384
        </member>
1385
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1386
            <summary>
1387
            Reads the JSON representation of the object.
1388
            </summary>
1389
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1390
            <param name="objectType">Type of the object.</param>
1391
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
1392
            <param name="serializer">The calling serializer.</param>
1393
            <returns>The object value.</returns>
1394
        </member>
1395
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
1396
            <summary>
1397
            Determines whether this instance can convert the specified object type.
1398
            </summary>
1399
            <param name="objectType">Type of the object.</param>
1400
            <returns>
1401
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1402
            </returns>
1403
        </member>
1404
        <member name="T:Newtonsoft.Json.DateFormatHandling">
1405
            <summary>
1406
            Specifies how dates are formatted when writing JSON text.
1407
            </summary>
1408
        </member>
1409
        <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
1410
            <summary>
1411
            Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
1412
            </summary>
1413
        </member>
1414
        <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
1415
            <summary>
1416
            Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
1417
            </summary>
1418
        </member>
1419
        <member name="T:Newtonsoft.Json.DateParseHandling">
1420
            <summary>
1421
            Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
1422
            </summary>
1423
        </member>
1424
        <member name="F:Newtonsoft.Json.DateParseHandling.None">
1425
            <summary>
1426
            Date formatted strings are not parsed to a date type and are read as strings.
1427
            </summary>
1428
        </member>
1429
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
1430
            <summary>
1431
            Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.
1432
            </summary>
1433
        </member>
1434
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
1435
            <summary>
1436
            Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"/>.
1437
            </summary>
1438
        </member>
1439
        <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
1440
            <summary>
1441
            Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
1442
            </summary>
1443
        </member>
1444
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
1445
            <summary>
1446
            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.
1447
            </summary>
1448
        </member>
1449
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
1450
            <summary>
1451
            Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
1452
            </summary>
1453
        </member>
1454
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
1455
            <summary>
1456
            Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
1457
            If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
1458
            </summary>
1459
        </member>
1460
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
1461
            <summary>
1462
            Time zone information should be preserved when converting.
1463
            </summary>
1464
        </member>
1465
        <member name="T:Newtonsoft.Json.Formatting">
1466
            <summary>
1467
            Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
1468
            </summary>
1469
        </member>
1470
        <member name="F:Newtonsoft.Json.Formatting.None">
1471
            <summary>
1472
            No special formatting is applied. This is the default.
1473
            </summary>
1474
        </member>
1475
        <member name="F:Newtonsoft.Json.Formatting.Indented">
1476
            <summary>
1477
            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.
1478
            </summary>
1479
        </member>
1480
        <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1481
            <summary>
1482
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1483
            </summary>
1484
        </member>
1485
        <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
1486
            <summary>
1487
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
1488
            </summary>
1489
        </member>
1490
        <member name="T:Newtonsoft.Json.JsonContainerAttribute">
1491
            <summary>
1492
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
1493
            </summary>
1494
        </member>
1495
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
1496
            <summary>
1497
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
1498
            </summary>
1499
        </member>
1500
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
1501
            <summary>
1502
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
1503
            </summary>
1504
            <param name="id">The container Id.</param>
1505
        </member>
1506
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
1507
            <summary>
1508
            Gets or sets the id.
1509
            </summary>
1510
            <value>The id.</value>
1511
        </member>
1512
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
1513
            <summary>
1514
            Gets or sets the title.
1515
            </summary>
1516
            <value>The title.</value>
1517
        </member>
1518
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
1519
            <summary>
1520
            Gets or sets the description.
1521
            </summary>
1522
            <value>The description.</value>
1523
        </member>
1524
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
1525
            <summary>
1526
            Gets the collection's items converter.
1527
            </summary>
1528
            <value>The collection's items converter.</value>
1529
        </member>
1530
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
1531
            <summary>
1532
            Gets or sets a value that indicates whether to preserve object references.
1533
            </summary>
1534
            <value>
1535
                    <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
1536
            </value>
1537
        </member>
1538
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
1539
            <summary>
1540
            Gets or sets a value that indicates whether to preserve collection's items references.
1541
            </summary>
1542
            <value>
1543
                    <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
1544
            </value>
1545
        </member>
1546
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
1547
            <summary>
1548
            Gets or sets the reference loop handling used when serializing the collection's items.
1549
            </summary>
1550
            <value>The reference loop handling.</value>
1551
        </member>
1552
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
1553
            <summary>
1554
            Gets or sets the type name handling used when serializing the collection's items.
1555
            </summary>
1556
            <value>The type name handling.</value>
1557
        </member>
1558
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
1559
            <summary>
1560
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
1561
            </summary>
1562
        </member>
1563
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
1564
            <summary>
1565
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
1566
            </summary>
1567
            <param name="id">The container Id.</param>
1568
        </member>
1569
        <member name="T:Newtonsoft.Json.JsonException">
1570
            <summary>
1571
            The exception thrown when an error occurs during Json serialization or deserialization.
1572
            </summary>
1573
        </member>
1574
        <member name="M:Newtonsoft.Json.JsonException.#ctor">
1575
            <summary>
1576
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1577
            </summary>
1578
        </member>
1579
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
1580
            <summary>
1581
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1582
            with a specified error message.
1583
            </summary>
1584
            <param name="message">The error message that explains the reason for the exception.</param>
1585
        </member>
1586
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
1587
            <summary>
1588
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1589
            with a specified error message and a reference to the inner exception that is the cause of this exception.
1590
            </summary>
1591
            <param name="message">The error message that explains the reason for the exception.</param>
1592
            <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>
1593
        </member>
1594
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1595
            <summary>
1596
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1597
            </summary>
1598
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
1599
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
1600
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
1601
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
1602
        </member>
1603
        <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
1604
            <summary>
1605
            Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
1606
            </summary>
1607
        </member>
1608
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String,System.Type)">
1609
            <summary>
1610
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
1611
            </summary>
1612
            <param name="name">The name.</param>
1613
            <param name="propertyType">Type of the property.</param>
1614
        </member>
1615
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
1616
            <summary>
1617
            When overridden in a derived class, returns whether resetting an object changes its value.
1618
            </summary>
1619
            <returns>
1620
            true if resetting the component changes its value; otherwise, false.
1621
            </returns>
1622
            <param name="component">The component to test for reset capability. 
1623
                            </param>
1624
        </member>
1625
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
1626
            <summary>
1627
            When overridden in a derived class, gets the current value of the property on a component.
1628
            </summary>
1629
            <returns>
1630
            The value of a property for a given component.
1631
            </returns>
1632
            <param name="component">The component with the property for which to retrieve the value. 
1633
                            </param>
1634
        </member>
1635
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
1636
            <summary>
1637
            When overridden in a derived class, resets the value for this property of the component to the default value.
1638
            </summary>
1639
            <param name="component">The component with the property value that is to be reset to the default value. 
1640
                            </param>
1641
        </member>
1642
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
1643
            <summary>
1644
            When overridden in a derived class, sets the value of the component to a different value.
1645
            </summary>
1646
            <param name="component">The component with the property value that is to be set. 
1647
                            </param><param name="value">The new value. 
1648
                            </param>
1649
        </member>
1650
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
1651
            <summary>
1652
            When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
1653
            </summary>
1654
            <returns>
1655
            true if the property should be persisted; otherwise, false.
1656
            </returns>
1657
            <param name="component">The component with the property to be examined for persistence. 
1658
                            </param>
1659
        </member>
1660
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
1661
            <summary>
1662
            When overridden in a derived class, gets the type of the component this property is bound to.
1663
            </summary>
1664
            <returns>
1665
            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.
1666
            </returns>
1667
        </member>
1668
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
1669
            <summary>
1670
            When overridden in a derived class, gets a value indicating whether this property is read-only.
1671
            </summary>
1672
            <returns>
1673
            true if the property is read-only; otherwise, false.
1674
            </returns>
1675
        </member>
1676
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
1677
            <summary>
1678
            When overridden in a derived class, gets the type of the property.
1679
            </summary>
1680
            <returns>
1681
            A <see cref="T:System.Type"/> that represents the type of the property.
1682
            </returns>
1683
        </member>
1684
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
1685
            <summary>
1686
            Gets the hash code for the name of the member.
1687
            </summary>
1688
            <value></value>
1689
            <returns>
1690
            The hash code for the name of the member.
1691
            </returns>
1692
        </member>
1693
        <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
1694
            <summary>
1695
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1696
            </summary>
1697
        </member>
1698
        <member name="T:Newtonsoft.Json.Serialization.JsonContract">
1699
            <summary>
1700
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1701
            </summary>
1702
        </member>
1703
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
1704
            <summary>
1705
            Gets the underlying type for the contract.
1706
            </summary>
1707
            <value>The underlying type for the contract.</value>
1708
        </member>
1709
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
1710
            <summary>
1711
            Gets or sets the type created during deserialization.
1712
            </summary>
1713
            <value>The type created during deserialization.</value>
1714
        </member>
1715
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
1716
            <summary>
1717
            Gets or sets whether this type contract is serialized as a reference.
1718
            </summary>
1719
            <value>Whether this type contract is serialized as a reference.</value>
1720
        </member>
1721
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
1722
            <summary>
1723
            Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for this contract.
1724
            </summary>
1725
            <value>The converter.</value>
1726
        </member>
1727
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized">
1728
            <summary>
1729
            Gets or sets the method called immediately after deserialization of the object.
1730
            </summary>
1731
            <value>The method called immediately after deserialization of the object.</value>
1732
        </member>
1733
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing">
1734
            <summary>
1735
            Gets or sets the method called during deserialization of the object.
1736
            </summary>
1737
            <value>The method called during deserialization of the object.</value>
1738
        </member>
1739
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized">
1740
            <summary>
1741
            Gets or sets the method called after serialization of the object graph.
1742
            </summary>
1743
            <value>The method called after serialization of the object graph.</value>
1744
        </member>
1745
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing">
1746
            <summary>
1747
            Gets or sets the method called before serialization of the object.
1748
            </summary>
1749
            <value>The method called before serialization of the object.</value>
1750
        </member>
1751
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
1752
            <summary>
1753
            Gets or sets the default creator method used to create the object.
1754
            </summary>
1755
            <value>The default creator method used to create the object.</value>
1756
        </member>
1757
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
1758
            <summary>
1759
            Gets or sets a value indicating whether the default creator is non public.
1760
            </summary>
1761
            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
1762
        </member>
1763
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError">
1764
            <summary>
1765
            Gets or sets the method called when an error is thrown during the serialization of the object.
1766
            </summary>
1767
            <value>The method called when an error is thrown during the serialization of the object.</value>
1768
        </member>
1769
        <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
1770
            <summary>
1771
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
1772
            </summary>
1773
            <param name="underlyingType">The underlying type for the contract.</param>
1774
        </member>
1775
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
1776
            <summary>
1777
            Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1778
            </summary>
1779
            <value>The converter.</value>
1780
        </member>
1781
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
1782
            <summary>
1783
            Gets or sets a value indicating whether the collection items preserve object references.
1784
            </summary>
1785
            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
1786
        </member>
1787
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
1788
            <summary>
1789
            Gets or sets the collection item reference loop handling.
1790
            </summary>
1791
            <value>The reference loop handling.</value>
1792
        </member>
1793
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
1794
            <summary>
1795
            Gets or sets the collection item type name handling.
1796
            </summary>
1797
            <value>The type name handling.</value>
1798
        </member>
1799
        <member name="T:Newtonsoft.Json.Linq.JRaw">
1800
            <summary>
1801
            Represents a raw JSON string.
1802
            </summary>
1803
        </member>
1804
        <member name="T:Newtonsoft.Json.Linq.JValue">
1805
            <summary>
1806
            Represents a value in JSON (string, integer, date, etc).
1807
            </summary>
1808
        </member>
1809
        <member name="T:Newtonsoft.Json.Linq.JToken">
1810
            <summary>
1811
            Represents an abstract JSON token.
1812
            </summary>
1813
        </member>
1814
        <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
1815
            <summary>
1816
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
1817
            </summary>
1818
            <typeparam name="T">The type of token</typeparam>
1819
        </member>
1820
        <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
1821
            <summary>
1822
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
1823
            </summary>
1824
            <value></value>
1825
        </member>
1826
        <member name="T:Newtonsoft.Json.IJsonLineInfo">
1827
            <summary>
1828
            Provides an interface to enable a class to return line and position information.
1829
            </summary>
1830
        </member>
1831
        <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
1832
            <summary>
1833
            Gets a value indicating whether the class can return line information.
1834
            </summary>
1835
            <returns>
1836
                    <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
1837
            </returns>
1838
        </member>
1839
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
1840
            <summary>
1841
            Gets the current line number.
1842
            </summary>
1843
            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>
1844
        </member>
1845
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
1846
            <summary>
1847
            Gets the current line position.
1848
            </summary>
1849
            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>
1850
        </member>
1851
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
1852
            <summary>
1853
            Compares the values of two tokens, including the values of all descendant tokens.
1854
            </summary>
1855
            <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
1856
            <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
1857
            <returns>true if the tokens are equal; otherwise false.</returns>
1858
        </member>
1859
        <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
1860
            <summary>
1861
            Adds the specified content immediately after this token.
1862
            </summary>
1863
            <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
1864
        </member>
1865
        <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
1866
            <summary>
1867
            Adds the specified content immediately before this token.
1868
            </summary>
1869
            <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
1870
        </member>
1871
        <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
1872
            <summary>
1873
            Returns a collection of the ancestor tokens of this token.
1874
            </summary>
1875
            <returns>A collection of the ancestor tokens of this token.</returns>
1876
        </member>
1877
        <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
1878
            <summary>
1879
            Returns a collection of the sibling tokens after this token, in document order.
1880
            </summary>
1881
            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
1882
        </member>
1883
        <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
1884
            <summary>
1885
            Returns a collection of the sibling tokens before this token, in document order.
1886
            </summary>
1887
            <returns>A collection of the sibling tokens before this token, in document order.</returns>
1888
        </member>
1889
        <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
1890
            <summary>
1891
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
1892
            </summary>
1893
            <typeparam name="T">The type to convert the token to.</typeparam>
1894
            <param name="key">The token key.</param>
1895
            <returns>The converted token value.</returns>
1896
        </member>
1897
        <member name="M:Newtonsoft.Json.Linq.JToken.Children">
1898
            <summary>
1899
            Returns a collection of the child tokens of this token, in document order.
1900
            </summary>
1901
            <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>
1902
        </member>
1903
        <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
1904
            <summary>
1905
            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
1906
            </summary>
1907
            <typeparam name="T">The type to filter the child tokens on.</typeparam>
1908
            <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>
1909
        </member>
1910
        <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
1911
            <summary>
1912
            Returns a collection of the child values of this token, in document order.
1913
            </summary>
1914
            <typeparam name="T">The type to convert the values to.</typeparam>
1915
            <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>
1916
        </member>
1917
        <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
1918
            <summary>
1919
            Removes this token from its parent.
1920
            </summary>
1921
        </member>
1922
        <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
1923
            <summary>
1924
            Replaces this token with the specified token.
1925
            </summary>
1926
            <param name="value">The value.</param>
1927
        </member>
1928
        <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
1929
            <summary>
1930
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1931
            </summary>
1932
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
1933
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
1934
        </member>
1935
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
1936
            <summary>
1937
            Returns the indented JSON for this token.
1938
            </summary>
1939
            <returns>
1940
            The indented JSON for this token.
1941
            </returns>
1942
        </member>
1943
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
1944
            <summary>
1945
            Returns the JSON for this token using the given formatting and converters.
1946
            </summary>
1947
            <param name="formatting">Indicates how the output is formatted.</param>
1948
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
1949
            <returns>The JSON for this token using the given formatting and converters.</returns>
1950
        </member>
1951
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
1952
            <summary>
1953
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
1954
            </summary>
1955
            <param name="value">The value.</param>
1956
            <returns>The result of the conversion.</returns>
1957
        </member>
1958
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
1959
            <summary>
1960
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>.
1961
            </summary>
1962
            <param name="value">The value.</param>
1963
            <returns>The result of the conversion.</returns>
1964
        </member>
1965
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
1966
            <summary>
1967
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
1968
            </summary>
1969
            <param name="value">The value.</param>
1970
            <returns>The result of the conversion.</returns>
1971
        </member>
1972
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
1973
            <summary>
1974
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>.
1975
            </summary>
1976
            <param name="value">The value.</param>
1977
            <returns>The result of the conversion.</returns>
1978
        </member>
1979
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
1980
            <summary>
1981
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
1982
            </summary>
1983
            <param name="value">The value.</param>
1984
            <returns>The result of the conversion.</returns>
1985
        </member>
1986
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">
1987
            <summary>
1988
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
1989
            </summary>
1990
            <param name="value">The value.</param>
1991
            <returns>The result of the conversion.</returns>
1992
        </member>
1993
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
1994
            <summary>
1995
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
1996
            </summary>
1997
            <param name="value">The value.</param>
1998
            <returns>The result of the conversion.</returns>
1999
        </member>
2000
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
2001
            <summary>
2002
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2003
            </summary>
2004
            <param name="value">The value.</param>
2005
            <returns>The result of the conversion.</returns>
2006
        </member>
2007
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
2008
            <summary>
2009
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
2010
            </summary>
2011
            <param name="value">The value.</param>
2012
            <returns>The result of the conversion.</returns>
2013
        </member>
2014
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
2015
            <summary>
2016
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
2017
            </summary>
2018
            <param name="value">The value.</param>
2019
            <returns>The result of the conversion.</returns>
2020
        </member>
2021
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
2022
            <summary>
2023
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
2024
            </summary>
2025
            <param name="value">The value.</param>
2026
            <returns>The result of the conversion.</returns>
2027
        </member>
2028
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
2029
            <summary>
2030
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2031
            </summary>
2032
            <param name="value">The value.</param>
2033
            <returns>The result of the conversion.</returns>
2034
        </member>
2035
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
2036
            <summary>
2037
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2038
            </summary>
2039
            <param name="value">The value.</param>
2040
            <returns>The result of the conversion.</returns>
2041
        </member>
2042
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
2043
            <summary>
2044
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2045
            </summary>
2046
            <param name="value">The value.</param>
2047
            <returns>The result of the conversion.</returns>
2048
        </member>
2049
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
2050
            <summary>
2051
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>.
2052
            </summary>
2053
            <param name="value">The value.</param>
2054
            <returns>The result of the conversion.</returns>
2055
        </member>
2056
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
2057
            <summary>
2058
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2059
            </summary>
2060
            <param name="value">The value.</param>
2061
            <returns>The result of the conversion.</returns>
2062
        </member>
2063
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
2064
            <summary>
2065
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2066
            </summary>
2067
            <param name="value">The value.</param>
2068
            <returns>The result of the conversion.</returns>
2069
        </member>
2070
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
2071
            <summary>
2072
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
2073
            </summary>
2074
            <param name="value">The value.</param>
2075
            <returns>The result of the conversion.</returns>
2076
        </member>
2077
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
2078
            <summary>
2079
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2080
            </summary>
2081
            <param name="value">The value.</param>
2082
            <returns>The result of the conversion.</returns>
2083
        </member>
2084
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
2085
            <summary>
2086
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2087
            </summary>
2088
            <param name="value">The value.</param>
2089
            <returns>The result of the conversion.</returns>
2090
        </member>
2091
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
2092
            <summary>
2093
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
2094
            </summary>
2095
            <param name="value">The value.</param>
2096
            <returns>The result of the conversion.</returns>
2097
        </member>
2098
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
2099
            <summary>
2100
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
2101
            </summary>
2102
            <param name="value">The value.</param>
2103
            <returns>The result of the conversion.</returns>
2104
        </member>
2105
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
2106
            <summary>
2107
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
2108
            </summary>
2109
            <param name="value">The value.</param>
2110
            <returns>The result of the conversion.</returns>
2111
        </member>
2112
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
2113
            <summary>
2114
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
2115
            </summary>
2116
            <param name="value">The value.</param>
2117
            <returns>The result of the conversion.</returns>
2118
        </member>
2119
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
2120
            <summary>
2121
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
2122
            </summary>
2123
            <param name="value">The value.</param>
2124
            <returns>The result of the conversion.</returns>
2125
        </member>
2126
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
2127
            <summary>
2128
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte[]"/>.
2129
            </summary>
2130
            <param name="value">The value.</param>
2131
            <returns>The result of the conversion.</returns>
2132
        </member>
2133
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
2134
            <summary>
2135
            Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2136
            </summary>
2137
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2138
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2139
        </member>
2140
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">
2141
            <summary>
2142
            Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2143
            </summary>
2144
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2145
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2146
        </member>
2147
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
2148
            <summary>
2149
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2150
            </summary>
2151
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2152
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2153
        </member>
2154
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
2155
            <summary>
2156
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2157
            </summary>
2158
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2159
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2160
        </member>
2161
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
2162
            <summary>
2163
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2164
            </summary>
2165
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2166
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2167
        </member>
2168
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">
2169
            <summary>
2170
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2171
            </summary>
2172
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2173
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2174
        </member>
2175
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
2176
            <summary>
2177
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2178
            </summary>
2179
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2180
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2181
        </member>
2182
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
2183
            <summary>
2184
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2185
            </summary>
2186
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2187
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2188
        </member>
2189
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
2190
            <summary>
2191
            Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2192
            </summary>
2193
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2194
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2195
        </member>
2196
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
2197
            <summary>
2198
            Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2199
            </summary>
2200
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2201
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2202
        </member>
2203
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
2204
            <summary>
2205
            Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2206
            </summary>
2207
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2208
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2209
        </member>
2210
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
2211
            <summary>
2212
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2213
            </summary>
2214
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2215
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2216
        </member>
2217
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
2218
            <summary>
2219
            Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2220
            </summary>
2221
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2222
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2223
        </member>
2224
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
2225
            <summary>
2226
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2227
            </summary>
2228
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2229
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2230
        </member>
2231
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
2232
            <summary>
2233
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2234
            </summary>
2235
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2236
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2237
        </member>
2238
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
2239
            <summary>
2240
            Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2241
            </summary>
2242
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2243
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2244
        </member>
2245
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
2246
            <summary>
2247
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2248
            </summary>
2249
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2250
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2251
        </member>
2252
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
2253
            <summary>
2254
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2255
            </summary>
2256
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2257
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2258
        </member>
2259
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
2260
            <summary>
2261
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2262
            </summary>
2263
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2264
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2265
        </member>
2266
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
2267
            <summary>
2268
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2269
            </summary>
2270
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2271
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2272
        </member>
2273
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
2274
            <summary>
2275
            Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2276
            </summary>
2277
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2278
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2279
        </member>
2280
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
2281
            <summary>
2282
            Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2283
            </summary>
2284
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2285
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2286
        </member>
2287
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
2288
            <summary>
2289
            Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2290
            </summary>
2291
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2292
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2293
        </member>
2294
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
2295
            <summary>
2296
            Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2297
            </summary>
2298
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2299
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2300
        </member>
2301
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
2302
            <summary>
2303
            Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2304
            </summary>
2305
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2306
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2307
        </member>
2308
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
2309
            <summary>
2310
            Performs an implicit conversion from <see cref="T:System.Byte[]"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2311
            </summary>
2312
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2313
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2314
        </member>
2315
        <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
2316
            <summary>
2317
            Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
2318
            </summary>
2319
            <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
2320
        </member>
2321
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
2322
            <summary>
2323
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
2324
            </summary>
2325
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
2326
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
2327
        </member>
2328
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
2329
            <summary>
2330
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2331
            </summary>
2332
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
2333
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
2334
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
2335
        </member>
2336
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
2337
            <summary>
2338
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2339
            </summary>
2340
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
2341
            <returns>The new object created from the JSON value.</returns>
2342
        </member>
2343
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
2344
            <summary>
2345
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2346
            </summary>
2347
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
2348
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
2349
            <returns>The new object created from the JSON value.</returns>
2350
        </member>
2351
        <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
2352
            <summary>
2353
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
2354
            </summary>
2355
            <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>
2356
            <returns>
2357
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
2358
            that were read from the reader. The runtime type of the token is determined
2359
            by the token type of the first token encountered in the reader.
2360
            </returns>
2361
        </member>
2362
        <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
2363
            <summary>
2364
            Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
2365
            </summary>
2366
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
2367
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
2368
        </member>
2369
        <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
2370
            <summary>
2371
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
2372
            </summary>
2373
            <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>
2374
            <returns>
2375
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
2376
            that were read from the reader. The runtime type of the token is determined
2377
            by the token type of the first token encountered in the reader.
2378
            </returns>
2379
        </member>
2380
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
2381
            <summary>
2382
            Selects the token that matches the object path.
2383
            </summary>
2384
            <param name="path">
2385
            The object path from the current <see cref="T:Newtonsoft.Json.Linq.JToken"/> to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>
2386
            to be returned. This must be a string of property names or array indexes separated
2387
            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or
2388
            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.
2389
            </param>
2390
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that matches the object path or a null reference if no matching token is found.</returns>
2391
        </member>
2392
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
2393
            <summary>
2394
            Selects the token that matches the object path.
2395
            </summary>
2396
            <param name="path">
2397
            The object path from the current <see cref="T:Newtonsoft.Json.Linq.JToken"/> to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>
2398
            to be returned. This must be a string of property names or array indexes separated
2399
            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or
2400
            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.
2401
            </param>
2402
            <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no token is found.</param>
2403
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that matches the object path.</returns>
2404
        </member>
2405
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
2406
            <summary>
2407
            Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
2408
            </summary>
2409
            <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
2410
        </member>
2411
        <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
2412
            <summary>
2413
            Gets a comparer that can compare two tokens for value equality.
2414
            </summary>
2415
            <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
2416
        </member>
2417
        <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
2418
            <summary>
2419
            Gets or sets the parent.
2420
            </summary>
2421
            <value>The parent.</value>
2422
        </member>
2423
        <member name="P:Newtonsoft.Json.Linq.JToken.Root">
2424
            <summary>
2425
            Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2426
            </summary>
2427
            <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2428
        </member>
2429
        <member name="P:Newtonsoft.Json.Linq.JToken.Type">
2430
            <summary>
2431
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2432
            </summary>
2433
            <value>The type.</value>
2434
        </member>
2435
        <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
2436
            <summary>
2437
            Gets a value indicating whether this token has childen tokens.
2438
            </summary>
2439
            <value>
2440
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
2441
            </value>
2442
        </member>
2443
        <member name="P:Newtonsoft.Json.Linq.JToken.Next">
2444
            <summary>
2445
            Gets the next sibling token of this node.
2446
            </summary>
2447
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
2448
        </member>
2449
        <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
2450
            <summary>
2451
            Gets the previous sibling token of this node.
2452
            </summary>
2453
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
2454
        </member>
2455
        <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
2456
            <summary>
2457
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
2458
            </summary>
2459
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
2460
        </member>
2461
        <member name="P:Newtonsoft.Json.Linq.JToken.First">
2462
            <summary>
2463
            Get the first child token of this token.
2464
            </summary>
2465
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2466
        </member>
2467
        <member name="P:Newtonsoft.Json.Linq.JToken.Last">
2468
            <summary>
2469
            Get the last child token of this token.
2470
            </summary>
2471
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2472
        </member>
2473
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
2474
            <summary>
2475
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
2476
            </summary>
2477
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
2478
        </member>
2479
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
2480
            <summary>
2481
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2482
            </summary>
2483
            <param name="value">The value.</param>
2484
        </member>
2485
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
2486
            <summary>
2487
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2488
            </summary>
2489
            <param name="value">The value.</param>
2490
        </member>
2491
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
2492
            <summary>
2493
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2494
            </summary>
2495
            <param name="value">The value.</param>
2496
        </member>
2497
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
2498
            <summary>
2499
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2500
            </summary>
2501
            <param name="value">The value.</param>
2502
        </member>
2503
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
2504
            <summary>
2505
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2506
            </summary>
2507
            <param name="value">The value.</param>
2508
        </member>
2509
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
2510
            <summary>
2511
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2512
            </summary>
2513
            <param name="value">The value.</param>
2514
        </member>
2515
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
2516
            <summary>
2517
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2518
            </summary>
2519
            <param name="value">The value.</param>
2520
        </member>
2521
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
2522
            <summary>
2523
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2524
            </summary>
2525
            <param name="value">The value.</param>
2526
        </member>
2527
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
2528
            <summary>
2529
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2530
            </summary>
2531
            <param name="value">The value.</param>
2532
        </member>
2533
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
2534
            <summary>
2535
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2536
            </summary>
2537
            <param name="value">The value.</param>
2538
        </member>
2539
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
2540
            <summary>
2541
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2542
            </summary>
2543
            <param name="value">The value.</param>
2544
        </member>
2545
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
2546
            <summary>
2547
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
2548
            </summary>
2549
            <param name="value">The value.</param>
2550
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
2551
        </member>
2552
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
2553
            <summary>
2554
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
2555
            </summary>
2556
            <param name="value">The value.</param>
2557
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
2558
        </member>
2559
        <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
2560
            <summary>
2561
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2562
            </summary>
2563
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
2564
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2565
        </member>
2566
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
2567
            <summary>
2568
            Indicates whether the current object is equal to another object of the same type.
2569
            </summary>
2570
            <returns>
2571
            true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.
2572
            </returns>
2573
            <param name="other">An object to compare with this object.</param>
2574
        </member>
2575
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
2576
            <summary>
2577
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
2578
            </summary>
2579
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
2580
            <returns>
2581
            true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
2582
            </returns>
2583
            <exception cref="T:System.NullReferenceException">
2584
            The <paramref name="obj"/> parameter is null.
2585
            </exception>
2586
        </member>
2587
        <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
2588
            <summary>
2589
            Serves as a hash function for a particular type.
2590
            </summary>
2591
            <returns>
2592
            A hash code for the current <see cref="T:System.Object"/>.
2593
            </returns>
2594
        </member>
2595
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
2596
            <summary>
2597
            Returns a <see cref="T:System.String"/> that represents this instance.
2598
            </summary>
2599
            <returns>
2600
            A <see cref="T:System.String"/> that represents this instance.
2601
            </returns>
2602
        </member>
2603
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
2604
            <summary>
2605
            Returns a <see cref="T:System.String"/> that represents this instance.
2606
            </summary>
2607
            <param name="format">The format.</param>
2608
            <returns>
2609
            A <see cref="T:System.String"/> that represents this instance.
2610
            </returns>
2611
        </member>
2612
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
2613
            <summary>
2614
            Returns a <see cref="T:System.String"/> that represents this instance.
2615
            </summary>
2616
            <param name="formatProvider">The format provider.</param>
2617
            <returns>
2618
            A <see cref="T:System.String"/> that represents this instance.
2619
            </returns>
2620
        </member>
2621
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
2622
            <summary>
2623
            Returns a <see cref="T:System.String"/> that represents this instance.
2624
            </summary>
2625
            <param name="format">The format.</param>
2626
            <param name="formatProvider">The format provider.</param>
2627
            <returns>
2628
            A <see cref="T:System.String"/> that represents this instance.
2629
            </returns>
2630
        </member>
2631
        <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
2632
            <summary>
2633
            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.
2634
            </summary>
2635
            <param name="obj">An object to compare with this instance.</param>
2636
            <returns>
2637
            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
2638
            Value
2639
            Meaning
2640
            Less than zero
2641
            This instance is less than <paramref name="obj"/>.
2642
            Zero
2643
            This instance is equal to <paramref name="obj"/>.
2644
            Greater than zero
2645
            This instance is greater than <paramref name="obj"/>.
2646
            </returns>
2647
            <exception cref="T:System.ArgumentException">
2648
                    <paramref name="obj"/> is not the same type as this instance.
2649
            </exception>
2650
        </member>
2651
        <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
2652
            <summary>
2653
            Gets a value indicating whether this token has childen tokens.
2654
            </summary>
2655
            <value>
2656
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
2657
            </value>
2658
        </member>
2659
        <member name="P:Newtonsoft.Json.Linq.JValue.Type">
2660
            <summary>
2661
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2662
            </summary>
2663
            <value>The type.</value>
2664
        </member>
2665
        <member name="P:Newtonsoft.Json.Linq.JValue.Value">
2666
            <summary>
2667
            Gets or sets the underlying token value.
2668
            </summary>
2669
            <value>The underlying token value.</value>
2670
        </member>
2671
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
2672
            <summary>
2673
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
2674
            </summary>
2675
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
2676
        </member>
2677
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
2678
            <summary>
2679
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
2680
            </summary>
2681
            <param name="rawJson">The raw json.</param>
2682
        </member>
2683
        <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
2684
            <summary>
2685
            Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
2686
            </summary>
2687
            <param name="reader">The reader.</param>
2688
            <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
2689
        </member>
2690
        <member name="T:Newtonsoft.Json.Required">
2691
            <summary>
2692
            Indicating whether a property is required.
2693
            </summary>
2694
        </member>
2695
        <member name="F:Newtonsoft.Json.Required.Default">
2696
            <summary>
2697
            The property is not required. The default state.
2698
            </summary>
2699
        </member>
2700
        <member name="F:Newtonsoft.Json.Required.AllowNull">
2701
            <summary>
2702
            The property must be defined in JSON but can be a null value.
2703
            </summary>
2704
        </member>
2705
        <member name="F:Newtonsoft.Json.Required.Always">
2706
            <summary>
2707
            The property must be defined in JSON and cannot be a null value.
2708
            </summary>
2709
        </member>
2710
        <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
2711
            <summary>
2712
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2713
            </summary>
2714
        </member>
2715
        <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
2716
            <summary>
2717
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
2718
            </summary>
2719
            <param name="underlyingType">The underlying type for the contract.</param>
2720
        </member>
2721
        <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
2722
            <summary>
2723
            Gets or sets the ISerializable object constructor.
2724
            </summary>
2725
            <value>The ISerializable object constructor.</value>
2726
        </member>
2727
        <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
2728
            <summary>
2729
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2730
            </summary>
2731
        </member>
2732
        <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
2733
            <summary>
2734
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
2735
            </summary>
2736
            <param name="underlyingType">The underlying type for the contract.</param>
2737
        </member>
2738
        <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
2739
            <summary>
2740
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2741
            </summary>
2742
        </member>
2743
        <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
2744
            <summary>
2745
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
2746
            </summary>
2747
            <param name="underlyingType">The underlying type for the contract.</param>
2748
        </member>
2749
        <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
2750
            <summary>
2751
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
2752
            </summary>
2753
        </member>
2754
        <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
2755
            <summary>
2756
            Provides methods to get and set values.
2757
            </summary>
2758
        </member>
2759
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
2760
            <summary>
2761
            Sets the value.
2762
            </summary>
2763
            <param name="target">The target to set the value on.</param>
2764
            <param name="value">The value to set on the target.</param>
2765
        </member>
2766
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
2767
            <summary>
2768
            Gets the value.
2769
            </summary>
2770
            <param name="target">The target to get the value from.</param>
2771
            <returns>The value.</returns>
2772
        </member>
2773
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
2774
            <summary>
2775
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
2776
            </summary>
2777
            <param name="memberInfo">The member info.</param>
2778
        </member>
2779
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
2780
            <summary>
2781
            Sets the value.
2782
            </summary>
2783
            <param name="target">The target to set the value on.</param>
2784
            <param name="value">The value to set on the target.</param>
2785
        </member>
2786
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
2787
            <summary>
2788
            Gets the value.
2789
            </summary>
2790
            <param name="target">The target to get the value from.</param>
2791
            <returns>The value.</returns>
2792
        </member>
2793
        <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
2794
            <summary>
2795
            Provides data for the Error event.
2796
            </summary>
2797
        </member>
2798
        <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
2799
            <summary>
2800
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
2801
            </summary>
2802
            <param name="currentObject">The current object.</param>
2803
            <param name="errorContext">The error context.</param>
2804
        </member>
2805
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
2806
            <summary>
2807
            Gets the current object the error event is being raised against.
2808
            </summary>
2809
            <value>The current object the error event is being raised against.</value>
2810
        </member>
2811
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
2812
            <summary>
2813
            Gets the error context.
2814
            </summary>
2815
            <value>The error context.</value>
2816
        </member>
2817
        <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
2818
            <summary>
2819
            Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2820
            </summary>
2821
        </member>
2822
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
2823
            <summary>
2824
            Resolves a reference to its object.
2825
            </summary>
2826
            <param name="context">The serialization context.</param>
2827
            <param name="reference">The reference to resolve.</param>
2828
            <returns>The object that</returns>
2829
        </member>
2830
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
2831
            <summary>
2832
            Gets the reference for the sepecified object.
2833
            </summary>
2834
            <param name="context">The serialization context.</param>
2835
            <param name="value">The object to get a reference for.</param>
2836
            <returns>The reference to the object.</returns>
2837
        </member>
2838
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
2839
            <summary>
2840
            Determines whether the specified object is referenced.
2841
            </summary>
2842
            <param name="context">The serialization context.</param>
2843
            <param name="value">The object to test for a reference.</param>
2844
            <returns>
2845
                    <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
2846
            </returns>
2847
        </member>
2848
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
2849
            <summary>
2850
            Adds a reference to the specified object.
2851
            </summary>
2852
            <param name="context">The serialization context.</param>
2853
            <param name="reference">The reference.</param>
2854
            <param name="value">The object to reference.</param>
2855
        </member>
2856
        <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
2857
            <summary>
2858
            Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2859
            </summary>
2860
            <example>
2861
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References"/>       
2862
            </example>
2863
        </member>
2864
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
2865
            <summary>
2866
            Do not preserve references when serializing types.
2867
            </summary>
2868
        </member>
2869
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
2870
            <summary>
2871
            Preserve references when serializing into a JSON object structure.
2872
            </summary>
2873
        </member>
2874
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
2875
            <summary>
2876
            Preserve references when serializing into a JSON array structure.
2877
            </summary>
2878
        </member>
2879
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
2880
            <summary>
2881
            Preserve references when serializing.
2882
            </summary>
2883
        </member>
2884
        <member name="T:Newtonsoft.Json.JsonArrayAttribute">
2885
            <summary>
2886
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
2887
            </summary>
2888
        </member>
2889
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
2890
            <summary>
2891
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
2892
            </summary>
2893
        </member>
2894
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
2895
            <summary>
2896
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items
2897
            </summary>
2898
            <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
2899
        </member>
2900
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
2901
            <summary>
2902
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
2903
            </summary>
2904
            <param name="id">The container Id.</param>
2905
        </member>
2906
        <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
2907
            <summary>
2908
            Gets or sets a value indicating whether null items are allowed in the collection.
2909
            </summary>
2910
            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
2911
        </member>
2912
        <member name="T:Newtonsoft.Json.DefaultValueHandling">
2913
            <summary>
2914
            Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2915
            </summary>
2916
            <example>
2917
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class"/>
2918
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example"/>
2919
            </example>
2920
        </member>
2921
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
2922
            <summary>
2923
            Include members where the member value is the same as the member's default value when serializing objects.
2924
            Included members are written to JSON. Has no effect when deserializing.
2925
            </summary>
2926
        </member>
2927
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
2928
            <summary>
2929
            Ignore members where the member value is the same as the member's default value when serializing objects
2930
            so that is is not written to JSON.
2931
            This option will ignore all default values (e.g. <c>null</c> for objects and nullable typesl; <c>0</c> for integers,
2932
            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
2933
            placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
2934
            </summary>
2935
        </member>
2936
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
2937
            <summary>
2938
            Members with a default value but no JSON will be set to their default value when deserializing.
2939
            </summary>
2940
        </member>
2941
        <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
2942
            <summary>
2943
            Ignore members where the member value is the same as the member's default value when serializing objects
2944
            and sets members to their default value when deserializing.
2945
            </summary>
2946
        </member>
2947
        <member name="T:Newtonsoft.Json.JsonConverterAttribute">
2948
            <summary>
2949
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
2950
            </summary>
2951
        </member>
2952
        <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
2953
            <summary>
2954
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
2955
            </summary>
2956
            <param name="converterType">Type of the converter.</param>
2957
        </member>
2958
        <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
2959
            <summary>
2960
            Gets the type of the converter.
2961
            </summary>
2962
            <value>The type of the converter.</value>
2963
        </member>
2964
        <member name="T:Newtonsoft.Json.JsonObjectAttribute">
2965
            <summary>
2966
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
2967
            </summary>
2968
        </member>
2969
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
2970
            <summary>
2971
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
2972
            </summary>
2973
        </member>
2974
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
2975
            <summary>
2976
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
2977
            </summary>
2978
            <param name="memberSerialization">The member serialization.</param>
2979
        </member>
2980
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
2981
            <summary>
2982
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
2983
            </summary>
2984
            <param name="id">The container Id.</param>
2985
        </member>
2986
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
2987
            <summary>
2988
            Gets or sets the member serialization.
2989
            </summary>
2990
            <value>The member serialization.</value>
2991
        </member>
2992
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
2993
            <summary>
2994
            Gets or sets a value that indicates whether the object's properties are required.
2995
            </summary>
2996
            <value>
2997
                    A value indicating whether the object's properties are required.
2998
            </value>
2999
        </member>
3000
        <member name="T:Newtonsoft.Json.JsonSerializerSettings">
3001
            <summary>
3002
            Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
3003
            </summary>
3004
        </member>
3005
        <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
3006
            <summary>
3007
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
3008
            </summary>
3009
        </member>
3010
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
3011
            <summary>
3012
            Gets or sets how reference loops (e.g. a class referencing itself) is handled.
3013
            </summary>
3014
            <value>Reference loop handling.</value>
3015
        </member>
3016
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
3017
            <summary>
3018
            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
3019
            </summary>
3020
            <value>Missing member handling.</value>
3021
        </member>
3022
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
3023
            <summary>
3024
            Gets or sets how objects are created during deserialization.
3025
            </summary>
3026
            <value>The object creation handling.</value>
3027
        </member>
3028
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
3029
            <summary>
3030
            Gets or sets how null values are handled during serialization and deserialization.
3031
            </summary>
3032
            <value>Null value handling.</value>
3033
        </member>
3034
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
3035
            <summary>
3036
            Gets or sets how null default are handled during serialization and deserialization.
3037
            </summary>
3038
            <value>The default value handling.</value>
3039
        </member>
3040
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
3041
            <summary>
3042
            Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
3043
            </summary>
3044
            <value>The converters.</value>
3045
        </member>
3046
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
3047
            <summary>
3048
            Gets or sets how object references are preserved by the serializer.
3049
            </summary>
3050
            <value>The preserve references handling.</value>
3051
        </member>
3052
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
3053
            <summary>
3054
            Gets or sets how type name writing and reading is handled by the serializer.
3055
            </summary>
3056
            <value>The type name handling.</value>
3057
        </member>
3058
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
3059
            <summary>
3060
            Gets or sets how a type name assembly is written and resolved by the serializer.
3061
            </summary>
3062
            <value>The type name assembly format.</value>
3063
        </member>
3064
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
3065
            <summary>
3066
            Gets or sets how constructors are used during deserialization.
3067
            </summary>
3068
            <value>The constructor handling.</value>
3069
        </member>
3070
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
3071
            <summary>
3072
            Gets or sets the contract resolver used by the serializer when
3073
            serializing .NET objects to JSON and vice versa.
3074
            </summary>
3075
            <value>The contract resolver.</value>
3076
        </member>
3077
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
3078
            <summary>
3079
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
3080
            </summary>
3081
            <value>The reference resolver.</value>
3082
        </member>
3083
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
3084
            <summary>
3085
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
3086
            </summary>
3087
            <value>The binder.</value>
3088
        </member>
3089
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
3090
            <summary>
3091
            Gets or sets the error handler called during serialization and deserialization.
3092
            </summary>
3093
            <value>The error handler called during serialization and deserialization.</value>
3094
        </member>
3095
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
3096
            <summary>
3097
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
3098
            </summary>
3099
            <value>The context.</value>
3100
        </member>
3101
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
3102
            <summary>
3103
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
3104
            </summary>
3105
        </member>
3106
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
3107
            <summary>
3108
            Indicates how JSON text output is formatted.
3109
            </summary>
3110
        </member>
3111
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
3112
            <summary>
3113
            Get or set how dates are written to JSON text.
3114
            </summary>
3115
        </member>
3116
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
3117
            <summary>
3118
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
3119
            </summary>
3120
        </member>
3121
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
3122
            <summary>
3123
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
3124
            </summary>
3125
        </member>
3126
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
3127
            <summary>
3128
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
3129
            </summary>
3130
        </member>
3131
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
3132
            <summary>
3133
            Gets a value indicating whether there will be a check for additional content after deserializing an object.
3134
            </summary>
3135
            <value>
3136
                    <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
3137
            </value>
3138
        </member>
3139
        <member name="T:Newtonsoft.Json.JsonValidatingReader">
3140
            <summary>
3141
            Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
3142
            </summary>
3143
        </member>
3144
        <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
3145
            <summary>
3146
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
3147
            validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
3148
            </summary>
3149
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
3150
        </member>
3151
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
3152
            <summary>
3153
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3154
            </summary>
3155
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3156
        </member>
3157
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
3158
            <summary>
3159
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
3160
            </summary>
3161
            <returns>
3162
            A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null.
3163
            </returns>
3164
        </member>
3165
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
3166
            <summary>
3167
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3168
            </summary>
3169
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3170
        </member>
3171
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
3172
            <summary>
3173
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
3174
            </summary>
3175
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3176
        </member>
3177
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
3178
            <summary>
3179
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3180
            </summary>
3181
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3182
        </member>
3183
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
3184
            <summary>
3185
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3186
            </summary>
3187
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3188
        </member>
3189
        <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
3190
            <summary>
3191
            Reads the next JSON token from the stream.
3192
            </summary>
3193
            <returns>
3194
            true if the next token was read successfully; false if there are no more tokens to read.
3195
            </returns>
3196
        </member>
3197
        <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
3198
            <summary>
3199
            Sets an event handler for receiving schema validation errors.
3200
            </summary>
3201
        </member>
3202
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
3203
            <summary>
3204
            Gets the text value of the current Json token.
3205
            </summary>
3206
            <value></value>
3207
        </member>
3208
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
3209
            <summary>
3210
            Gets the depth of the current token in the JSON document.
3211
            </summary>
3212
            <value>The depth of the current token in the JSON document.</value>
3213
        </member>
3214
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
3215
            <summary>
3216
            Gets the path of the current JSON token. 
3217
            </summary>
3218
        </member>
3219
        <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
3220
            <summary>
3221
            Gets the quotation mark character used to enclose the value of a string.
3222
            </summary>
3223
            <value></value>
3224
        </member>
3225
        <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
3226
            <summary>
3227
            Gets the type of the current Json token.
3228
            </summary>
3229
            <value></value>
3230
        </member>
3231
        <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
3232
            <summary>
3233
            Gets the Common Language Runtime (CLR) type for the current Json token.
3234
            </summary>
3235
            <value></value>
3236
        </member>
3237
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
3238
            <summary>
3239
            Gets or sets the schema.
3240
            </summary>
3241
            <value>The schema.</value>
3242
        </member>
3243
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
3244
            <summary>
3245
            Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
3246
            </summary>
3247
            <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
3248
        </member>
3249
        <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
3250
            <summary>
3251
            Compares tokens to determine whether they are equal.
3252
            </summary>
3253
        </member>
3254
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
3255
            <summary>
3256
            Determines whether the specified objects are equal.
3257
            </summary>
3258
            <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
3259
            <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
3260
            <returns>
3261
            true if the specified objects are equal; otherwise, false.
3262
            </returns>
3263
        </member>
3264
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
3265
            <summary>
3266
            Returns a hash code for the specified object.
3267
            </summary>
3268
            <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
3269
            <returns>A hash code for the specified object.</returns>
3270
            <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception>
3271
        </member>
3272
        <member name="T:Newtonsoft.Json.MemberSerialization">
3273
            <summary>
3274
            Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3275
            </summary>
3276
        </member>
3277
        <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
3278
            <summary>
3279
            All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
3280
            This is the default member serialization mode.
3281
            </summary>
3282
        </member>
3283
        <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
3284
            <summary>
3285
            Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/> are serialized.
3286
            This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute"/>.
3287
            </summary>
3288
        </member>
3289
        <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
3290
            <summary>
3291
            All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
3292
            This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
3293
            and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to false.
3294
            </summary>
3295
        </member>
3296
        <member name="T:Newtonsoft.Json.ObjectCreationHandling">
3297
            <summary>
3298
            Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3299
            </summary>
3300
        </member>
3301
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
3302
            <summary>
3303
            Reuse existing objects, create new objects when needed.
3304
            </summary>
3305
        </member>
3306
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
3307
            <summary>
3308
            Only reuse existing objects.
3309
            </summary>
3310
        </member>
3311
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
3312
            <summary>
3313
            Always create new objects.
3314
            </summary>
3315
        </member>
3316
        <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
3317
            <summary>
3318
            Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).
3319
            </summary>
3320
        </member>
3321
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
3322
            <summary>
3323
            Writes the JSON representation of the object.
3324
            </summary>
3325
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
3326
            <param name="value">The value.</param>
3327
            <param name="serializer">The calling serializer.</param>
3328
        </member>
3329
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
3330
            <summary>
3331
            Reads the JSON representation of the object.
3332
            </summary>
3333
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
3334
            <param name="objectType">Type of the object.</param>
3335
            <param name="existingValue">The existing value of object being read.</param>
3336
            <param name="serializer">The calling serializer.</param>
3337
            <returns>The object value.</returns>
3338
        </member>
3339
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
3340
            <summary>
3341
            Gets or sets the date time styles used when converting a date to and from JSON.
3342
            </summary>
3343
            <value>The date time styles used when converting a date to and from JSON.</value>
3344
        </member>
3345
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
3346
            <summary>
3347
            Gets or sets the date time format used when converting a date to and from JSON.
3348
            </summary>
3349
            <value>The date time format used when converting a date to and from JSON.</value>
3350
        </member>
3351
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
3352
            <summary>
3353
            Gets or sets the culture used when converting a date to and from JSON.
3354
            </summary>
3355
            <value>The culture used when converting a date to and from JSON.</value>
3356
        </member>
3357
        <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
3358
            <summary>
3359
            Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).
3360
            </summary>
3361
        </member>
3362
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
3363
            <summary>
3364
            Writes the JSON representation of the object.
3365
            </summary>
3366
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
3367
            <param name="value">The value.</param>
3368
            <param name="serializer">The calling serializer.</param>
3369
        </member>
3370
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
3371
            <summary>
3372
            Reads the JSON representation of the object.
3373
            </summary>
3374
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
3375
            <param name="objectType">Type of the object.</param>
3376
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
3377
            <param name="serializer">The calling serializer.</param>
3378
            <returns>The object value.</returns>
3379
        </member>
3380
        <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
3381
            <summary>
3382
            Converts XML to and from JSON.
3383
            </summary>
3384
        </member>
3385
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
3386
            <summary>
3387
            Writes the JSON representation of the object.
3388
            </summary>
3389
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
3390
            <param name="serializer">The calling serializer.</param>
3391
            <param name="value">The value.</param>
3392
        </member>
3393
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
3394
            <summary>
3395
            Reads the JSON representation of the object.
3396
            </summary>
3397
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
3398
            <param name="objectType">Type of the object.</param>
3399
            <param name="existingValue">The existing value of object being read.</param>
3400
            <param name="serializer">The calling serializer.</param>
3401
            <returns>The object value.</returns>
3402
        </member>
3403
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
3404
            <summary>
3405
            Checks if the attributeName is a namespace attribute.
3406
            </summary>
3407
            <param name="attributeName">Attribute name to test.</param>
3408
            <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
3409
            <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>
3410
        </member>
3411
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
3412
            <summary>
3413
            Determines whether this instance can convert the specified value type.
3414
            </summary>
3415
            <param name="valueType">Type of the value.</param>
3416
            <returns>
3417
                    <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
3418
            </returns>
3419
        </member>
3420
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
3421
            <summary>
3422
            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.
3423
            </summary>
3424
            <value>The name of the deserialize root element.</value>
3425
        </member>
3426
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
3427
            <summary>
3428
            Gets or sets a flag to indicate whether to write the Json.NET array attribute.
3429
            This attribute helps preserve arrays when converting the written XML back to JSON.
3430
            </summary>
3431
            <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>
3432
        </member>
3433
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
3434
            <summary>
3435
            Gets or sets a value indicating whether to write the root JSON object.
3436
            </summary>
3437
            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
3438
        </member>
3439
        <member name="T:Newtonsoft.Json.JsonTextReader">
3440
            <summary>
3441
            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
3442
            </summary>
3443
        </member>
3444
        <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
3445
            <summary>
3446
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
3447
            </summary>
3448
            <param name="reader">The <c>TextReader</c> containing the XML data to read.</param>
3449
        </member>
3450
        <member name="M:Newtonsoft.Json.JsonTextReader.Read">
3451
            <summary>
3452
            Reads the next JSON token from the stream.
3453
            </summary>
3454
            <returns>
3455
            true if the next token was read successfully; false if there are no more tokens to read.
3456
            </returns>
3457
        </member>
3458
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
3459
            <summary>
3460
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
3461
            </summary>
3462
            <returns>
3463
            A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
3464
            </returns>
3465
        </member>
3466
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
3467
            <summary>
3468
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3469
            </summary>
3470
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
3471
        </member>
3472
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
3473
            <summary>
3474
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3475
            </summary>
3476
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
3477
        </member>
3478
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
3479
            <summary>
3480
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
3481
            </summary>
3482
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3483
        </member>
3484
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
3485
            <summary>
3486
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3487
            </summary>
3488
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3489
        </member>
3490
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
3491
            <summary>
3492
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3493
            </summary>
3494
            <returns>A <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>
3495
        </member>
3496
        <member name="M:Newtonsoft.Json.JsonTextReader.Close">
3497
            <summary>
3498
            Changes the state to closed. 
3499
            </summary>
3500
        </member>
3501
        <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
3502
            <summary>
3503
            Gets a value indicating whether the class can return line information.
3504
            </summary>
3505
            <returns>
3506
                    <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
3507
            </returns>
3508
        </member>
3509
        <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
3510
            <summary>
3511
            Gets the current line number.
3512
            </summary>
3513
            <value>
3514
            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
3515
            </value>
3516
        </member>
3517
        <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
3518
            <summary>
3519
            Gets the current line position.
3520
            </summary>
3521
            <value>
3522
            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
3523
            </value>
3524
        </member>
3525
        <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
3526
            <summary>
3527
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
3528
            </summary>
3529
        </member>
3530
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
3531
            <summary>
3532
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
3533
            </summary>
3534
        </member>
3535
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
3536
            <summary>
3537
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
3538
            </summary>
3539
            <param name="propertyName">Name of the property.</param>
3540
        </member>
3541
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
3542
            <summary>
3543
            Gets or sets the converter used when serializing the property's collection items.
3544
            </summary>
3545
            <value>The collection's items converter.</value>
3546
        </member>
3547
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
3548
            <summary>
3549
            Gets or sets the null value handling used when serializing this property.
3550
            </summary>
3551
            <value>The null value handling.</value>
3552
        </member>
3553
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
3554
            <summary>
3555
            Gets or sets the default value handling used when serializing this property.
3556
            </summary>
3557
            <value>The default value handling.</value>
3558
        </member>
3559
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
3560
            <summary>
3561
            Gets or sets the reference loop handling used when serializing this property.
3562
            </summary>
3563
            <value>The reference loop handling.</value>
3564
        </member>
3565
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
3566
            <summary>
3567
            Gets or sets the object creation handling used when deserializing this property.
3568
            </summary>
3569
            <value>The object creation handling.</value>
3570
        </member>
3571
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
3572
            <summary>
3573
            Gets or sets the type name handling used when serializing this property.
3574
            </summary>
3575
            <value>The type name handling.</value>
3576
        </member>
3577
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
3578
            <summary>
3579
            Gets or sets whether this property's value is serialized as a reference.
3580
            </summary>
3581
            <value>Whether this property's value is serialized as a reference.</value>
3582
        </member>
3583
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
3584
            <summary>
3585
            Gets or sets the order of serialization and deserialization of a member.
3586
            </summary>
3587
            <value>The numeric order of serialization or deserialization.</value>
3588
        </member>
3589
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
3590
            <summary>
3591
            Gets or sets a value indicating whether this property is required.
3592
            </summary>
3593
            <value>
3594
                    A value indicating whether this property is required.
3595
            </value>
3596
        </member>
3597
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
3598
            <summary>
3599
            Gets or sets the name of the property.
3600
            </summary>
3601
            <value>The name of the property.</value>
3602
        </member>
3603
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
3604
            <summary>
3605
            Gets or sets the the reference loop handling used when serializing the property's collection items.
3606
            </summary>
3607
            <value>The collection's items reference loop handling.</value>
3608
        </member>
3609
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
3610
            <summary>
3611
            Gets or sets the the type name handling used when serializing the property's collection items.
3612
            </summary>
3613
            <value>The collection's items type name handling.</value>
3614
        </member>
3615
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
3616
            <summary>
3617
            Gets or sets whether this property's collection items are serialized as a reference.
3618
            </summary>
3619
            <value>Whether this property's collection items are serialized as a reference.</value>
3620
        </member>
3621
        <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
3622
            <summary>
3623
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
3624
            </summary>
3625
        </member>
3626
        <member name="T:Newtonsoft.Json.JsonTextWriter">
3627
            <summary>
3628
            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
3629
            </summary>
3630
        </member>
3631
        <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
3632
            <summary>
3633
            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>. 
3634
            </summary>
3635
            <param name="textWriter">The <c>TextWriter</c> to write to.</param>
3636
        </member>
3637
        <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
3638
            <summary>
3639
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
3640
            </summary>
3641
        </member>
3642
        <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
3643
            <summary>
3644
            Closes this stream and the underlying stream.
3645
            </summary>
3646
        </member>
3647
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
3648
            <summary>
3649
            Writes the beginning of a Json object.
3650
            </summary>
3651
        </member>
3652
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
3653
            <summary>
3654
            Writes the beginning of a Json array.
3655
            </summary>
3656
        </member>
3657
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
3658
            <summary>
3659
            Writes the start of a constructor with the given name.
3660
            </summary>
3661
            <param name="name">The name of the constructor.</param>
3662
        </member>
3663
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
3664
            <summary>
3665
            Writes the specified end token.
3666
            </summary>
3667
            <param name="token">The end token to write.</param>
3668
        </member>
3669
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
3670
            <summary>
3671
            Writes the property name of a name/value pair on a Json object.
3672
            </summary>
3673
            <param name="name">The name of the property.</param>
3674
        </member>
3675
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
3676
            <summary>
3677
            Writes indent characters.
3678
            </summary>
3679
        </member>
3680
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
3681
            <summary>
3682
            Writes the JSON value delimiter.
3683
            </summary>
3684
        </member>
3685
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
3686
            <summary>
3687
            Writes an indent space.
3688
            </summary>
3689
        </member>
3690
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
3691
            <summary>
3692
            Writes a null value.
3693
            </summary>
3694
        </member>
3695
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
3696
            <summary>
3697
            Writes an undefined value.
3698
            </summary>
3699
        </member>
3700
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
3701
            <summary>
3702
            Writes raw JSON.
3703
            </summary>
3704
            <param name="json">The raw JSON to write.</param>
3705
        </member>
3706
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
3707
            <summary>
3708
            Writes a <see cref="T:System.String"/> value.
3709
            </summary>
3710
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
3711
        </member>
3712
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
3713
            <summary>
3714
            Writes a <see cref="T:System.Int32"/> value.
3715
            </summary>
3716
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
3717
        </member>
3718
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
3719
            <summary>
3720
            Writes a <see cref="T:System.UInt32"/> value.
3721
            </summary>
3722
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
3723
        </member>
3724
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
3725
            <summary>
3726
            Writes a <see cref="T:System.Int64"/> value.
3727
            </summary>
3728
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
3729
        </member>
3730
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
3731
            <summary>
3732
            Writes a <see cref="T:System.UInt64"/> value.
3733
            </summary>
3734
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
3735
        </member>
3736
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
3737
            <summary>
3738
            Writes a <see cref="T:System.Single"/> value.
3739
            </summary>
3740
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
3741
        </member>
3742
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
3743
            <summary>
3744
            Writes a <see cref="T:System.Double"/> value.
3745
            </summary>
3746
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
3747
        </member>
3748
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
3749
            <summary>
3750
            Writes a <see cref="T:System.Boolean"/> value.
3751
            </summary>
3752
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
3753
        </member>
3754
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
3755
            <summary>
3756
            Writes a <see cref="T:System.Int16"/> value.
3757
            </summary>
3758
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
3759
        </member>
3760
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
3761
            <summary>
3762
            Writes a <see cref="T:System.UInt16"/> value.
3763
            </summary>
3764
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
3765
        </member>
3766
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
3767
            <summary>
3768
            Writes a <see cref="T:System.Char"/> value.
3769
            </summary>
3770
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
3771
        </member>
3772
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
3773
            <summary>
3774
            Writes a <see cref="T:System.Byte"/> value.
3775
            </summary>
3776
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
3777
        </member>
3778
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
3779
            <summary>
3780
            Writes a <see cref="T:System.SByte"/> value.
3781
            </summary>
3782
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
3783
        </member>
3784
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
3785
            <summary>
3786
            Writes a <see cref="T:System.Decimal"/> value.
3787
            </summary>
3788
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
3789
        </member>
3790
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
3791
            <summary>
3792
            Writes a <see cref="T:System.DateTime"/> value.
3793
            </summary>
3794
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
3795
        </member>
3796
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
3797
            <summary>
3798
            Writes a <see cref="T:Byte[]"/> value.
3799
            </summary>
3800
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
3801
        </member>
3802
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
3803
            <summary>
3804
            Writes a <see cref="T:System.DateTimeOffset"/> value.
3805
            </summary>
3806
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
3807
        </member>
3808
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
3809
            <summary>
3810
            Writes a <see cref="T:System.Guid"/> value.
3811
            </summary>
3812
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
3813
        </member>
3814
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
3815
            <summary>
3816
            Writes a <see cref="T:System.TimeSpan"/> value.
3817
            </summary>
3818
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
3819
        </member>
3820
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
3821
            <summary>
3822
            Writes a <see cref="T:System.Uri"/> value.
3823
            </summary>
3824
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
3825
        </member>
3826
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
3827
            <summary>
3828
            Writes out a comment <code>/*...*/</code> containing the specified text. 
3829
            </summary>
3830
            <param name="text">Text to place inside the comment.</param>
3831
        </member>
3832
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
3833
            <summary>
3834
            Writes out the given white space.
3835
            </summary>
3836
            <param name="ws">The string of white space characters.</param>
3837
        </member>
3838
        <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
3839
            <summary>
3840
            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>.
3841
            </summary>
3842
        </member>
3843
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
3844
            <summary>
3845
            Gets or sets which character to use to quote attribute values.
3846
            </summary>
3847
        </member>
3848
        <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
3849
            <summary>
3850
            Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
3851
            </summary>
3852
        </member>
3853
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
3854
            <summary>
3855
            Gets or sets a value indicating whether object names will be surrounded with quotes.
3856
            </summary>
3857
        </member>
3858
        <member name="T:Newtonsoft.Json.JsonWriterException">
3859
            <summary>
3860
            The exception thrown when an error occurs while reading Json text.
3861
            </summary>
3862
        </member>
3863
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
3864
            <summary>
3865
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
3866
            </summary>
3867
        </member>
3868
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
3869
            <summary>
3870
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
3871
            with a specified error message.
3872
            </summary>
3873
            <param name="message">The error message that explains the reason for the exception.</param>
3874
        </member>
3875
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
3876
            <summary>
3877
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
3878
            with a specified error message and a reference to the inner exception that is the cause of this exception.
3879
            </summary>
3880
            <param name="message">The error message that explains the reason for the exception.</param>
3881
            <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>
3882
        </member>
3883
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
3884
            <summary>
3885
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
3886
            </summary>
3887
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
3888
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
3889
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
3890
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
3891
        </member>
3892
        <member name="P:Newtonsoft.Json.JsonWriterException.Path">
3893
            <summary>
3894
            Gets the path to the JSON where the error occurred.
3895
            </summary>
3896
            <value>The path to the JSON where the error occurred.</value>
3897
        </member>
3898
        <member name="T:Newtonsoft.Json.JsonReaderException">
3899
            <summary>
3900
            The exception thrown when an error occurs while reading Json text.
3901
            </summary>
3902
        </member>
3903
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
3904
            <summary>
3905
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
3906
            </summary>
3907
        </member>
3908
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
3909
            <summary>
3910
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
3911
            with a specified error message.
3912
            </summary>
3913
            <param name="message">The error message that explains the reason for the exception.</param>
3914
        </member>
3915
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
3916
            <summary>
3917
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
3918
            with a specified error message and a reference to the inner exception that is the cause of this exception.
3919
            </summary>
3920
            <param name="message">The error message that explains the reason for the exception.</param>
3921
            <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>
3922
        </member>
3923
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
3924
            <summary>
3925
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
3926
            </summary>
3927
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
3928
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
3929
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
3930
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
3931
        </member>
3932
        <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
3933
            <summary>
3934
            Gets the line number indicating where the error occurred.
3935
            </summary>
3936
            <value>The line number indicating where the error occurred.</value>
3937
        </member>
3938
        <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
3939
            <summary>
3940
            Gets the line position indicating where the error occurred.
3941
            </summary>
3942
            <value>The line position indicating where the error occurred.</value>
3943
        </member>
3944
        <member name="P:Newtonsoft.Json.JsonReaderException.Path">
3945
            <summary>
3946
            Gets the path to the JSON where the error occurred.
3947
            </summary>
3948
            <value>The path to the JSON where the error occurred.</value>
3949
        </member>
3950
        <member name="T:Newtonsoft.Json.JsonConverterCollection">
3951
            <summary>
3952
            Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
3953
            </summary>
3954
        </member>
3955
        <member name="T:Newtonsoft.Json.JsonConvert">
3956
            <summary>
3957
            Provides methods for converting between common language runtime types and JSON types.
3958
            </summary>
3959
            <example>
3960
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
3961
            </example>
3962
        </member>
3963
        <member name="F:Newtonsoft.Json.JsonConvert.True">
3964
            <summary>
3965
            Represents JavaScript's boolean value true as a string. This field is read-only.
3966
            </summary>
3967
        </member>
3968
        <member name="F:Newtonsoft.Json.JsonConvert.False">
3969
            <summary>
3970
            Represents JavaScript's boolean value false as a string. This field is read-only.
3971
            </summary>
3972
        </member>
3973
        <member name="F:Newtonsoft.Json.JsonConvert.Null">
3974
            <summary>
3975
            Represents JavaScript's null as a string. This field is read-only.
3976
            </summary>
3977
        </member>
3978
        <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
3979
            <summary>
3980
            Represents JavaScript's undefined as a string. This field is read-only.
3981
            </summary>
3982
        </member>
3983
        <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
3984
            <summary>
3985
            Represents JavaScript's positive infinity as a string. This field is read-only.
3986
            </summary>
3987
        </member>
3988
        <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
3989
            <summary>
3990
            Represents JavaScript's negative infinity as a string. This field is read-only.
3991
            </summary>
3992
        </member>
3993
        <member name="F:Newtonsoft.Json.JsonConvert.NaN">
3994
            <summary>
3995
            Represents JavaScript's NaN as a string. This field is read-only.
3996
            </summary>
3997
        </member>
3998
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
3999
            <summary>
4000
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
4001
            </summary>
4002
            <param name="value">The value to convert.</param>
4003
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
4004
        </member>
4005
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
4006
            <summary>
4007
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
4008
            </summary>
4009
            <param name="value">The value to convert.</param>
4010
            <param name="format">The format the date will be converted to.</param>
4011
            <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
4012
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
4013
        </member>
4014
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
4015
            <summary>
4016
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
4017
            </summary>
4018
            <param name="value">The value to convert.</param>
4019
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
4020
        </member>
4021
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
4022
            <summary>
4023
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
4024
            </summary>
4025
            <param name="value">The value to convert.</param>
4026
            <param name="format">The format the date will be converted to.</param>
4027
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
4028
        </member>
4029
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
4030
            <summary>
4031
            Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
4032
            </summary>
4033
            <param name="value">The value to convert.</param>
4034
            <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
4035
        </member>
4036
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
4037
            <summary>
4038
            Converts the <see cref="T:System.Char"/> to its JSON string representation.
4039
            </summary>
4040
            <param name="value">The value to convert.</param>
4041
            <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
4042
        </member>
4043
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
4044
            <summary>
4045
            Converts the <see cref="T:System.Enum"/> to its JSON string representation.
4046
            </summary>
4047
            <param name="value">The value to convert.</param>
4048
            <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
4049
        </member>
4050
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
4051
            <summary>
4052
            Converts the <see cref="T:System.Int32"/> to its JSON string representation.
4053
            </summary>
4054
            <param name="value">The value to convert.</param>
4055
            <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
4056
        </member>
4057
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
4058
            <summary>
4059
            Converts the <see cref="T:System.Int16"/> to its JSON string representation.
4060
            </summary>
4061
            <param name="value">The value to convert.</param>
4062
            <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
4063
        </member>
4064
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
4065
            <summary>
4066
            Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
4067
            </summary>
4068
            <param name="value">The value to convert.</param>
4069
            <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
4070
        </member>
4071
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
4072
            <summary>
4073
            Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
4074
            </summary>
4075
            <param name="value">The value to convert.</param>
4076
            <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
4077
        </member>
4078
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
4079
            <summary>
4080
            Converts the <see cref="T:System.Int64"/>  to its JSON string representation.
4081
            </summary>
4082
            <param name="value">The value to convert.</param>
4083
            <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
4084
        </member>
4085
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
4086
            <summary>
4087
            Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
4088
            </summary>
4089
            <param name="value">The value to convert.</param>
4090
            <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
4091
        </member>
4092
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
4093
            <summary>
4094
            Converts the <see cref="T:System.Single"/> to its JSON string representation.
4095
            </summary>
4096
            <param name="value">The value to convert.</param>
4097
            <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
4098
        </member>
4099
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
4100
            <summary>
4101
            Converts the <see cref="T:System.Double"/> to its JSON string representation.
4102
            </summary>
4103
            <param name="value">The value to convert.</param>
4104
            <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
4105
        </member>
4106
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
4107
            <summary>
4108
            Converts the <see cref="T:System.Byte"/> to its JSON string representation.
4109
            </summary>
4110
            <param name="value">The value to convert.</param>
4111
            <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
4112
        </member>
4113
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
4114
            <summary>
4115
            Converts the <see cref="T:System.SByte"/> to its JSON string representation.
4116
            </summary>
4117
            <param name="value">The value to convert.</param>
4118
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
4119
        </member>
4120
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
4121
            <summary>
4122
            Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
4123
            </summary>
4124
            <param name="value">The value to convert.</param>
4125
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
4126
        </member>
4127
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
4128
            <summary>
4129
            Converts the <see cref="T:System.Guid"/> to its JSON string representation.
4130
            </summary>
4131
            <param name="value">The value to convert.</param>
4132
            <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
4133
        </member>
4134
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
4135
            <summary>
4136
            Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
4137
            </summary>
4138
            <param name="value">The value to convert.</param>
4139
            <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
4140
        </member>
4141
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
4142
            <summary>
4143
            Converts the <see cref="T:System.Uri"/> to its JSON string representation.
4144
            </summary>
4145
            <param name="value">The value to convert.</param>
4146
            <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
4147
        </member>
4148
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
4149
            <summary>
4150
            Converts the <see cref="T:System.String"/> to its JSON string representation.
4151
            </summary>
4152
            <param name="value">The value to convert.</param>
4153
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
4154
        </member>
4155
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
4156
            <summary>
4157
            Converts the <see cref="T:System.String"/> to its JSON string representation.
4158
            </summary>
4159
            <param name="value">The value to convert.</param>
4160
            <param name="delimter">The string delimiter character.</param>
4161
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
4162
        </member>
4163
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
4164
            <summary>
4165
            Converts the <see cref="T:System.Object"/> to its JSON string representation.
4166
            </summary>
4167
            <param name="value">The value to convert.</param>
4168
            <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
4169
        </member>
4170
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
4171
            <summary>
4172
            Serializes the specified object to a JSON string.
4173
            </summary>
4174
            <param name="value">The object to serialize.</param>
4175
            <returns>A JSON string representation of the object.</returns>
4176
        </member>
4177
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
4178
            <summary>
4179
            Serializes the specified object to a JSON string.
4180
            </summary>
4181
            <param name="value">The object to serialize.</param>
4182
            <param name="formatting">Indicates how the output is formatted.</param>
4183
            <returns>
4184
            A JSON string representation of the object.
4185
            </returns>
4186
        </member>
4187
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
4188
            <summary>
4189
            Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4190
            </summary>
4191
            <param name="value">The object to serialize.</param>
4192
            <param name="converters">A collection converters used while serializing.</param>
4193
            <returns>A JSON string representation of the object.</returns>
4194
        </member>
4195
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
4196
            <summary>
4197
            Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4198
            </summary>
4199
            <param name="value">The object to serialize.</param>
4200
            <param name="formatting">Indicates how the output is formatted.</param>
4201
            <param name="converters">A collection converters used while serializing.</param>
4202
            <returns>A JSON string representation of the object.</returns>
4203
        </member>
4204
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
4205
            <summary>
4206
            Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4207
            </summary>
4208
            <param name="value">The object to serialize.</param>
4209
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4210
            If this is null, default serialization settings will be is used.</param>
4211
            <returns>
4212
            A JSON string representation of the object.
4213
            </returns>
4214
        </member>
4215
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
4216
            <summary>
4217
            Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
4218
            </summary>
4219
            <param name="value">The object to serialize.</param>
4220
            <param name="formatting">Indicates how the output is formatted.</param>
4221
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
4222
            If this is null, default serialization settings will be is used.</param>
4223
            <returns>
4224
            A JSON string representation of the object.
4225
            </returns>
4226
        </member>
4227
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
4228
            <summary>
4229
            Deserializes the JSON to a .NET object.
4230
            </summary>
4231
            <param name="value">The JSON to deserialize.</param>
4232
            <returns>The deserialized object from the Json string.</returns>
4233
        </member>
4234
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
4235
            <summary>
4236
            Deserializes the JSON to a .NET object.
4237
            </summary>
4238
            <param name="value">The JSON to deserialize.</param>
4239
            <param name="settings">
4240
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
4241
            If this is null, default serialization settings will be is used.
4242
            </param>
4243
            <returns>The deserialized object from the JSON string.</returns>
4244
        </member>
4245
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
4246
            <summary>
4247
            Deserializes the JSON to the specified .NET type.
4248
            </summary>
4249
            <param name="value">The JSON to deserialize.</param>
4250
            <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
4251
            <returns>The deserialized object from the Json string.</returns>
4252
        </member>
4253
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
4254
            <summary>
4255
            Deserializes the JSON to the specified .NET type.
4256
            </summary>
4257
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
4258
            <param name="value">The JSON to deserialize.</param>
4259
            <returns>The deserialized object from the Json string.</returns>
4260
        </member>
4261
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
4262
            <summary>
4263
            Deserializes the JSON to the given anonymous type.
4264
            </summary>
4265
            <typeparam name="T">
4266
            The anonymous type to deserialize to. This can't be specified
4267
            traditionally and must be infered from the anonymous type passed
4268
            as a parameter.
4269
            </typeparam>
4270
            <param name="value">The JSON to deserialize.</param>
4271
            <param name="anonymousTypeObject">The anonymous type object.</param>
4272
            <returns>The deserialized anonymous type from the JSON string.</returns>
4273
        </member>
4274
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
4275
            <summary>
4276
            Deserializes the JSON to the specified .NET type.
4277
            </summary>
4278
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
4279
            <param name="value">The JSON to deserialize.</param>
4280
            <param name="converters">Converters to use while deserializing.</param>
4281
            <returns>The deserialized object from the JSON string.</returns>
4282
        </member>
4283
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
4284
            <summary>
4285
            Deserializes the JSON to the specified .NET type.
4286
            </summary>
4287
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
4288
            <param name="value">The object to deserialize.</param>
4289
            <param name="settings">
4290
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
4291
            If this is null, default serialization settings will be is used.
4292
            </param>
4293
            <returns>The deserialized object from the JSON string.</returns>
4294
        </member>
4295
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
4296
            <summary>
4297
            Deserializes the JSON to the specified .NET type.
4298
            </summary>
4299
            <param name="value">The JSON to deserialize.</param>
4300
            <param name="type">The type of the object to deserialize.</param>
4301
            <param name="converters">Converters to use while deserializing.</param>
4302
            <returns>The deserialized object from the JSON string.</returns>
4303
        </member>
4304
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
4305
            <summary>
4306
            Deserializes the JSON to the specified .NET type.
4307
            </summary>
4308
            <param name="value">The JSON to deserialize.</param>
4309
            <param name="type">The type of the object to deserialize to.</param>
4310
            <param name="settings">
4311
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
4312
            If this is null, default serialization settings will be is used.
4313
            </param>
4314
            <returns>The deserialized object from the JSON string.</returns>
4315
        </member>
4316
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
4317
            <summary>
4318
            Populates the object with values from the JSON string.
4319
            </summary>
4320
            <param name="value">The JSON to populate values from.</param>
4321
            <param name="target">The target object to populate values onto.</param>
4322
        </member>
4323
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
4324
            <summary>
4325
            Populates the object with values from the JSON string.
4326
            </summary>
4327
            <param name="value">The JSON to populate values from.</param>
4328
            <param name="target">The target object to populate values onto.</param>
4329
            <param name="settings">
4330
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
4331
            If this is null, default serialization settings will be is used.
4332
            </param>
4333
        </member>
4334
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
4335
            <summary>
4336
            Serializes the XML node to a JSON string.
4337
            </summary>
4338
            <param name="node">The node to serialize.</param>
4339
            <returns>A JSON string of the XmlNode.</returns>
4340
        </member>
4341
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
4342
            <summary>
4343
            Serializes the XML node to a JSON string.
4344
            </summary>
4345
            <param name="node">The node to serialize.</param>
4346
            <param name="formatting">Indicates how the output is formatted.</param>
4347
            <returns>A JSON string of the XmlNode.</returns>
4348
        </member>
4349
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
4350
            <summary>
4351
            Serializes the XML node to a JSON string.
4352
            </summary>
4353
            <param name="node">The node to serialize.</param>
4354
            <param name="formatting">Indicates how the output is formatted.</param>
4355
            <param name="omitRootObject">Omits writing the root object.</param>
4356
            <returns>A JSON string of the XmlNode.</returns>
4357
        </member>
4358
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
4359
            <summary>
4360
            Deserializes the XmlNode from a JSON string.
4361
            </summary>
4362
            <param name="value">The JSON string.</param>
4363
            <returns>The deserialized XmlNode</returns>
4364
        </member>
4365
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
4366
            <summary>
4367
            Deserializes the XmlNode from a JSON string nested in a root elment.
4368
            </summary>
4369
            <param name="value">The JSON string.</param>
4370
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
4371
            <returns>The deserialized XmlNode</returns>
4372
        </member>
4373
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
4374
            <summary>
4375
            Deserializes the XmlNode from a JSON string nested in a root elment.
4376
            </summary>
4377
            <param name="value">The JSON string.</param>
4378
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
4379
            <param name="writeArrayAttribute">
4380
            A flag to indicate whether to write the Json.NET array attribute.
4381
            This attribute helps preserve arrays when converting the written XML back to JSON.
4382
            </param>
4383
            <returns>The deserialized XmlNode</returns>
4384
        </member>
4385
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
4386
            <summary>
4387
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
4388
            </summary>
4389
            <param name="node">The node to convert to JSON.</param>
4390
            <returns>A JSON string of the XNode.</returns>
4391
        </member>
4392
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
4393
            <summary>
4394
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
4395
            </summary>
4396
            <param name="node">The node to convert to JSON.</param>
4397
            <param name="formatting">Indicates how the output is formatted.</param>
4398
            <returns>A JSON string of the XNode.</returns>
4399
        </member>
4400
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
4401
            <summary>
4402
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
4403
            </summary>
4404
            <param name="node">The node to serialize.</param>
4405
            <param name="formatting">Indicates how the output is formatted.</param>
4406
            <param name="omitRootObject">Omits writing the root object.</param>
4407
            <returns>A JSON string of the XNode.</returns>
4408
        </member>
4409
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
4410
            <summary>
4411
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.
4412
            </summary>
4413
            <param name="value">The JSON string.</param>
4414
            <returns>The deserialized XNode</returns>
4415
        </member>
4416
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
4417
            <summary>
4418
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment.
4419
            </summary>
4420
            <param name="value">The JSON string.</param>
4421
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
4422
            <returns>The deserialized XNode</returns>
4423
        </member>
4424
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
4425
            <summary>
4426
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment.
4427
            </summary>
4428
            <param name="value">The JSON string.</param>
4429
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
4430
            <param name="writeArrayAttribute">
4431
            A flag to indicate whether to write the Json.NET array attribute.
4432
            This attribute helps preserve arrays when converting the written XML back to JSON.
4433
            </param>
4434
            <returns>The deserialized XNode</returns>
4435
        </member>
4436
        <member name="T:Newtonsoft.Json.JsonSerializationException">
4437
            <summary>
4438
            The exception thrown when an error occurs during Json serialization or deserialization.
4439
            </summary>
4440
        </member>
4441
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
4442
            <summary>
4443
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
4444
            </summary>
4445
        </member>
4446
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
4447
            <summary>
4448
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
4449
            with a specified error message.
4450
            </summary>
4451
            <param name="message">The error message that explains the reason for the exception.</param>
4452
        </member>
4453
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
4454
            <summary>
4455
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
4456
            with a specified error message and a reference to the inner exception that is the cause of this exception.
4457
            </summary>
4458
            <param name="message">The error message that explains the reason for the exception.</param>
4459
            <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>
4460
        </member>
4461
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
4462
            <summary>
4463
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
4464
            </summary>
4465
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4466
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4467
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
4468
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
4469
        </member>
4470
        <member name="T:Newtonsoft.Json.JsonSerializer">
4471
            <summary>
4472
            Serializes and deserializes objects into and from the JSON format.
4473
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
4474
            </summary>
4475
        </member>
4476
        <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
4477
            <summary>
4478
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
4479
            </summary>
4480
        </member>
4481
        <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
4482
            <summary>
4483
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4484
            </summary>
4485
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
4486
            <returns>A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.</returns>
4487
        </member>
4488
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
4489
            <summary>
4490
            Populates the JSON values onto the target object.
4491
            </summary>
4492
            <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
4493
            <param name="target">The target object to populate values onto.</param>
4494
        </member>
4495
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
4496
            <summary>
4497
            Populates the JSON values onto the target object.
4498
            </summary>
4499
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
4500
            <param name="target">The target object to populate values onto.</param>
4501
        </member>
4502
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
4503
            <summary>
4504
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
4505
            </summary>
4506
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
4507
            <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
4508
        </member>
4509
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
4510
            <summary>
4511
            Deserializes the Json structure contained by the specified <see cref="T:System.IO.StringReader"/>
4512
            into an instance of the specified type.
4513
            </summary>
4514
            <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
4515
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
4516
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
4517
        </member>
4518
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
4519
            <summary>
4520
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
4521
            into an instance of the specified type.
4522
            </summary>
4523
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
4524
            <typeparam name="T">The type of the object to deserialize.</typeparam>
4525
            <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
4526
        </member>
4527
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
4528
            <summary>
4529
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
4530
            into an instance of the specified type.
4531
            </summary>
4532
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
4533
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
4534
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
4535
        </member>
4536
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
4537
            <summary>
4538
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
4539
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
4540
            </summary>
4541
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
4542
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
4543
        </member>
4544
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
4545
            <summary>
4546
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
4547
            to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>. 
4548
            </summary>
4549
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
4550
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
4551
        </member>
4552
        <member name="E:Newtonsoft.Json.JsonSerializer.Error">
4553
            <summary>
4554
            Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
4555
            </summary>
4556
        </member>
4557
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
4558
            <summary>
4559
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
4560
            </summary>
4561
        </member>
4562
        <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
4563
            <summary>
4564
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
4565
            </summary>
4566
        </member>
4567
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
4568
            <summary>
4569
            Gets or sets how type name writing and reading is handled by the serializer.
4570
            </summary>
4571
        </member>
4572
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
4573
            <summary>
4574
            Gets or sets how a type name assembly is written and resolved by the serializer.
4575
            </summary>
4576
            <value>The type name assembly format.</value>
4577
        </member>
4578
        <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
4579
            <summary>
4580
            Gets or sets how object references are preserved by the serializer.
4581
            </summary>
4582
        </member>
4583
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
4584
            <summary>
4585
            Get or set how reference loops (e.g. a class referencing itself) is handled.
4586
            </summary>
4587
        </member>
4588
        <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
4589
            <summary>
4590
            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
4591
            </summary>
4592
        </member>
4593
        <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
4594
            <summary>
4595
            Get or set how null values are handled during serialization and deserialization.
4596
            </summary>
4597
        </member>
4598
        <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
4599
            <summary>
4600
            Get or set how null default are handled during serialization and deserialization.
4601
            </summary>
4602
        </member>
4603
        <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
4604
            <summary>
4605
            Gets or sets how objects are created during deserialization.
4606
            </summary>
4607
            <value>The object creation handling.</value>
4608
        </member>
4609
        <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
4610
            <summary>
4611
            Gets or sets how constructors are used during deserialization.
4612
            </summary>
4613
            <value>The constructor handling.</value>
4614
        </member>
4615
        <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
4616
            <summary>
4617
            Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
4618
            </summary>
4619
            <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
4620
        </member>
4621
        <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
4622
            <summary>
4623
            Gets or sets the contract resolver used by the serializer when
4624
            serializing .NET objects to JSON and vice versa.
4625
            </summary>
4626
        </member>
4627
        <member name="P:Newtonsoft.Json.JsonSerializer.Context">
4628
            <summary>
4629
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
4630
            </summary>
4631
            <value>The context.</value>
4632
        </member>
4633
        <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
4634
            <summary>
4635
            Indicates how JSON text output is formatted.
4636
            </summary>
4637
        </member>
4638
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
4639
            <summary>
4640
            Get or set how dates are written to JSON text.
4641
            </summary>
4642
        </member>
4643
        <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
4644
            <summary>
4645
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
4646
            </summary>
4647
        </member>
4648
        <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
4649
            <summary>
4650
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
4651
            </summary>
4652
        </member>
4653
        <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
4654
            <summary>
4655
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
4656
            </summary>
4657
        </member>
4658
        <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
4659
            <summary>
4660
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
4661
            </summary>
4662
        </member>
4663
        <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
4664
            <summary>
4665
            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
4666
            </summary>
4667
            <value>
4668
                    <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
4669
            </value>
4670
        </member>
4671
        <member name="T:Newtonsoft.Json.Linq.Extensions">
4672
            <summary>
4673
            Contains the LINQ to JSON extension methods.
4674
            </summary>
4675
        </member>
4676
        <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
4677
            <summary>
4678
            Returns a collection of tokens that contains the ancestors of every token in the source collection.
4679
            </summary>
4680
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
4681
            <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>
4682
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the ancestors of every node in the source collection.</returns>
4683
        </member>
4684
        <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
4685
            <summary>
4686
            Returns a collection of tokens that contains the descendants of every token in the source collection.
4687
            </summary>
4688
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
4689
            <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>
4690
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the descendants of every node in the source collection.</returns>
4691
        </member>
4692
        <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
4693
            <summary>
4694
            Returns a collection of child properties of every object in the source collection.
4695
            </summary>
4696
            <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>
4697
            <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>
4698
        </member>
4699
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
4700
            <summary>
4701
            Returns a collection of child values of every object in the source collection with the given key.
4702
            </summary>
4703
            <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>
4704
            <param name="key">The token key.</param>
4705
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every node in the source collection with the given key.</returns>
4706
        </member>
4707
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
4708
            <summary>
4709
            Returns a collection of child values of every object in the source collection.
4710
            </summary>
4711
            <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>
4712
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every node in the source collection.</returns>
4713
        </member>
4714
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
4715
            <summary>
4716
            Returns a collection of converted child values of every object in the source collection with the given key.
4717
            </summary>
4718
            <typeparam name="U">The type to convert the values to.</typeparam>
4719
            <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>
4720
            <param name="key">The token key.</param>
4721
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection with the given key.</returns>
4722
        </member>
4723
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
4724
            <summary>
4725
            Returns a collection of converted child values of every object in the source collection.
4726
            </summary>
4727
            <typeparam name="U">The type to convert the values to.</typeparam>
4728
            <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>
4729
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection.</returns>
4730
        </member>
4731
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
4732
            <summary>
4733
            Converts the value.
4734
            </summary>
4735
            <typeparam name="U">The type to convert the value to.</typeparam>
4736
            <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>
4737
            <returns>A converted value.</returns>
4738
        </member>
4739
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
4740
            <summary>
4741
            Converts the value.
4742
            </summary>
4743
            <typeparam name="T">The source collection type.</typeparam>
4744
            <typeparam name="U">The type to convert the value to.</typeparam>
4745
            <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>
4746
            <returns>A converted value.</returns>
4747
        </member>
4748
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
4749
            <summary>
4750
            Returns a collection of child tokens of every array in the source collection.
4751
            </summary>
4752
            <typeparam name="T">The source collection type.</typeparam>
4753
            <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>
4754
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every node in the source collection.</returns>
4755
        </member>
4756
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
4757
            <summary>
4758
            Returns a collection of converted child tokens of every array in the source collection.
4759
            </summary>
4760
            <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>
4761
            <typeparam name="U">The type to convert the values to.</typeparam>
4762
            <typeparam name="T">The source collection type.</typeparam>
4763
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection.</returns>
4764
        </member>
4765
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
4766
            <summary>
4767
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
4768
            </summary>
4769
            <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>
4770
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
4771
        </member>
4772
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
4773
            <summary>
4774
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
4775
            </summary>
4776
            <typeparam name="T">The source collection type.</typeparam>
4777
            <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>
4778
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
4779
        </member>
4780
        <member name="T:Newtonsoft.Json.Linq.JConstructor">
4781
            <summary>
4782
            Represents a JSON constructor.
4783
            </summary>
4784
        </member>
4785
        <member name="T:Newtonsoft.Json.Linq.JContainer">
4786
            <summary>
4787
            Represents a token that can contain other tokens.
4788
            </summary>
4789
        </member>
4790
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
4791
            <summary>
4792
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
4793
            </summary>
4794
            <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
4795
        </member>
4796
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
4797
            <summary>
4798
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
4799
            </summary>
4800
            <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
4801
        </member>
4802
        <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
4803
            <summary>
4804
            Returns a collection of the child tokens of this token, in document order.
4805
            </summary>
4806
            <returns>
4807
            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.
4808
            </returns>
4809
        </member>
4810
        <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
4811
            <summary>
4812
            Returns a collection of the child values of this token, in document order.
4813
            </summary>
4814
            <typeparam name="T">The type to convert the values to.</typeparam>
4815
            <returns>
4816
            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.
4817
            </returns>
4818
        </member>
4819
        <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
4820
            <summary>
4821
            Returns a collection of the descendant tokens for this token in document order.
4822
            </summary>
4823
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
4824
        </member>
4825
        <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
4826
            <summary>
4827
            Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4828
            </summary>
4829
            <param name="content">The content to be added.</param>
4830
        </member>
4831
        <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
4832
            <summary>
4833
            Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4834
            </summary>
4835
            <param name="content">The content to be added.</param>
4836
        </member>
4837
        <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
4838
            <summary>
4839
            Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4840
            </summary>
4841
            <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
4842
        </member>
4843
        <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
4844
            <summary>
4845
            Replaces the children nodes of this token with the specified content.
4846
            </summary>
4847
            <param name="content">The content.</param>
4848
        </member>
4849
        <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
4850
            <summary>
4851
            Removes the child nodes from this token.
4852
            </summary>
4853
        </member>
4854
        <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
4855
            <summary>
4856
            Occurs when the list changes or an item in the list changes.
4857
            </summary>
4858
        </member>
4859
        <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
4860
            <summary>
4861
            Occurs before an item is added to the collection.
4862
            </summary>
4863
        </member>
4864
        <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
4865
            <summary>
4866
            Gets the container's children tokens.
4867
            </summary>
4868
            <value>The container's children tokens.</value>
4869
        </member>
4870
        <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
4871
            <summary>
4872
            Gets a value indicating whether this token has childen tokens.
4873
            </summary>
4874
            <value>
4875
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
4876
            </value>
4877
        </member>
4878
        <member name="P:Newtonsoft.Json.Linq.JContainer.First">
4879
            <summary>
4880
            Get the first child token of this token.
4881
            </summary>
4882
            <value>
4883
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4884
            </value>
4885
        </member>
4886
        <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
4887
            <summary>
4888
            Get the last child token of this token.
4889
            </summary>
4890
            <value>
4891
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4892
            </value>
4893
        </member>
4894
        <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
4895
            <summary>
4896
            Gets the count of child JSON tokens.
4897
            </summary>
4898
            <value>The count of child JSON tokens</value>
4899
        </member>
4900
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
4901
            <summary>
4902
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
4903
            </summary>
4904
        </member>
4905
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
4906
            <summary>
4907
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
4908
            </summary>
4909
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
4910
        </member>
4911
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
4912
            <summary>
4913
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
4914
            </summary>
4915
            <param name="name">The constructor name.</param>
4916
            <param name="content">The contents of the constructor.</param>
4917
        </member>
4918
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
4919
            <summary>
4920
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
4921
            </summary>
4922
            <param name="name">The constructor name.</param>
4923
            <param name="content">The contents of the constructor.</param>
4924
        </member>
4925
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
4926
            <summary>
4927
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
4928
            </summary>
4929
            <param name="name">The constructor name.</param>
4930
        </member>
4931
        <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
4932
            <summary>
4933
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
4934
            </summary>
4935
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
4936
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
4937
        </member>
4938
        <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
4939
            <summary>
4940
            Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
4941
            </summary>
4942
            <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>
4943
            <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>
4944
        </member>
4945
        <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
4946
            <summary>
4947
            Gets the container's children tokens.
4948
            </summary>
4949
            <value>The container's children tokens.</value>
4950
        </member>
4951
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
4952
            <summary>
4953
            Gets or sets the name of this constructor.
4954
            </summary>
4955
            <value>The constructor name.</value>
4956
        </member>
4957
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
4958
            <summary>
4959
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4960
            </summary>
4961
            <value>The type.</value>
4962
        </member>
4963
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
4964
            <summary>
4965
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
4966
            </summary>
4967
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
4968
        </member>
4969
        <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
4970
            <summary>
4971
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
4972
            </summary>
4973
            <typeparam name="T">The type of token</typeparam>
4974
        </member>
4975
        <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
4976
            <summary>
4977
            An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
4978
            </summary>
4979
        </member>
4980
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
4981
            <summary>
4982
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
4983
            </summary>
4984
            <param name="enumerable">The enumerable.</param>
4985
        </member>
4986
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
4987
            <summary>
4988
            Returns an enumerator that iterates through the collection.
4989
            </summary>
4990
            <returns>
4991
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
4992
            </returns>
4993
        </member>
4994
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator">
4995
            <summary>
4996
            Returns an enumerator that iterates through a collection.
4997
            </summary>
4998
            <returns>
4999
            An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
5000
            </returns>
5001
        </member>
5002
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
5003
            <summary>
5004
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
5005
            </summary>
5006
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
5007
            <returns>
5008
                    <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
5009
            </returns>
5010
        </member>
5011
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
5012
            <summary>
5013
            Returns a hash code for this instance.
5014
            </summary>
5015
            <returns>
5016
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
5017
            </returns>
5018
        </member>
5019
        <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
5020
            <summary>
5021
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
5022
            </summary>
5023
            <value></value>
5024
        </member>
5025
        <member name="T:Newtonsoft.Json.Linq.JObject">
5026
            <summary>
5027
            Represents a JSON object.
5028
            </summary>
5029
            <example>
5030
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
5031
            </example>
5032
        </member>
5033
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
5034
            <summary>
5035
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
5036
            </summary>
5037
        </member>
5038
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
5039
            <summary>
5040
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
5041
            </summary>
5042
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
5043
        </member>
5044
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
5045
            <summary>
5046
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
5047
            </summary>
5048
            <param name="content">The contents of the object.</param>
5049
        </member>
5050
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
5051
            <summary>
5052
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
5053
            </summary>
5054
            <param name="content">The contents of the object.</param>
5055
        </member>
5056
        <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
5057
            <summary>
5058
            Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.
5059
            </summary>
5060
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns>
5061
        </member>
5062
        <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
5063
            <summary>
5064
            Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
5065
            </summary>
5066
            <param name="name">The property name.</param>
5067
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns>
5068
        </member>
5069
        <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
5070
            <summary>
5071
            Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.
5072
            </summary>
5073
            <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns>
5074
        </member>
5075
        <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
5076
            <summary>
5077
            Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5078
            </summary>
5079
            <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>
5080
            <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>
5081
        </member>
5082
        <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
5083
            <summary>
5084
            Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
5085
            </summary>
5086
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
5087
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
5088
            <example>
5089
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text"/>
5090
            </example>
5091
        </member>
5092
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
5093
            <summary>
5094
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
5095
            </summary>
5096
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
5097
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
5098
        </member>
5099
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
5100
            <summary>
5101
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
5102
            </summary>
5103
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
5104
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
5105
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
5106
        </member>
5107
        <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5108
            <summary>
5109
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5110
            </summary>
5111
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5112
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5113
        </member>
5114
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
5115
            <summary>
5116
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
5117
            </summary>
5118
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</value>
5119
        </member>
5120
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
5121
            <summary>
5122
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
5123
            The exact property name will be searched for first and if no matching property is found then
5124
            the <see cref="T:System.StringComparison"/> will be used to match a property.
5125
            </summary>
5126
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</value>
5127
        </member>
5128
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
5129
            <summary>
5130
            Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
5131
            The exact property name will be searched for first and if no matching property is found then
5132
            the <see cref="T:System.StringComparison"/> will be used to match a property.
5133
            </summary>
5134
            <param name="propertyName">Name of the property.</param>
5135
            <param name="value">The value.</param>
5136
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
5137
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
5138
        </member>
5139
        <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
5140
            <summary>
5141
            Adds the specified property name.
5142
            </summary>
5143
            <param name="propertyName">Name of the property.</param>
5144
            <param name="value">The value.</param>
5145
        </member>
5146
        <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
5147
            <summary>
5148
            Removes the property with the specified name.
5149
            </summary>
5150
            <param name="propertyName">Name of the property.</param>
5151
            <returns>true if item was successfully removed; otherwise, false.</returns>
5152
        </member>
5153
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
5154
            <summary>
5155
            Tries the get value.
5156
            </summary>
5157
            <param name="propertyName">Name of the property.</param>
5158
            <param name="value">The value.</param>
5159
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
5160
        </member>
5161
        <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
5162
            <summary>
5163
            Returns an enumerator that iterates through the collection.
5164
            </summary>
5165
            <returns>
5166
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
5167
            </returns>
5168
        </member>
5169
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
5170
            <summary>
5171
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
5172
            </summary>
5173
            <param name="propertyName">Name of the property.</param>
5174
        </member>
5175
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">
5176
            <summary>
5177
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments.
5178
            </summary>
5179
            <param name="propertyName">Name of the property.</param>
5180
        </member>
5181
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
5182
            <summary>
5183
            Returns the properties for this instance of a component.
5184
            </summary>
5185
            <returns>
5186
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance.
5187
            </returns>
5188
        </member>
5189
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
5190
            <summary>
5191
            Returns the properties for this instance of a component using the attribute array as a filter.
5192
            </summary>
5193
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
5194
            <returns>
5195
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.
5196
            </returns>
5197
        </member>
5198
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
5199
            <summary>
5200
            Returns a collection of custom attributes for this instance of a component.
5201
            </summary>
5202
            <returns>
5203
            An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object.
5204
            </returns>
5205
        </member>
5206
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
5207
            <summary>
5208
            Returns the class name of this instance of a component.
5209
            </summary>
5210
            <returns>
5211
            The class name of the object, or null if the class does not have a name.
5212
            </returns>
5213
        </member>
5214
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
5215
            <summary>
5216
            Returns the name of this instance of a component.
5217
            </summary>
5218
            <returns>
5219
            The name of the object, or null if the object does not have a name.
5220
            </returns>
5221
        </member>
5222
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
5223
            <summary>
5224
            Returns a type converter for this instance of a component.
5225
            </summary>
5226
            <returns>
5227
            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.
5228
            </returns>
5229
        </member>
5230
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
5231
            <summary>
5232
            Returns the default event for this instance of a component.
5233
            </summary>
5234
            <returns>
5235
            An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events.
5236
            </returns>
5237
        </member>
5238
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
5239
            <summary>
5240
            Returns the default property for this instance of a component.
5241
            </summary>
5242
            <returns>
5243
            A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties.
5244
            </returns>
5245
        </member>
5246
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
5247
            <summary>
5248
            Returns an editor of the specified type for this instance of a component.
5249
            </summary>
5250
            <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param>
5251
            <returns>
5252
            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.
5253
            </returns>
5254
        </member>
5255
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
5256
            <summary>
5257
            Returns the events for this instance of a component using the specified attribute array as a filter.
5258
            </summary>
5259
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
5260
            <returns>
5261
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance.
5262
            </returns>
5263
        </member>
5264
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
5265
            <summary>
5266
            Returns the events for this instance of a component.
5267
            </summary>
5268
            <returns>
5269
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance.
5270
            </returns>
5271
        </member>
5272
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
5273
            <summary>
5274
            Returns an object that contains the property described by the specified property descriptor.
5275
            </summary>
5276
            <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param>
5277
            <returns>
5278
            An <see cref="T:System.Object"/> that represents the owner of the specified property.
5279
            </returns>
5280
        </member>
5281
        <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
5282
            <summary>
5283
            Gets the container's children tokens.
5284
            </summary>
5285
            <value>The container's children tokens.</value>
5286
        </member>
5287
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
5288
            <summary>
5289
            Occurs when a property value changes.
5290
            </summary>
5291
        </member>
5292
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">
5293
            <summary>
5294
            Occurs when a property value is changing.
5295
            </summary>
5296
        </member>
5297
        <member name="P:Newtonsoft.Json.Linq.JObject.Type">
5298
            <summary>
5299
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5300
            </summary>
5301
            <value>The type.</value>
5302
        </member>
5303
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
5304
            <summary>
5305
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5306
            </summary>
5307
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
5308
        </member>
5309
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
5310
            <summary>
5311
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
5312
            </summary>
5313
            <value></value>
5314
        </member>
5315
        <member name="T:Newtonsoft.Json.Linq.JArray">
5316
            <summary>
5317
            Represents a JSON array.
5318
            </summary>
5319
            <example>
5320
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
5321
            </example>
5322
        </member>
5323
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
5324
            <summary>
5325
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
5326
            </summary>
5327
        </member>
5328
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
5329
            <summary>
5330
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
5331
            </summary>
5332
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
5333
        </member>
5334
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
5335
            <summary>
5336
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
5337
            </summary>
5338
            <param name="content">The contents of the array.</param>
5339
        </member>
5340
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
5341
            <summary>
5342
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
5343
            </summary>
5344
            <param name="content">The contents of the array.</param>
5345
        </member>
5346
        <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
5347
            <summary>
5348
            Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5349
            </summary>
5350
            <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>
5351
            <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>
5352
        </member>
5353
        <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
5354
            <summary>
5355
            Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
5356
            </summary>
5357
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
5358
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
5359
            <example>
5360
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text"/>
5361
            </example>
5362
        </member>
5363
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
5364
            <summary>
5365
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
5366
            </summary>
5367
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
5368
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
5369
        </member>
5370
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
5371
            <summary>
5372
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
5373
            </summary>
5374
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
5375
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
5376
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
5377
        </member>
5378
        <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5379
            <summary>
5380
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5381
            </summary>
5382
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5383
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5384
        </member>
5385
        <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
5386
            <summary>
5387
            Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
5388
            </summary>
5389
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
5390
            <returns>
5391
            The index of <paramref name="item"/> if found in the list; otherwise, -1.
5392
            </returns>
5393
        </member>
5394
        <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
5395
            <summary>
5396
            Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.
5397
            </summary>
5398
            <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
5399
            <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
5400
            <exception cref="T:System.ArgumentOutOfRangeException">
5401
                    <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
5402
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
5403
        </member>
5404
        <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
5405
            <summary>
5406
            Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
5407
            </summary>
5408
            <param name="index">The zero-based index of the item to remove.</param>
5409
            <exception cref="T:System.ArgumentOutOfRangeException">
5410
                    <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
5411
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
5412
        </member>
5413
        <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
5414
            <summary>
5415
            Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
5416
            </summary>
5417
            <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
5418
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
5419
        </member>
5420
        <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
5421
            <summary>
5422
            Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
5423
            </summary>
5424
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
5425
        </member>
5426
        <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
5427
            <summary>
5428
            Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
5429
            </summary>
5430
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
5431
            <returns>
5432
            true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
5433
            </returns>
5434
        </member>
5435
        <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
5436
            <summary>
5437
            Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
5438
            </summary>
5439
            <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
5440
            <returns>
5441
            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"/>.
5442
            </returns>
5443
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
5444
        </member>
5445
        <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
5446
            <summary>
5447
            Gets the container's children tokens.
5448
            </summary>
5449
            <value>The container's children tokens.</value>
5450
        </member>
5451
        <member name="P:Newtonsoft.Json.Linq.JArray.Type">
5452
            <summary>
5453
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5454
            </summary>
5455
            <value>The type.</value>
5456
        </member>
5457
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
5458
            <summary>
5459
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5460
            </summary>
5461
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
5462
        </member>
5463
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
5464
            <summary>
5465
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
5466
            </summary>
5467
            <value></value>
5468
        </member>
5469
        <member name="T:Newtonsoft.Json.Linq.JTokenReader">
5470
            <summary>
5471
            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
5472
            </summary>
5473
        </member>
5474
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
5475
            <summary>
5476
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
5477
            </summary>
5478
            <param name="token">The token to read from.</param>
5479
        </member>
5480
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">
5481
            <summary>
5482
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
5483
            </summary>
5484
            <returns>
5485
            A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
5486
            </returns>
5487
        </member>
5488
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">
5489
            <summary>
5490
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5491
            </summary>
5492
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
5493
        </member>
5494
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
5495
            <summary>
5496
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5497
            </summary>
5498
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
5499
        </member>
5500
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString">
5501
            <summary>
5502
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
5503
            </summary>
5504
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
5505
        </member>
5506
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime">
5507
            <summary>
5508
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5509
            </summary>
5510
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
5511
        </member>
5512
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">
5513
            <summary>
5514
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5515
            </summary>
5516
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
5517
        </member>
5518
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
5519
            <summary>
5520
            Reads the next JSON token from the stream.
5521
            </summary>
5522
            <returns>
5523
            true if the next token was read successfully; false if there are no more tokens to read.
5524
            </returns>
5525
        </member>
5526
        <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
5527
            <summary>
5528
            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
5529
            </summary>
5530
        </member>
5531
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
5532
            <summary>
5533
            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"/>.
5534
            </summary>
5535
            <param name="container">The container being written to.</param>
5536
        </member>
5537
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
5538
            <summary>
5539
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
5540
            </summary>
5541
        </member>
5542
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
5543
            <summary>
5544
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
5545
            </summary>
5546
        </member>
5547
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
5548
            <summary>
5549
            Closes this stream and the underlying stream.
5550
            </summary>
5551
        </member>
5552
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
5553
            <summary>
5554
            Writes the beginning of a Json object.
5555
            </summary>
5556
        </member>
5557
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
5558
            <summary>
5559
            Writes the beginning of a Json array.
5560
            </summary>
5561
        </member>
5562
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
5563
            <summary>
5564
            Writes the start of a constructor with the given name.
5565
            </summary>
5566
            <param name="name">The name of the constructor.</param>
5567
        </member>
5568
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
5569
            <summary>
5570
            Writes the end.
5571
            </summary>
5572
            <param name="token">The token.</param>
5573
        </member>
5574
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
5575
            <summary>
5576
            Writes the property name of a name/value pair on a Json object.
5577
            </summary>
5578
            <param name="name">The name of the property.</param>
5579
        </member>
5580
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
5581
            <summary>
5582
            Writes a null value.
5583
            </summary>
5584
        </member>
5585
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
5586
            <summary>
5587
            Writes an undefined value.
5588
            </summary>
5589
        </member>
5590
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
5591
            <summary>
5592
            Writes raw JSON.
5593
            </summary>
5594
            <param name="json">The raw JSON to write.</param>
5595
        </member>
5596
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
5597
            <summary>
5598
            Writes out a comment <code>/*...*/</code> containing the specified text.
5599
            </summary>
5600
            <param name="text">Text to place inside the comment.</param>
5601
        </member>
5602
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
5603
            <summary>
5604
            Writes a <see cref="T:System.String"/> value.
5605
            </summary>
5606
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
5607
        </member>
5608
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
5609
            <summary>
5610
            Writes a <see cref="T:System.Int32"/> value.
5611
            </summary>
5612
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
5613
        </member>
5614
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
5615
            <summary>
5616
            Writes a <see cref="T:System.UInt32"/> value.
5617
            </summary>
5618
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
5619
        </member>
5620
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
5621
            <summary>
5622
            Writes a <see cref="T:System.Int64"/> value.
5623
            </summary>
5624
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
5625
        </member>
5626
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
5627
            <summary>
5628
            Writes a <see cref="T:System.UInt64"/> value.
5629
            </summary>
5630
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
5631
        </member>
5632
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
5633
            <summary>
5634
            Writes a <see cref="T:System.Single"/> value.
5635
            </summary>
5636
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
5637
        </member>
5638
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
5639
            <summary>
5640
            Writes a <see cref="T:System.Double"/> value.
5641
            </summary>
5642
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
5643
        </member>
5644
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
5645
            <summary>
5646
            Writes a <see cref="T:System.Boolean"/> value.
5647
            </summary>
5648
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
5649
        </member>
5650
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
5651
            <summary>
5652
            Writes a <see cref="T:System.Int16"/> value.
5653
            </summary>
5654
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
5655
        </member>
5656
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
5657
            <summary>
5658
            Writes a <see cref="T:System.UInt16"/> value.
5659
            </summary>
5660
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
5661
        </member>
5662
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
5663
            <summary>
5664
            Writes a <see cref="T:System.Char"/> value.
5665
            </summary>
5666
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
5667
        </member>
5668
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
5669
            <summary>
5670
            Writes a <see cref="T:System.Byte"/> value.
5671
            </summary>
5672
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
5673
        </member>
5674
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
5675
            <summary>
5676
            Writes a <see cref="T:System.SByte"/> value.
5677
            </summary>
5678
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
5679
        </member>
5680
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
5681
            <summary>
5682
            Writes a <see cref="T:System.Decimal"/> value.
5683
            </summary>
5684
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
5685
        </member>
5686
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
5687
            <summary>
5688
            Writes a <see cref="T:System.DateTime"/> value.
5689
            </summary>
5690
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
5691
        </member>
5692
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">
5693
            <summary>
5694
            Writes a <see cref="T:System.DateTimeOffset"/> value.
5695
            </summary>
5696
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
5697
        </member>
5698
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
5699
            <summary>
5700
            Writes a <see cref="T:Byte[]"/> value.
5701
            </summary>
5702
            <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
5703
        </member>
5704
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
5705
            <summary>
5706
            Writes a <see cref="T:System.TimeSpan"/> value.
5707
            </summary>
5708
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
5709
        </member>
5710
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
5711
            <summary>
5712
            Writes a <see cref="T:System.Guid"/> value.
5713
            </summary>
5714
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
5715
        </member>
5716
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
5717
            <summary>
5718
            Writes a <see cref="T:System.Uri"/> value.
5719
            </summary>
5720
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
5721
        </member>
5722
        <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
5723
            <summary>
5724
            Gets the token being writen.
5725
            </summary>
5726
            <value>The token being writen.</value>
5727
        </member>
5728
        <member name="T:Newtonsoft.Json.Linq.JProperty">
5729
            <summary>
5730
            Represents a JSON property.
5731
            </summary>
5732
        </member>
5733
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
5734
            <summary>
5735
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
5736
            </summary>
5737
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
5738
        </member>
5739
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
5740
            <summary>
5741
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
5742
            </summary>
5743
            <param name="name">The property name.</param>
5744
            <param name="content">The property content.</param>
5745
        </member>
5746
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
5747
            <summary>
5748
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
5749
            </summary>
5750
            <param name="name">The property name.</param>
5751
            <param name="content">The property content.</param>
5752
        </member>
5753
        <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5754
            <summary>
5755
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5756
            </summary>
5757
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5758
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5759
        </member>
5760
        <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
5761
            <summary>
5762
            Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5763
            </summary>
5764
            <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>
5765
            <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>
5766
        </member>
5767
        <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
5768
            <summary>
5769
            Gets the container's children tokens.
5770
            </summary>
5771
            <value>The container's children tokens.</value>
5772
        </member>
5773
        <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
5774
            <summary>
5775
            Gets the property name.
5776
            </summary>
5777
            <value>The property name.</value>
5778
        </member>
5779
        <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
5780
            <summary>
5781
            Gets or sets the property value.
5782
            </summary>
5783
            <value>The property value.</value>
5784
        </member>
5785
        <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
5786
            <summary>
5787
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5788
            </summary>
5789
            <value>The type.</value>
5790
        </member>
5791
        <member name="T:Newtonsoft.Json.Linq.JTokenType">
5792
            <summary>
5793
            Specifies the type of token.
5794
            </summary>
5795
        </member>
5796
        <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
5797
            <summary>
5798
            No token type has been set.
5799
            </summary>
5800
        </member>
5801
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
5802
            <summary>
5803
            A JSON object.
5804
            </summary>
5805
        </member>
5806
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
5807
            <summary>
5808
            A JSON array.
5809
            </summary>
5810
        </member>
5811
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
5812
            <summary>
5813
            A JSON constructor.
5814
            </summary>
5815
        </member>
5816
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
5817
            <summary>
5818
            A JSON object property.
5819
            </summary>
5820
        </member>
5821
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
5822
            <summary>
5823
            A comment.
5824
            </summary>
5825
        </member>
5826
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
5827
            <summary>
5828
            An integer value.
5829
            </summary>
5830
        </member>
5831
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
5832
            <summary>
5833
            A float value.
5834
            </summary>
5835
        </member>
5836
        <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
5837
            <summary>
5838
            A string value.
5839
            </summary>
5840
        </member>
5841
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
5842
            <summary>
5843
            A boolean value.
5844
            </summary>
5845
        </member>
5846
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
5847
            <summary>
5848
            A null value.
5849
            </summary>
5850
        </member>
5851
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
5852
            <summary>
5853
            An undefined value.
5854
            </summary>
5855
        </member>
5856
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
5857
            <summary>
5858
            A date value.
5859
            </summary>
5860
        </member>
5861
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
5862
            <summary>
5863
            A raw JSON value.
5864
            </summary>
5865
        </member>
5866
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
5867
            <summary>
5868
            A collection of bytes value.
5869
            </summary>
5870
        </member>
5871
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
5872
            <summary>
5873
            A Guid value.
5874
            </summary>
5875
        </member>
5876
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
5877
            <summary>
5878
            A Uri value.
5879
            </summary>
5880
        </member>
5881
        <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
5882
            <summary>
5883
            A TimeSpan value.
5884
            </summary>
5885
        </member>
5886
        <member name="T:Newtonsoft.Json.Schema.Extensions">
5887
            <summary>
5888
            Contains the JSON schema extension methods.
5889
            </summary>
5890
        </member>
5891
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
5892
            <summary>
5893
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
5894
            </summary>
5895
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
5896
            <param name="schema">The schema to test with.</param>
5897
            <returns>
5898
                    <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
5899
            </returns>
5900
        </member>
5901
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
5902
            <summary>
5903
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
5904
            </summary>
5905
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
5906
            <param name="schema">The schema to test with.</param>
5907
            <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
5908
            <returns>
5909
                    <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
5910
            </returns>
5911
        </member>
5912
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
5913
            <summary>
5914
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5915
            </summary>
5916
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
5917
            <param name="schema">The schema to test with.</param>
5918
        </member>
5919
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
5920
            <summary>
5921
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5922
            </summary>
5923
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
5924
            <param name="schema">The schema to test with.</param>
5925
            <param name="validationEventHandler">The validation event handler.</param>
5926
        </member>
5927
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
5928
            <summary>
5929
            Returns detailed information about the schema exception.
5930
            </summary>
5931
        </member>
5932
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
5933
            <summary>
5934
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
5935
            </summary>
5936
        </member>
5937
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
5938
            <summary>
5939
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
5940
            with a specified error message.
5941
            </summary>
5942
            <param name="message">The error message that explains the reason for the exception.</param>
5943
        </member>
5944
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
5945
            <summary>
5946
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
5947
            with a specified error message and a reference to the inner exception that is the cause of this exception.
5948
            </summary>
5949
            <param name="message">The error message that explains the reason for the exception.</param>
5950
            <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>
5951
        </member>
5952
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5953
            <summary>
5954
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
5955
            </summary>
5956
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
5957
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
5958
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
5959
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
5960
        </member>
5961
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
5962
            <summary>
5963
            Gets the line number indicating where the error occurred.
5964
            </summary>
5965
            <value>The line number indicating where the error occurred.</value>
5966
        </member>
5967
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
5968
            <summary>
5969
            Gets the line position indicating where the error occurred.
5970
            </summary>
5971
            <value>The line position indicating where the error occurred.</value>
5972
        </member>
5973
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
5974
            <summary>
5975
            Gets the path to the JSON where the error occurred.
5976
            </summary>
5977
            <value>The path to the JSON where the error occurred.</value>
5978
        </member>
5979
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
5980
            <summary>
5981
            Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
5982
            </summary>
5983
        </member>
5984
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
5985
            <summary>
5986
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
5987
            </summary>
5988
        </member>
5989
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
5990
            <summary>
5991
            Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified id.
5992
            </summary>
5993
            <param name="id">The id.</param>
5994
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified id.</returns>
5995
        </member>
5996
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
5997
            <summary>
5998
            Gets or sets the loaded schemas.
5999
            </summary>
6000
            <value>The loaded schemas.</value>
6001
        </member>
6002
        <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
6003
            <summary>
6004
            Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
6005
            </summary>
6006
        </member>
6007
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
6008
            <summary>
6009
            Do not infer a schema Id.
6010
            </summary>
6011
        </member>
6012
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
6013
            <summary>
6014
            Use the .NET type name as the schema Id.
6015
            </summary>
6016
        </member>
6017
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
6018
            <summary>
6019
            Use the assembly qualified .NET type name as the schema Id.
6020
            </summary>
6021
        </member>
6022
        <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
6023
            <summary>
6024
            Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
6025
            </summary>
6026
        </member>
6027
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
6028
            <summary>
6029
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.
6030
            </summary>
6031
            <value>The JsonSchemaException associated with the validation error.</value>
6032
        </member>
6033
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
6034
            <summary>
6035
            Gets the path of the JSON location where the validation error occurred.
6036
            </summary>
6037
            <value>The path of the JSON location where the validation error occurred.</value>
6038
        </member>
6039
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
6040
            <summary>
6041
            Gets the text description corresponding to the validation error.
6042
            </summary>
6043
            <value>The text description.</value>
6044
        </member>
6045
        <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
6046
            <summary>
6047
            Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
6048
            </summary>
6049
        </member>
6050
        <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
6051
            <summary>
6052
            Resolves member mappings for a type, camel casing property names.
6053
            </summary>
6054
        </member>
6055
        <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
6056
            <summary>
6057
            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"/>.
6058
            </summary>
6059
        </member>
6060
        <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
6061
            <summary>
6062
            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"/>.
6063
            </summary>
6064
            <example>
6065
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class"/>
6066
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example"/>
6067
            </example>
6068
        </member>
6069
        <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
6070
            <summary>
6071
            Resolves the contract for a given type.
6072
            </summary>
6073
            <param name="type">The type to resolve a contract for.</param>
6074
            <returns>The contract for a given type.</returns>
6075
        </member>
6076
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
6077
            <summary>
6078
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
6079
            </summary>
6080
        </member>
6081
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)">
6082
            <summary>
6083
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
6084
            </summary>
6085
            <param name="shareCache">
6086
            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.
6087
            Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected
6088
            behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly
6089
            recommended to reuse <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> instances with the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6090
            </param>
6091
        </member>
6092
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
6093
            <summary>
6094
            Resolves the contract for a given type.
6095
            </summary>
6096
            <param name="type">The type to resolve a contract for.</param>
6097
            <returns>The contract for a given type.</returns>
6098
        </member>
6099
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
6100
            <summary>
6101
            Gets the serializable members for the type.
6102
            </summary>
6103
            <param name="objectType">The type to get serializable members for.</param>
6104
            <returns>The serializable members for the type.</returns>
6105
        </member>
6106
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
6107
            <summary>
6108
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
6109
            </summary>
6110
            <param name="objectType">Type of the object.</param>
6111
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
6112
        </member>
6113
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
6114
            <summary>
6115
            Creates the constructor parameters.
6116
            </summary>
6117
            <param name="constructor">The constructor to create properties for.</param>
6118
            <param name="memberProperties">The type's member properties.</param>
6119
            <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
6120
        </member>
6121
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
6122
            <summary>
6123
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
6124
            </summary>
6125
            <param name="matchingMemberProperty">The matching member property.</param>
6126
            <param name="parameterInfo">The constructor parameter.</param>
6127
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
6128
        </member>
6129
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
6130
            <summary>
6131
            Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for the contract.
6132
            </summary>
6133
            <param name="objectType">Type of the object.</param>
6134
            <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter"/>.</returns>
6135
        </member>
6136
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
6137
            <summary>
6138
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
6139
            </summary>
6140
            <param name="objectType">Type of the object.</param>
6141
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
6142
        </member>
6143
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
6144
            <summary>
6145
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
6146
            </summary>
6147
            <param name="objectType">Type of the object.</param>
6148
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
6149
        </member>
6150
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
6151
            <summary>
6152
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
6153
            </summary>
6154
            <param name="objectType">Type of the object.</param>
6155
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
6156
        </member>
6157
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
6158
            <summary>
6159
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
6160
            </summary>
6161
            <param name="objectType">Type of the object.</param>
6162
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
6163
        </member>
6164
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
6165
            <summary>
6166
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
6167
            </summary>
6168
            <param name="objectType">Type of the object.</param>
6169
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
6170
        </member>
6171
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
6172
            <summary>
6173
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
6174
            </summary>
6175
            <param name="objectType">Type of the object.</param>
6176
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
6177
        </member>
6178
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
6179
            <summary>
6180
            Determines which contract type is created for the given type.
6181
            </summary>
6182
            <param name="objectType">Type of the object.</param>
6183
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
6184
        </member>
6185
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
6186
            <summary>
6187
            Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
6188
            </summary>
6189
            <param name="type">The type to create properties for.</param>
6190
            /// <param name="memberSerialization">The member serialization mode for the type.</param>
6191
            <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
6192
        </member>
6193
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
6194
            <summary>
6195
            Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
6196
            </summary>
6197
            <param name="member">The member.</param>
6198
            <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
6199
        </member>
6200
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
6201
            <summary>
6202
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
6203
            </summary>
6204
            <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
6205
            <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
6206
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
6207
        </member>
6208
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
6209
            <summary>
6210
            Resolves the name of the property.
6211
            </summary>
6212
            <param name="propertyName">Name of the property.</param>
6213
            <returns>Name of the property.</returns>
6214
        </member>
6215
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
6216
            <summary>
6217
            Gets the resolved name of the property.
6218
            </summary>
6219
            <param name="propertyName">Name of the property.</param>
6220
            <returns>Name of the property.</returns>
6221
        </member>
6222
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
6223
            <summary>
6224
            Gets a value indicating whether members are being get and set using dynamic code generation.
6225
            This value is determined by the runtime permissions available.
6226
            </summary>
6227
            <value>
6228
                    <c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
6229
            </value>
6230
        </member>
6231
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
6232
            <summary>
6233
            Gets or sets the default members search flags.
6234
            </summary>
6235
            <value>The default members search flags.</value>
6236
        </member>
6237
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
6238
            <summary>
6239
            Gets or sets a value indicating whether compiler generated members should be serialized.
6240
            </summary>
6241
            <value>
6242
                    <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
6243
            </value>
6244
        </member>
6245
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
6246
            <summary>
6247
            Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.
6248
            </summary>
6249
            <value>
6250
                    <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>.
6251
            </value>
6252
        </member>
6253
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
6254
            <summary>
6255
            Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.
6256
            </summary>
6257
            <value>
6258
                    <c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
6259
            </value>
6260
        </member>
6261
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
6262
            <summary>
6263
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
6264
            </summary>
6265
        </member>
6266
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)">
6267
            <summary>
6268
            Resolves the name of the property.
6269
            </summary>
6270
            <param name="propertyName">Name of the property.</param>
6271
            <returns>The property name camel cased.</returns>
6272
        </member>
6273
        <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
6274
            <summary>
6275
            The default serialization binder used when resolving and loading classes from type names.
6276
            </summary>
6277
        </member>
6278
        <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
6279
            <summary>
6280
            When overridden in a derived class, controls the binding of a serialized object to a type.
6281
            </summary>
6282
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
6283
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
6284
            <returns>
6285
            The type of the object the formatter creates a new instance of.
6286
            </returns>
6287
        </member>
6288
        <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
6289
            <summary>
6290
            Provides information surrounding an error.
6291
            </summary>
6292
        </member>
6293
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
6294
            <summary>
6295
            Gets or sets the error.
6296
            </summary>
6297
            <value>The error.</value>
6298
        </member>
6299
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
6300
            <summary>
6301
            Gets the original object that caused the error.
6302
            </summary>
6303
            <value>The original object that caused the error.</value>
6304
        </member>
6305
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
6306
            <summary>
6307
            Gets the member that caused the error.
6308
            </summary>
6309
            <value>The member that caused the error.</value>
6310
        </member>
6311
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
6312
            <summary>
6313
            Gets the path of the JSON location where the error occurred.
6314
            </summary>
6315
            <value>The path of the JSON location where the error occurred.</value>
6316
        </member>
6317
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
6318
            <summary>
6319
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
6320
            </summary>
6321
            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
6322
        </member>
6323
        <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
6324
            <summary>
6325
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6326
            </summary>
6327
        </member>
6328
        <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
6329
            <summary>
6330
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
6331
            </summary>
6332
            <param name="underlyingType">The underlying type for the contract.</param>
6333
        </member>
6334
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
6335
            <summary>
6336
            Gets the <see cref="T:System.Type"/> of the collection items.
6337
            </summary>
6338
            <value>The <see cref="T:System.Type"/> of the collection items.</value>
6339
        </member>
6340
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
6341
            <summary>
6342
            Gets a value indicating whether the collection type is a multidimensional array.
6343
            </summary>
6344
            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
6345
        </member>
6346
        <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
6347
            <summary>
6348
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6349
            </summary>
6350
        </member>
6351
        <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
6352
            <summary>
6353
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
6354
            </summary>
6355
            <param name="underlyingType">The underlying type for the contract.</param>
6356
        </member>
6357
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver">
6358
            <summary>
6359
            Gets or sets the property name resolver.
6360
            </summary>
6361
            <value>The property name resolver.</value>
6362
        </member>
6363
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
6364
            <summary>
6365
            Gets the <see cref="T:System.Type"/> of the dictionary keys.
6366
            </summary>
6367
            <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
6368
        </member>
6369
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
6370
            <summary>
6371
            Gets the <see cref="T:System.Type"/> of the dictionary values.
6372
            </summary>
6373
            <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
6374
        </member>
6375
        <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
6376
            <summary>
6377
            Maps a JSON property to a .NET member or constructor parameter.
6378
            </summary>
6379
        </member>
6380
        <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
6381
            <summary>
6382
            Returns a <see cref="T:System.String"/> that represents this instance.
6383
            </summary>
6384
            <returns>
6385
            A <see cref="T:System.String"/> that represents this instance.
6386
            </returns>
6387
        </member>
6388
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
6389
            <summary>
6390
            Gets or sets the name of the property.
6391
            </summary>
6392
            <value>The name of the property.</value>
6393
        </member>
6394
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
6395
            <summary>
6396
            Gets or sets the type that declared this property.
6397
            </summary>
6398
            <value>The type that declared this property.</value>
6399
        </member>
6400
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
6401
            <summary>
6402
            Gets or sets the order of serialization and deserialization of a member.
6403
            </summary>
6404
            <value>The numeric order of serialization or deserialization.</value>
6405
        </member>
6406
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
6407
            <summary>
6408
            Gets or sets the name of the underlying member or parameter.
6409
            </summary>
6410
            <value>The name of the underlying member or parameter.</value>
6411
        </member>
6412
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
6413
            <summary>
6414
            Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
6415
            </summary>
6416
            <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>
6417
        </member>
6418
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
6419
            <summary>
6420
            Gets or sets the type of the property.
6421
            </summary>
6422
            <value>The type of the property.</value>
6423
        </member>
6424
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
6425
            <summary>
6426
            Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> for the property.
6427
            If set this converter takes presidence over the contract converter for the property type.
6428
            </summary>
6429
            <value>The converter.</value>
6430
        </member>
6431
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
6432
            <summary>
6433
            Gets the member converter.
6434
            </summary>
6435
            <value>The member converter.</value>
6436
        </member>
6437
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
6438
            <summary>
6439
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
6440
            </summary>
6441
            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
6442
        </member>
6443
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
6444
            <summary>
6445
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
6446
            </summary>
6447
            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
6448
        </member>
6449
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
6450
            <summary>
6451
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
6452
            </summary>
6453
            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
6454
        </member>
6455
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
6456
            <summary>
6457
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
6458
            </summary>
6459
            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
6460
        </member>
6461
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
6462
            <summary>
6463
            Gets the default value.
6464
            </summary>
6465
            <value>The default value.</value>
6466
        </member>
6467
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
6468
            <summary>
6469
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
6470
            </summary>
6471
            <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
6472
        </member>
6473
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
6474
            <summary>
6475
            Gets a value indicating whether this property preserves object references.
6476
            </summary>
6477
            <value>
6478
                    <c>true</c> if this instance is reference; otherwise, <c>false</c>.
6479
            </value>
6480
        </member>
6481
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
6482
            <summary>
6483
            Gets the property null value handling.
6484
            </summary>
6485
            <value>The null value handling.</value>
6486
        </member>
6487
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
6488
            <summary>
6489
            Gets the property default value handling.
6490
            </summary>
6491
            <value>The default value handling.</value>
6492
        </member>
6493
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
6494
            <summary>
6495
            Gets the property reference loop handling.
6496
            </summary>
6497
            <value>The reference loop handling.</value>
6498
        </member>
6499
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
6500
            <summary>
6501
            Gets the property object creation handling.
6502
            </summary>
6503
            <value>The object creation handling.</value>
6504
        </member>
6505
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
6506
            <summary>
6507
            Gets or sets the type name handling.
6508
            </summary>
6509
            <value>The type name handling.</value>
6510
        </member>
6511
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
6512
            <summary>
6513
            Gets or sets a predicate used to determine whether the property should be serialize.
6514
            </summary>
6515
            <value>A predicate used to determine whether the property should be serialize.</value>
6516
        </member>
6517
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
6518
            <summary>
6519
            Gets or sets a predicate used to determine whether the property should be serialized.
6520
            </summary>
6521
            <value>A predicate used to determine whether the property should be serialized.</value>
6522
        </member>
6523
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
6524
            <summary>
6525
            Gets or sets an action used to set whether the property has been deserialized.
6526
            </summary>
6527
            <value>An action used to set whether the property has been deserialized.</value>
6528
        </member>
6529
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
6530
            <summary>
6531
            Gets or sets the converter used when serializing the property's collection items.
6532
            </summary>
6533
            <value>The collection's items converter.</value>
6534
        </member>
6535
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
6536
            <summary>
6537
            Gets or sets whether this property's collection items are serialized as a reference.
6538
            </summary>
6539
            <value>Whether this property's collection items are serialized as a reference.</value>
6540
        </member>
6541
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
6542
            <summary>
6543
            Gets or sets the the type name handling used when serializing the property's collection items.
6544
            </summary>
6545
            <value>The collection's items type name handling.</value>
6546
        </member>
6547
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
6548
            <summary>
6549
            Gets or sets the the reference loop handling used when serializing the property's collection items.
6550
            </summary>
6551
            <value>The collection's items reference loop handling.</value>
6552
        </member>
6553
        <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
6554
            <summary>
6555
            A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
6556
            </summary>
6557
        </member>
6558
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
6559
            <summary>
6560
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
6561
            </summary>
6562
            <param name="type">The type.</param>
6563
        </member>
6564
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
6565
            <summary>
6566
            When implemented in a derived class, extracts the key from the specified element.
6567
            </summary>
6568
            <param name="item">The element from which to extract the key.</param>
6569
            <returns>The key for the specified element.</returns>
6570
        </member>
6571
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
6572
            <summary>
6573
            Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
6574
            </summary>
6575
            <param name="property">The property to add to the collection.</param>
6576
        </member>
6577
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
6578
            <summary>
6579
            Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
6580
            First attempts to get an exact case match of propertyName and then
6581
            a case insensitive match.
6582
            </summary>
6583
            <param name="propertyName">Name of the property.</param>
6584
            <returns>A matching property if found.</returns>
6585
        </member>
6586
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
6587
            <summary>
6588
            Gets a property by property name.
6589
            </summary>
6590
            <param name="propertyName">The name of the property to get.</param>
6591
            <param name="comparisonType">Type property name string comparison.</param>
6592
            <returns>A matching property if found.</returns>
6593
        </member>
6594
        <member name="T:Newtonsoft.Json.MissingMemberHandling">
6595
            <summary>
6596
            Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6597
            </summary>
6598
        </member>
6599
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
6600
            <summary>
6601
            Ignore a missing member and do not attempt to deserialize it.
6602
            </summary>
6603
        </member>
6604
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
6605
            <summary>
6606
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
6607
            </summary>
6608
        </member>
6609
        <member name="T:Newtonsoft.Json.NullValueHandling">
6610
            <summary>
6611
            Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6612
            </summary>
6613
            <example>
6614
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class"/>
6615
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example"/>
6616
            </example>
6617
        </member>
6618
        <member name="F:Newtonsoft.Json.NullValueHandling.Include">
6619
            <summary>
6620
            Include null values when serializing and deserializing objects.
6621
            </summary>
6622
        </member>
6623
        <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
6624
            <summary>
6625
            Ignore null values when serializing and deserializing objects.
6626
            </summary>
6627
        </member>
6628
        <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
6629
            <summary>
6630
            Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6631
            </summary>
6632
        </member>
6633
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
6634
            <summary>
6635
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
6636
            </summary>
6637
        </member>
6638
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
6639
            <summary>
6640
            Ignore loop references and do not serialize.
6641
            </summary>
6642
        </member>
6643
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
6644
            <summary>
6645
            Serialize loop references.
6646
            </summary>
6647
        </member>
6648
        <member name="T:Newtonsoft.Json.Schema.JsonSchema">
6649
            <summary>
6650
            An in-memory representation of a JSON Schema.
6651
            </summary>
6652
        </member>
6653
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
6654
            <summary>
6655
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
6656
            </summary>
6657
        </member>
6658
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
6659
            <summary>
6660
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
6661
            </summary>
6662
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
6663
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
6664
        </member>
6665
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
6666
            <summary>
6667
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
6668
            </summary>
6669
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
6670
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
6671
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
6672
        </member>
6673
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
6674
            <summary>
6675
            Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON.
6676
            </summary>
6677
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6678
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
6679
        </member>
6680
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
6681
            <summary>
6682
            Parses the specified json.
6683
            </summary>
6684
            <param name="json">The json.</param>
6685
            <param name="resolver">The resolver.</param>
6686
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
6687
        </member>
6688
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
6689
            <summary>
6690
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6691
            </summary>
6692
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6693
        </member>
6694
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
6695
            <summary>
6696
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
6697
            </summary>
6698
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6699
            <param name="resolver">The resolver used.</param>
6700
        </member>
6701
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
6702
            <summary>
6703
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
6704
            </summary>
6705
            <returns>
6706
            A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
6707
            </returns>
6708
        </member>
6709
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
6710
            <summary>
6711
            Gets or sets the id.
6712
            </summary>
6713
        </member>
6714
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
6715
            <summary>
6716
            Gets or sets the title.
6717
            </summary>
6718
        </member>
6719
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
6720
            <summary>
6721
            Gets or sets whether the object is required.
6722
            </summary>
6723
        </member>
6724
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
6725
            <summary>
6726
            Gets or sets whether the object is read only.
6727
            </summary>
6728
        </member>
6729
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
6730
            <summary>
6731
            Gets or sets whether the object is visible to users.
6732
            </summary>
6733
        </member>
6734
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
6735
            <summary>
6736
            Gets or sets whether the object is transient.
6737
            </summary>
6738
        </member>
6739
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
6740
            <summary>
6741
            Gets or sets the description of the object.
6742
            </summary>
6743
        </member>
6744
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
6745
            <summary>
6746
            Gets or sets the types of values allowed by the object.
6747
            </summary>
6748
            <value>The type.</value>
6749
        </member>
6750
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
6751
            <summary>
6752
            Gets or sets the pattern.
6753
            </summary>
6754
            <value>The pattern.</value>
6755
        </member>
6756
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
6757
            <summary>
6758
            Gets or sets the minimum length.
6759
            </summary>
6760
            <value>The minimum length.</value>
6761
        </member>
6762
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
6763
            <summary>
6764
            Gets or sets the maximum length.
6765
            </summary>
6766
            <value>The maximum length.</value>
6767
        </member>
6768
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
6769
            <summary>
6770
            Gets or sets a number that the value should be divisble by.
6771
            </summary>
6772
            <value>A number that the value should be divisble by.</value>
6773
        </member>
6774
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
6775
            <summary>
6776
            Gets or sets the minimum.
6777
            </summary>
6778
            <value>The minimum.</value>
6779
        </member>
6780
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
6781
            <summary>
6782
            Gets or sets the maximum.
6783
            </summary>
6784
            <value>The maximum.</value>
6785
        </member>
6786
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
6787
            <summary>
6788
            Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.
6789
            </summary>
6790
            <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value>
6791
        </member>
6792
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
6793
            <summary>
6794
            Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.
6795
            </summary>
6796
            <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>
6797
        </member>
6798
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
6799
            <summary>
6800
            Gets or sets the minimum number of items.
6801
            </summary>
6802
            <value>The minimum number of items.</value>
6803
        </member>
6804
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
6805
            <summary>
6806
            Gets or sets the maximum number of items.
6807
            </summary>
6808
            <value>The maximum number of items.</value>
6809
        </member>
6810
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
6811
            <summary>
6812
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
6813
            </summary>
6814
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
6815
        </member>
6816
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
6817
            <summary>
6818
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
6819
            </summary>
6820
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
6821
        </member>
6822
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
6823
            <summary>
6824
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
6825
            </summary>
6826
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
6827
        </member>
6828
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
6829
            <summary>
6830
            Gets or sets the pattern properties.
6831
            </summary>
6832
            <value>The pattern properties.</value>
6833
        </member>
6834
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
6835
            <summary>
6836
            Gets or sets a value indicating whether additional properties are allowed.
6837
            </summary>
6838
            <value>
6839
                    <c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
6840
            </value>
6841
        </member>
6842
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
6843
            <summary>
6844
            Gets or sets the required property if this property is present.
6845
            </summary>
6846
            <value>The required property if this property is present.</value>
6847
        </member>
6848
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Identity">
6849
            <summary>
6850
            Gets or sets the identity.
6851
            </summary>
6852
            <value>The identity.</value>
6853
        </member>
6854
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
6855
            <summary>
6856
            Gets or sets the a collection of valid enum values allowed.
6857
            </summary>
6858
            <value>A collection of valid enum values allowed.</value>
6859
        </member>
6860
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Options">
6861
            <summary>
6862
            Gets or sets a collection of options.
6863
            </summary>
6864
            <value>A collection of options.</value>
6865
        </member>
6866
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
6867
            <summary>
6868
            Gets or sets disallowed types.
6869
            </summary>
6870
            <value>The disallow types.</value>
6871
        </member>
6872
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
6873
            <summary>
6874
            Gets or sets the default value.
6875
            </summary>
6876
            <value>The default value.</value>
6877
        </member>
6878
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
6879
            <summary>
6880
            Gets or sets the extend <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
6881
            </summary>
6882
            <value>The extended <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.</value>
6883
        </member>
6884
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
6885
            <summary>
6886
            Gets or sets the format.
6887
            </summary>
6888
            <value>The format.</value>
6889
        </member>
6890
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
6891
            <summary>
6892
            Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
6893
            </summary>
6894
        </member>
6895
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
6896
            <summary>
6897
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
6898
            </summary>
6899
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
6900
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
6901
        </member>
6902
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
6903
            <summary>
6904
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
6905
            </summary>
6906
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
6907
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
6908
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
6909
        </member>
6910
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
6911
            <summary>
6912
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
6913
            </summary>
6914
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
6915
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
6916
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
6917
        </member>
6918
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
6919
            <summary>
6920
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
6921
            </summary>
6922
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
6923
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
6924
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
6925
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
6926
        </member>
6927
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
6928
            <summary>
6929
            Gets or sets how undefined schemas are handled by the serializer.
6930
            </summary>
6931
        </member>
6932
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
6933
            <summary>
6934
            Gets or sets the contract resolver.
6935
            </summary>
6936
            <value>The contract resolver.</value>
6937
        </member>
6938
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
6939
            <summary>
6940
            The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
6941
            </summary>
6942
        </member>
6943
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
6944
            <summary>
6945
            No type specified.
6946
            </summary>
6947
        </member>
6948
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
6949
            <summary>
6950
            String type.
6951
            </summary>
6952
        </member>
6953
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
6954
            <summary>
6955
            Float type.
6956
            </summary>
6957
        </member>
6958
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
6959
            <summary>
6960
            Integer type.
6961
            </summary>
6962
        </member>
6963
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
6964
            <summary>
6965
            Boolean type.
6966
            </summary>
6967
        </member>
6968
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
6969
            <summary>
6970
            Object type.
6971
            </summary>
6972
        </member>
6973
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
6974
            <summary>
6975
            Array type.
6976
            </summary>
6977
        </member>
6978
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
6979
            <summary>
6980
            Null type.
6981
            </summary>
6982
        </member>
6983
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
6984
            <summary>
6985
            Any type.
6986
            </summary>
6987
        </member>
6988
        <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
6989
            <summary>
6990
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6991
            </summary>
6992
        </member>
6993
        <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
6994
            <summary>
6995
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
6996
            </summary>
6997
            <param name="underlyingType">The underlying type for the contract.</param>
6998
        </member>
6999
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
7000
            <summary>
7001
            Gets or sets the object member serialization.
7002
            </summary>
7003
            <value>The member object serialization.</value>
7004
        </member>
7005
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
7006
            <summary>
7007
            Gets or sets a value that indicates whether the object's properties are required.
7008
            </summary>
7009
            <value>
7010
                    A value indicating whether the object's properties are required.
7011
            </value>
7012
        </member>
7013
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
7014
            <summary>
7015
            Gets the object's properties.
7016
            </summary>
7017
            <value>The object's properties.</value>
7018
        </member>
7019
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters">
7020
            <summary>
7021
            Gets the constructor parameters required for any non-default constructor
7022
            </summary>
7023
        </member>
7024
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor">
7025
            <summary>
7026
            Gets or sets the override constructor used to create the object.
7027
            This is set when a constructor is marked up using the
7028
            JsonConstructor attribute.
7029
            </summary>
7030
            <value>The override constructor.</value>
7031
        </member>
7032
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor">
7033
            <summary>
7034
            Gets or sets the parametrized constructor used to create the object.
7035
            </summary>
7036
            <value>The parametrized constructor.</value>
7037
        </member>
7038
        <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
7039
            <summary>
7040
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7041
            </summary>
7042
        </member>
7043
        <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
7044
            <summary>
7045
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
7046
            </summary>
7047
            <param name="underlyingType">The underlying type for the contract.</param>
7048
        </member>
7049
        <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
7050
            <summary>
7051
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
7052
            </summary>
7053
        </member>
7054
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
7055
            <summary>
7056
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
7057
            </summary>
7058
            <param name="memberInfo">The member info.</param>
7059
        </member>
7060
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
7061
            <summary>
7062
            Sets the value.
7063
            </summary>
7064
            <param name="target">The target to set the value on.</param>
7065
            <param name="value">The value to set on the target.</param>
7066
        </member>
7067
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
7068
            <summary>
7069
            Gets the value.
7070
            </summary>
7071
            <param name="target">The target to get the value from.</param>
7072
            <returns>The value.</returns>
7073
        </member>
7074
        <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
7075
            <summary>
7076
            When applied to a method, specifies that the method is called when an error occurs serializing an object.
7077
            </summary>
7078
        </member>
7079
        <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
7080
            <summary>
7081
            Represents a method that constructs an object.
7082
            </summary>
7083
            <typeparam name="T">The object type to create.</typeparam>
7084
        </member>
7085
        <member name="T:Newtonsoft.Json.TypeNameHandling">
7086
            <summary>
7087
            Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7088
            </summary>
7089
        </member>
7090
        <member name="F:Newtonsoft.Json.TypeNameHandling.None">
7091
            <summary>
7092
            Do not include the .NET type name when serializing types.
7093
            </summary>
7094
        </member>
7095
        <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
7096
            <summary>
7097
            Include the .NET type name when serializing into a JSON object structure.
7098
            </summary>
7099
        </member>
7100
        <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
7101
            <summary>
7102
            Include the .NET type name when serializing into a JSON array structure.
7103
            </summary>
7104
        </member>
7105
        <member name="F:Newtonsoft.Json.TypeNameHandling.All">
7106
            <summary>
7107
            Always include the .NET type name when serializing.
7108
            </summary>
7109
        </member>
7110
        <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
7111
            <summary>
7112
            Include the .NET type name when the type of the object being serialized is not the same as its declared type.
7113
            </summary>
7114
        </member>
7115
        <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)">
7116
            <summary>
7117
            Converts the value to the specified type.
7118
            </summary>
7119
            <param name="initialValue">The value to convert.</param>
7120
            <param name="culture">The culture to use when converting.</param>
7121
            <param name="targetType">The type to convert the value to.</param>
7122
            <returns>The converted type.</returns>
7123
        </member>
7124
        <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)">
7125
            <summary>
7126
            Converts the value to the specified type.
7127
            </summary>
7128
            <param name="initialValue">The value to convert.</param>
7129
            <param name="culture">The culture to use when converting.</param>
7130
            <param name="targetType">The type to convert the value to.</param>
7131
            <param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
7132
            <returns>
7133
                    <c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
7134
            </returns>
7135
        </member>
7136
        <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
7137
            <summary>
7138
            Converts the value to the specified type. If the value is unable to be converted, the
7139
            value is checked whether it assignable to the specified type.
7140
            </summary>
7141
            <param name="initialValue">The value to convert.</param>
7142
            <param name="culture">The culture to use when converting.</param>
7143
            <param name="targetType">The type to convert or cast the value to.</param>
7144
            <returns>
7145
            The converted type. If conversion was unsuccessful, the initial value
7146
            is returned if assignable to the target type.
7147
            </returns>
7148
        </member>
7149
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
7150
            <summary>
7151
            Gets a dictionary of the names and values of an Enum type.
7152
            </summary>
7153
            <returns></returns>
7154
        </member>
7155
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
7156
            <summary>
7157
            Gets a dictionary of the names and values of an Enum type.
7158
            </summary>
7159
            <param name="enumType">The enum type to get names and values for.</param>
7160
            <returns></returns>
7161
        </member>
7162
        <member name="T:Newtonsoft.Json.JsonToken">
7163
            <summary>
7164
            Specifies the type of Json token.
7165
            </summary>
7166
        </member>
7167
        <member name="F:Newtonsoft.Json.JsonToken.None">
7168
            <summary>
7169
            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. 
7170
            </summary>
7171
        </member>
7172
        <member name="F:Newtonsoft.Json.JsonToken.StartObject">
7173
            <summary>
7174
            An object start token.
7175
            </summary>
7176
        </member>
7177
        <member name="F:Newtonsoft.Json.JsonToken.StartArray">
7178
            <summary>
7179
            An array start token.
7180
            </summary>
7181
        </member>
7182
        <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
7183
            <summary>
7184
            A constructor start token.
7185
            </summary>
7186
        </member>
7187
        <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
7188
            <summary>
7189
            An object property name.
7190
            </summary>
7191
        </member>
7192
        <member name="F:Newtonsoft.Json.JsonToken.Comment">
7193
            <summary>
7194
            A comment.
7195
            </summary>
7196
        </member>
7197
        <member name="F:Newtonsoft.Json.JsonToken.Raw">
7198
            <summary>
7199
            Raw JSON.
7200
            </summary>
7201
        </member>
7202
        <member name="F:Newtonsoft.Json.JsonToken.Integer">
7203
            <summary>
7204
            An integer.
7205
            </summary>
7206
        </member>
7207
        <member name="F:Newtonsoft.Json.JsonToken.Float">
7208
            <summary>
7209
            A float.
7210
            </summary>
7211
        </member>
7212
        <member name="F:Newtonsoft.Json.JsonToken.String">
7213
            <summary>
7214
            A string.
7215
            </summary>
7216
        </member>
7217
        <member name="F:Newtonsoft.Json.JsonToken.Boolean">
7218
            <summary>
7219
            A boolean.
7220
            </summary>
7221
        </member>
7222
        <member name="F:Newtonsoft.Json.JsonToken.Null">
7223
            <summary>
7224
            A null token.
7225
            </summary>
7226
        </member>
7227
        <member name="F:Newtonsoft.Json.JsonToken.Undefined">
7228
            <summary>
7229
            An undefined token.
7230
            </summary>
7231
        </member>
7232
        <member name="F:Newtonsoft.Json.JsonToken.EndObject">
7233
            <summary>
7234
            An object end token.
7235
            </summary>
7236
        </member>
7237
        <member name="F:Newtonsoft.Json.JsonToken.EndArray">
7238
            <summary>
7239
            An array end token.
7240
            </summary>
7241
        </member>
7242
        <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
7243
            <summary>
7244
            A constructor end token.
7245
            </summary>
7246
        </member>
7247
        <member name="F:Newtonsoft.Json.JsonToken.Date">
7248
            <summary>
7249
            A Date.
7250
            </summary>
7251
        </member>
7252
        <member name="F:Newtonsoft.Json.JsonToken.Bytes">
7253
            <summary>
7254
            Byte data.
7255
            </summary>
7256
        </member>
7257
        <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
7258
            <summary>
7259
            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
7260
            </summary>
7261
        </member>
7262
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
7263
            <summary>
7264
            Determines whether the collection is null or empty.
7265
            </summary>
7266
            <param name="collection">The collection.</param>
7267
            <returns>
7268
                    <c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
7269
            </returns>
7270
        </member>
7271
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
7272
            <summary>
7273
            Adds the elements of the specified collection to the specified generic IList.
7274
            </summary>
7275
            <param name="initial">The list to add to.</param>
7276
            <param name="collection">The collection of elements to add.</param>
7277
        </member>
7278
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
7279
            <summary>
7280
            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
7281
            </summary>
7282
            <typeparam name="TSource">The type of the elements of source.</typeparam>
7283
            <param name="list">A sequence in which to locate a value.</param>
7284
            <param name="value">The object to locate in the sequence</param>
7285
            <param name="comparer">An equality comparer to compare values.</param>
7286
            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
7287
        </member>
7288
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
7289
            <summary>
7290
            Gets the type of the typed collection's items.
7291
            </summary>
7292
            <param name="type">The type.</param>
7293
            <returns>The type of the typed collection's items.</returns>
7294
        </member>
7295
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
7296
            <summary>
7297
            Gets the member's underlying type.
7298
            </summary>
7299
            <param name="member">The member.</param>
7300
            <returns>The underlying type of the member.</returns>
7301
        </member>
7302
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
7303
            <summary>
7304
            Determines whether the member is an indexed property.
7305
            </summary>
7306
            <param name="member">The member.</param>
7307
            <returns>
7308
                    <c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
7309
            </returns>
7310
        </member>
7311
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
7312
            <summary>
7313
            Determines whether the property is an indexed property.
7314
            </summary>
7315
            <param name="property">The property.</param>
7316
            <returns>
7317
                    <c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
7318
            </returns>
7319
        </member>
7320
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
7321
            <summary>
7322
            Gets the member's value on the object.
7323
            </summary>
7324
            <param name="member">The member.</param>
7325
            <param name="target">The target object.</param>
7326
            <returns>The member's value on the object.</returns>
7327
        </member>
7328
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
7329
            <summary>
7330
            Sets the member's value on the target object.
7331
            </summary>
7332
            <param name="member">The member.</param>
7333
            <param name="target">The target.</param>
7334
            <param name="value">The value.</param>
7335
        </member>
7336
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
7337
            <summary>
7338
            Determines whether the specified MemberInfo can be read.
7339
            </summary>
7340
            <param name="member">The MemberInfo to determine whether can be read.</param>
7341
            /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
7342
            <returns>
7343
                    <c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
7344
            </returns>
7345
        </member>
7346
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
7347
            <summary>
7348
            Determines whether the specified MemberInfo can be set.
7349
            </summary>
7350
            <param name="member">The MemberInfo to determine whether can be set.</param>
7351
            <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
7352
            <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
7353
            <returns>
7354
                    <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
7355
            </returns>
7356
        </member>
7357
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
7358
            <summary>
7359
            Determines whether the string is all white space. Empty string will return false.
7360
            </summary>
7361
            <param name="s">The string to test whether it is all white space.</param>
7362
            <returns>
7363
                    <c>true</c> if the string is all white space; otherwise, <c>false</c>.
7364
            </returns>
7365
        </member>
7366
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
7367
            <summary>
7368
            Nulls an empty string.
7369
            </summary>
7370
            <param name="s">The string.</param>
7371
            <returns>Null if the string was null, otherwise the string unchanged.</returns>
7372
        </member>
7373
        <member name="T:Newtonsoft.Json.WriteState">
7374
            <summary>
7375
            Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
7376
            </summary>
7377
        </member>
7378
        <member name="F:Newtonsoft.Json.WriteState.Error">
7379
            <summary>
7380
            An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
7381
            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.
7382
            Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown. 
7383
            </summary>
7384
        </member>
7385
        <member name="F:Newtonsoft.Json.WriteState.Closed">
7386
            <summary>
7387
            The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called. 
7388
            </summary>
7389
        </member>
7390
        <member name="F:Newtonsoft.Json.WriteState.Object">
7391
            <summary>
7392
            An object is being written. 
7393
            </summary>
7394
        </member>
7395
        <member name="F:Newtonsoft.Json.WriteState.Array">
7396
            <summary>
7397
            A array is being written.
7398
            </summary>
7399
        </member>
7400
        <member name="F:Newtonsoft.Json.WriteState.Constructor">
7401
            <summary>
7402
            A constructor is being written.
7403
            </summary>
7404
        </member>
7405
        <member name="F:Newtonsoft.Json.WriteState.Property">
7406
            <summary>
7407
            A property is being written.
7408
            </summary>
7409
        </member>
7410
        <member name="F:Newtonsoft.Json.WriteState.Start">
7411
            <summary>
7412
            A write method has not been called.
7413
            </summary>
7414
        </member>
7415
    </members>
7416
</doc>