Subversion Repositories group.electronics

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
158 pfowler 1
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>Newtonsoft.Json</name>
5
    </assembly>
6
    <members>
7
        <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
8
            <summary>
9
            Represents a BSON Oid (object id).
10
            </summary>
11
        </member>
12
        <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">
13
            <summary>
14
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.
15
            </summary>
16
            <param name="value">The Oid value.</param>
17
        </member>
18
        <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
19
            <summary>
20
            Gets or sets the value of the Oid.
21
            </summary>
22
            <value>The value of the Oid.</value>
23
        </member>
24
        <member name="T:Newtonsoft.Json.Bson.BsonReader">
25
            <summary>
26
            Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
27
            </summary>
28
        </member>
29
        <member name="T:Newtonsoft.Json.JsonReader">
30
            <summary>
31
            Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
32
            </summary>
33
        </member>
34
        <member name="M:Newtonsoft.Json.JsonReader.#ctor">
35
            <summary>
36
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
37
            </summary>
38
        </member>
39
        <member name="M:Newtonsoft.Json.JsonReader.Read">
40
            <summary>
41
            Reads the next JSON token from the stream.
42
            </summary>
43
            <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
44
        </member>
45
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
46
            <summary>
47
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
48
            </summary>
49
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
50
        </member>
51
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
52
            <summary>
53
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
54
            </summary>
55
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
56
        </member>
57
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
58
            <summary>
59
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
60
            </summary>
61
            <returns>A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>
62
        </member>
63
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
64
            <summary>
65
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
66
            </summary>
67
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
68
        </member>
69
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
70
            <summary>
71
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
72
            </summary>
73
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
74
        </member>
75
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">
76
            <summary>
77
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
78
            </summary>
79
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
80
        </member>
81
        <member name="M:Newtonsoft.Json.JsonReader.Skip">
82
            <summary>
83
            Skips the children of the current token.
84
            </summary>
85
        </member>
86
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
87
            <summary>
88
            Sets the current token.
89
            </summary>
90
            <param name="newToken">The new token.</param>
91
        </member>
92
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
93
            <summary>
94
            Sets the current token and value.
95
            </summary>
96
            <param name="newToken">The new token.</param>
97
            <param name="value">The value.</param>
98
        </member>
99
        <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
100
            <summary>
101
            Sets the state based on current token type.
102
            </summary>
103
        </member>
104
        <member name="M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose">
105
            <summary>
106
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
107
            </summary>
108
        </member>
109
        <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
110
            <summary>
111
            Releases unmanaged and - optionally - managed resources
112
            </summary>
113
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
114
        </member>
115
        <member name="M:Newtonsoft.Json.JsonReader.Close">
116
            <summary>
117
            Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed. 
118
            </summary>
119
        </member>
120
        <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
121
            <summary>
122
            Gets the current reader state.
123
            </summary>
124
            <value>The current reader state.</value>
125
        </member>
126
        <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
127
            <summary>
128
            Gets or sets a value indicating whether the underlying stream or
129
            <see cref="T:System.IO.TextReader"/> should be closed when the reader is closed.
130
            </summary>
131
            <value>
132
            true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
133
            the reader is closed; otherwise false. The default is true.
134
            </value>
135
        </member>
136
        <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">
137
            <summary>
138
            Gets or sets a value indicating whether multiple pieces of JSON content can
139
            be read from a continuous stream without erroring.
140
            </summary>
141
            <value>
142
            true to support reading multiple pieces of JSON content; otherwise false. The default is false.
143
            </value>
144
        </member>
145
        <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
146
            <summary>
147
            Gets the quotation mark character used to enclose the value of a string.
148
            </summary>
149
        </member>
150
        <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
151
            <summary>
152
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when reading JSON.
153
            </summary>
154
        </member>
155
        <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
156
            <summary>
157
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
158
            </summary>
159
        </member>
160
        <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
161
            <summary>
162
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
163
            </summary>
164
        </member>
165
        <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
166
            <summary>
167
            Get or set how custom date formatted strings are parsed when reading JSON.
168
            </summary>
169
        </member>
170
        <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
171
            <summary>
172
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
173
            </summary>
174
        </member>
175
        <member name="P:Newtonsoft.Json.JsonReader.TokenType">
176
            <summary>
177
            Gets the type of the current JSON token. 
178
            </summary>
179
        </member>
180
        <member name="P:Newtonsoft.Json.JsonReader.Value">
181
            <summary>
182
            Gets the text value of the current JSON token.
183
            </summary>
184
        </member>
185
        <member name="P:Newtonsoft.Json.JsonReader.ValueType">
186
            <summary>
187
            Gets The Common Language Runtime (CLR) type for the current JSON token.
188
            </summary>
189
        </member>
190
        <member name="P:Newtonsoft.Json.JsonReader.Depth">
191
            <summary>
192
            Gets the depth of the current token in the JSON document.
193
            </summary>
194
            <value>The depth of the current token in the JSON document.</value>
195
        </member>
196
        <member name="P:Newtonsoft.Json.JsonReader.Path">
197
            <summary>
198
            Gets the path of the current JSON token. 
199
            </summary>
200
        </member>
201
        <member name="P:Newtonsoft.Json.JsonReader.Culture">
202
            <summary>
203
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
204
            </summary>
205
        </member>
206
        <member name="T:Newtonsoft.Json.JsonReader.State">
207
            <summary>
208
            Specifies the state of the reader.
209
            </summary>
210
        </member>
211
        <member name="F:Newtonsoft.Json.JsonReader.State.Start">
212
            <summary>
213
            The Read method has not been called.
214
            </summary>
215
        </member>
216
        <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
217
            <summary>
218
            The end of the file has been reached successfully.
219
            </summary>
220
        </member>
221
        <member name="F:Newtonsoft.Json.JsonReader.State.Property">
222
            <summary>
223
            Reader is at a property.
224
            </summary>
225
        </member>
226
        <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
227
            <summary>
228
            Reader is at the start of an object.
229
            </summary>
230
        </member>
231
        <member name="F:Newtonsoft.Json.JsonReader.State.Object">
232
            <summary>
233
            Reader is in an object.
234
            </summary>
235
        </member>
236
        <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
237
            <summary>
238
            Reader is at the start of an array.
239
            </summary>
240
        </member>
241
        <member name="F:Newtonsoft.Json.JsonReader.State.Array">
242
            <summary>
243
            Reader is in an array.
244
            </summary>
245
        </member>
246
        <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
247
            <summary>
248
            The Close method has been called.
249
            </summary>
250
        </member>
251
        <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
252
            <summary>
253
            Reader has just read a value.
254
            </summary>
255
        </member>
256
        <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
257
            <summary>
258
            Reader is at the start of a constructor.
259
            </summary>
260
        </member>
261
        <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
262
            <summary>
263
            Reader in a constructor.
264
            </summary>
265
        </member>
266
        <member name="F:Newtonsoft.Json.JsonReader.State.Error">
267
            <summary>
268
            An error occurred that prevents the read operation from continuing.
269
            </summary>
270
        </member>
271
        <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
272
            <summary>
273
            The end of the file has been reached successfully.
274
            </summary>
275
        </member>
276
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
277
            <summary>
278
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
279
            </summary>
280
            <param name="stream">The stream.</param>
281
        </member>
282
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
283
            <summary>
284
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
285
            </summary>
286
            <param name="reader">The reader.</param>
287
        </member>
288
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
289
            <summary>
290
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
291
            </summary>
292
            <param name="stream">The stream.</param>
293
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
294
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
295
        </member>
296
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
297
            <summary>
298
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
299
            </summary>
300
            <param name="reader">The reader.</param>
301
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
302
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
303
        </member>
304
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
305
            <summary>
306
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
307
            </summary>
308
            <returns>
309
            A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
310
            </returns>
311
        </member>
312
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal">
313
            <summary>
314
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
315
            </summary>
316
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
317
        </member>
318
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
319
            <summary>
320
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
321
            </summary>
322
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
323
        </member>
324
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsString">
325
            <summary>
326
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
327
            </summary>
328
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
329
        </member>
330
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime">
331
            <summary>
332
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
333
            </summary>
334
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
335
        </member>
336
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset">
337
            <summary>
338
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
339
            </summary>
340
            <returns>
341
            A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.
342
            </returns>
343
        </member>
344
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
345
            <summary>
346
            Reads the next JSON token from the stream.
347
            </summary>
348
            <returns>
349
            true if the next token was read successfully; false if there are no more tokens to read.
350
            </returns>
351
        </member>
352
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
353
            <summary>
354
            Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed.
355
            </summary>
356
        </member>
357
        <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
358
            <summary>
359
            Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.
360
            </summary>
361
            <value>
362
            	<c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
363
            </value>
364
        </member>
365
        <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
366
            <summary>
367
            Gets or sets a value indicating whether the root object will be read as a JSON array.
368
            </summary>
369
            <value>
370
            	<c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
371
            </value>
372
        </member>
373
        <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
374
            <summary>
375
            Gets or sets the <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.
376
            </summary>
377
            <value>The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
378
        </member>
379
        <member name="T:Newtonsoft.Json.Bson.BsonWriter">
380
            <summary>
381
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
382
            </summary>
383
        </member>
384
        <member name="T:Newtonsoft.Json.JsonWriter">
385
            <summary>
386
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
387
            </summary>
388
        </member>
389
        <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
390
            <summary>
391
            Creates an instance of the <c>JsonWriter</c> class. 
392
            </summary>
393
        </member>
394
        <member name="M:Newtonsoft.Json.JsonWriter.Flush">
395
            <summary>
396
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
397
            </summary>
398
        </member>
399
        <member name="M:Newtonsoft.Json.JsonWriter.Close">
400
            <summary>
401
            Closes this stream and the underlying stream.
402
            </summary>
403
        </member>
404
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
405
            <summary>
406
            Writes the beginning of a Json object.
407
            </summary>
408
        </member>
409
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
410
            <summary>
411
            Writes the end of a Json object.
412
            </summary>
413
        </member>
414
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
415
            <summary>
416
            Writes the beginning of a Json array.
417
            </summary>
418
        </member>
419
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
420
            <summary>
421
            Writes the end of an array.
422
            </summary>
423
        </member>
424
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
425
            <summary>
426
            Writes the start of a constructor with the given name.
427
            </summary>
428
            <param name="name">The name of the constructor.</param>
429
        </member>
430
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
431
            <summary>
432
            Writes the end constructor.
433
            </summary>
434
        </member>
435
        <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
436
            <summary>
437
            Writes the property name of a name/value pair on a JSON object.
438
            </summary>
439
            <param name="name">The name of the property.</param>
440
        </member>
441
        <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">
442
            <summary>
443
            Writes the property name of a name/value pair on a JSON object.
444
            </summary>
445
            <param name="name">The name of the property.</param>
446
            <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
447
        </member>
448
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
449
            <summary>
450
            Writes the end of the current Json object or array.
451
            </summary>
452
        </member>
453
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
454
            <summary>
455
            Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.
456
            </summary>
457
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
458
        </member>
459
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">
460
            <summary>
461
            Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
462
            </summary>
463
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
464
            <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
465
        </member>
466
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken,System.Object)">
467
            <summary>
468
            Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.
469
            </summary>
470
            <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
471
            <param name="value">
472
            The value to write.
473
            A value is only required for tokens that have an associated value, e.g. the <see cref="T:System.String"/> property name for <see cref="F:Newtonsoft.Json.JsonToken.PropertyName"/>.
474
            A null value can be passed to the method for token's that don't have a value, e.g. <see cref="F:Newtonsoft.Json.JsonToken.StartObject"/>.</param>
475
        </member>
476
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken)">
477
            <summary>
478
            Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token.
479
            </summary>
480
            <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
481
        </member>
482
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
483
            <summary>
484
            Writes the specified end token.
485
            </summary>
486
            <param name="token">The end token to write.</param>
487
        </member>
488
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
489
            <summary>
490
            Writes indent characters.
491
            </summary>
492
        </member>
493
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
494
            <summary>
495
            Writes the JSON value delimiter.
496
            </summary>
497
        </member>
498
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
499
            <summary>
500
            Writes an indent space.
501
            </summary>
502
        </member>
503
        <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
504
            <summary>
505
            Writes a null value.
506
            </summary>
507
        </member>
508
        <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
509
            <summary>
510
            Writes an undefined value.
511
            </summary>
512
        </member>
513
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
514
            <summary>
515
            Writes raw JSON without changing the writer's state.
516
            </summary>
517
            <param name="json">The raw JSON to write.</param>
518
        </member>
519
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
520
            <summary>
521
            Writes raw JSON where a value is expected and updates the writer's state.
522
            </summary>
523
            <param name="json">The raw JSON to write.</param>
524
        </member>
525
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
526
            <summary>
527
            Writes a <see cref="T:System.String"/> value.
528
            </summary>
529
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
530
        </member>
531
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
532
            <summary>
533
            Writes a <see cref="T:System.Int32"/> value.
534
            </summary>
535
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
536
        </member>
537
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
538
            <summary>
539
            Writes a <see cref="T:System.UInt32"/> value.
540
            </summary>
541
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
542
        </member>
543
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
544
            <summary>
545
            Writes a <see cref="T:System.Int64"/> value.
546
            </summary>
547
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
548
        </member>
549
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
550
            <summary>
551
            Writes a <see cref="T:System.UInt64"/> value.
552
            </summary>
553
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
554
        </member>
555
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
556
            <summary>
557
            Writes a <see cref="T:System.Single"/> value.
558
            </summary>
559
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
560
        </member>
561
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
562
            <summary>
563
            Writes a <see cref="T:System.Double"/> value.
564
            </summary>
565
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
566
        </member>
567
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
568
            <summary>
569
            Writes a <see cref="T:System.Boolean"/> value.
570
            </summary>
571
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
572
        </member>
573
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
574
            <summary>
575
            Writes a <see cref="T:System.Int16"/> value.
576
            </summary>
577
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
578
        </member>
579
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
580
            <summary>
581
            Writes a <see cref="T:System.UInt16"/> value.
582
            </summary>
583
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
584
        </member>
585
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
586
            <summary>
587
            Writes a <see cref="T:System.Char"/> value.
588
            </summary>
589
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
590
        </member>
591
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
592
            <summary>
593
            Writes a <see cref="T:System.Byte"/> value.
594
            </summary>
595
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
596
        </member>
597
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
598
            <summary>
599
            Writes a <see cref="T:System.SByte"/> value.
600
            </summary>
601
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
602
        </member>
603
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
604
            <summary>
605
            Writes a <see cref="T:System.Decimal"/> value.
606
            </summary>
607
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
608
        </member>
609
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
610
            <summary>
611
            Writes a <see cref="T:System.DateTime"/> value.
612
            </summary>
613
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
614
        </member>
615
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
616
            <summary>
617
            Writes a <see cref="T:System.DateTimeOffset"/> value.
618
            </summary>
619
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
620
        </member>
621
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
622
            <summary>
623
            Writes a <see cref="T:System.Guid"/> value.
624
            </summary>
625
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
626
        </member>
627
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
628
            <summary>
629
            Writes a <see cref="T:System.TimeSpan"/> value.
630
            </summary>
631
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
632
        </member>
633
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
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.UInt32})">
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.Int64})">
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.UInt64})">
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.Single})">
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.Double})">
664
            <summary>
665
            Writes a <see cref="T:System.Nullable`1"/> value.
666
            </summary>
667
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
668
        </member>
669
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
670
            <summary>
671
            Writes a <see cref="T:System.Nullable`1"/> value.
672
            </summary>
673
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
674
        </member>
675
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
676
            <summary>
677
            Writes a <see cref="T:System.Nullable`1"/> value.
678
            </summary>
679
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
680
        </member>
681
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
682
            <summary>
683
            Writes a <see cref="T:System.Nullable`1"/> value.
684
            </summary>
685
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
686
        </member>
687
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
688
            <summary>
689
            Writes a <see cref="T:System.Nullable`1"/> value.
690
            </summary>
691
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
692
        </member>
693
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
694
            <summary>
695
            Writes a <see cref="T:System.Nullable`1"/> value.
696
            </summary>
697
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
698
        </member>
699
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
700
            <summary>
701
            Writes a <see cref="T:System.Nullable`1"/> value.
702
            </summary>
703
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
704
        </member>
705
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
706
            <summary>
707
            Writes a <see cref="T:System.Nullable`1"/> value.
708
            </summary>
709
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
710
        </member>
711
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
712
            <summary>
713
            Writes a <see cref="T:System.Nullable`1"/> value.
714
            </summary>
715
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
716
        </member>
717
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">
718
            <summary>
719
            Writes a <see cref="T:System.Nullable`1"/> value.
720
            </summary>
721
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
722
        </member>
723
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
724
            <summary>
725
            Writes a <see cref="T:System.Nullable`1"/> value.
726
            </summary>
727
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
728
        </member>
729
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
730
            <summary>
731
            Writes a <see cref="T:System.Nullable`1"/> value.
732
            </summary>
733
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
734
        </member>
735
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
736
            <summary>
737
            Writes a <see cref="T:System.Byte"/>[] value.
738
            </summary>
739
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
740
        </member>
741
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
742
            <summary>
743
            Writes a <see cref="T:System.Uri"/> value.
744
            </summary>
745
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
746
        </member>
747
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
748
            <summary>
749
            Writes a <see cref="T:System.Object"/> value.
750
            An error will raised if the value cannot be written as a single JSON token.
751
            </summary>
752
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
753
        </member>
754
        <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
755
            <summary>
756
            Writes out a comment <code>/*...*/</code> containing the specified text. 
757
            </summary>
758
            <param name="text">Text to place inside the comment.</param>
759
        </member>
760
        <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
761
            <summary>
762
            Writes out the given white space.
763
            </summary>
764
            <param name="ws">The string of white space characters.</param>
765
        </member>
766
        <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">
767
            <summary>
768
            Sets the state of the JsonWriter,
769
            </summary>
770
            <param name="token">The JsonToken being written.</param>
771
            <param name="value">The value being written.</param>
772
        </member>
773
        <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
774
            <summary>
775
            Gets or sets a value indicating whether the underlying stream or
776
            <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed.
777
            </summary>
778
            <value>
779
            true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
780
            the writer is closed; otherwise false. The default is true.
781
            </value>
782
        </member>
783
        <member name="P:Newtonsoft.Json.JsonWriter.Top">
784
            <summary>
785
            Gets the top.
786
            </summary>
787
            <value>The top.</value>
788
        </member>
789
        <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
790
            <summary>
791
            Gets the state of the writer.
792
            </summary>
793
        </member>
794
        <member name="P:Newtonsoft.Json.JsonWriter.Path">
795
            <summary>
796
            Gets the path of the writer. 
797
            </summary>
798
        </member>
799
        <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
800
            <summary>
801
            Indicates how JSON text output is formatted.
802
            </summary>
803
        </member>
804
        <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
805
            <summary>
806
            Get or set how dates are written to JSON text.
807
            </summary>
808
        </member>
809
        <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
810
            <summary>
811
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when writing JSON text.
812
            </summary>
813
        </member>
814
        <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
815
            <summary>
816
            Get or set how strings are escaped when writing JSON text.
817
            </summary>
818
        </member>
819
        <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
820
            <summary>
821
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
822
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
823
            are written to JSON text.
824
            </summary>
825
        </member>
826
        <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
827
            <summary>
828
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
829
            </summary>
830
        </member>
831
        <member name="P:Newtonsoft.Json.JsonWriter.Culture">
832
            <summary>
833
            Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
834
            </summary>
835
        </member>
836
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
837
            <summary>
838
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
839
            </summary>
840
            <param name="stream">The stream.</param>
841
        </member>
842
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
843
            <summary>
844
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
845
            </summary>
846
            <param name="writer">The writer.</param>
847
        </member>
848
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
849
            <summary>
850
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
851
            </summary>
852
        </member>
853
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
854
            <summary>
855
            Writes the end.
856
            </summary>
857
            <param name="token">The token.</param>
858
        </member>
859
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
860
            <summary>
861
            Writes out a comment <code>/*...*/</code> containing the specified text.
862
            </summary>
863
            <param name="text">Text to place inside the comment.</param>
864
        </member>
865
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
866
            <summary>
867
            Writes the start of a constructor with the given name.
868
            </summary>
869
            <param name="name">The name of the constructor.</param>
870
        </member>
871
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
872
            <summary>
873
            Writes raw JSON.
874
            </summary>
875
            <param name="json">The raw JSON to write.</param>
876
        </member>
877
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
878
            <summary>
879
            Writes raw JSON where a value is expected and updates the writer's state.
880
            </summary>
881
            <param name="json">The raw JSON to write.</param>
882
        </member>
883
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
884
            <summary>
885
            Writes the beginning of a Json array.
886
            </summary>
887
        </member>
888
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
889
            <summary>
890
            Writes the beginning of a Json object.
891
            </summary>
892
        </member>
893
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
894
            <summary>
895
            Writes the property name of a name/value pair on a Json object.
896
            </summary>
897
            <param name="name">The name of the property.</param>
898
        </member>
899
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
900
            <summary>
901
            Closes this stream and the underlying stream.
902
            </summary>
903
        </member>
904
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">
905
            <summary>
906
            Writes a <see cref="T:System.Object"/> value.
907
            An error will raised if the value cannot be written as a single JSON token.
908
            </summary>
909
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
910
        </member>
911
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
912
            <summary>
913
            Writes a null value.
914
            </summary>
915
        </member>
916
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
917
            <summary>
918
            Writes an undefined value.
919
            </summary>
920
        </member>
921
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
922
            <summary>
923
            Writes a <see cref="T:System.String"/> value.
924
            </summary>
925
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
926
        </member>
927
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
928
            <summary>
929
            Writes a <see cref="T:System.Int32"/> value.
930
            </summary>
931
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
932
        </member>
933
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
934
            <summary>
935
            Writes a <see cref="T:System.UInt32"/> value.
936
            </summary>
937
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
938
        </member>
939
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
940
            <summary>
941
            Writes a <see cref="T:System.Int64"/> value.
942
            </summary>
943
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
944
        </member>
945
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
946
            <summary>
947
            Writes a <see cref="T:System.UInt64"/> value.
948
            </summary>
949
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
950
        </member>
951
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
952
            <summary>
953
            Writes a <see cref="T:System.Single"/> value.
954
            </summary>
955
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
956
        </member>
957
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
958
            <summary>
959
            Writes a <see cref="T:System.Double"/> value.
960
            </summary>
961
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
962
        </member>
963
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
964
            <summary>
965
            Writes a <see cref="T:System.Boolean"/> value.
966
            </summary>
967
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
968
        </member>
969
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
970
            <summary>
971
            Writes a <see cref="T:System.Int16"/> value.
972
            </summary>
973
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
974
        </member>
975
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
976
            <summary>
977
            Writes a <see cref="T:System.UInt16"/> value.
978
            </summary>
979
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
980
        </member>
981
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
982
            <summary>
983
            Writes a <see cref="T:System.Char"/> value.
984
            </summary>
985
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
986
        </member>
987
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
988
            <summary>
989
            Writes a <see cref="T:System.Byte"/> value.
990
            </summary>
991
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
992
        </member>
993
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
994
            <summary>
995
            Writes a <see cref="T:System.SByte"/> value.
996
            </summary>
997
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
998
        </member>
999
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
1000
            <summary>
1001
            Writes a <see cref="T:System.Decimal"/> value.
1002
            </summary>
1003
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
1004
        </member>
1005
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
1006
            <summary>
1007
            Writes a <see cref="T:System.DateTime"/> value.
1008
            </summary>
1009
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
1010
        </member>
1011
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)">
1012
            <summary>
1013
            Writes a <see cref="T:System.DateTimeOffset"/> value.
1014
            </summary>
1015
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
1016
        </member>
1017
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
1018
            <summary>
1019
            Writes a <see cref="T:System.Byte"/>[] value.
1020
            </summary>
1021
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
1022
        </member>
1023
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
1024
            <summary>
1025
            Writes a <see cref="T:System.Guid"/> value.
1026
            </summary>
1027
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
1028
        </member>
1029
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
1030
            <summary>
1031
            Writes a <see cref="T:System.TimeSpan"/> value.
1032
            </summary>
1033
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
1034
        </member>
1035
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
1036
            <summary>
1037
            Writes a <see cref="T:System.Uri"/> value.
1038
            </summary>
1039
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
1040
        </member>
1041
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
1042
            <summary>
1043
            Writes a <see cref="T:System.Byte"/>[] value that represents a BSON object id.
1044
            </summary>
1045
            <param name="value">The Object ID value to write.</param>
1046
        </member>
1047
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
1048
            <summary>
1049
            Writes a BSON regex.
1050
            </summary>
1051
            <param name="pattern">The regex pattern.</param>
1052
            <param name="options">The regex options.</param>
1053
        </member>
1054
        <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
1055
            <summary>
1056
            Gets or sets the <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.
1057
            When set to <see cref="F:System.DateTimeKind.Unspecified"/> no conversion will occur.
1058
            </summary>
1059
            <value>The <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
1060
        </member>
1061
        <member name="T:Newtonsoft.Json.ConstructorHandling">
1062
            <summary>
1063
            Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1064
            </summary>
1065
        </member>
1066
        <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
1067
            <summary>
1068
            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.
1069
            </summary>
1070
        </member>
1071
        <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
1072
            <summary>
1073
            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.
1074
            </summary>
1075
        </member>
1076
        <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
1077
            <summary>
1078
            Converts a binary value to and from a base 64 string value.
1079
            </summary>
1080
        </member>
1081
        <member name="T:Newtonsoft.Json.JsonConverter">
1082
            <summary>
1083
            Converts an object to and from JSON.
1084
            </summary>
1085
        </member>
1086
        <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1087
            <summary>
1088
            Writes the JSON representation of the object.
1089
            </summary>
1090
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1091
            <param name="value">The value.</param>
1092
            <param name="serializer">The calling serializer.</param>
1093
        </member>
1094
        <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1095
            <summary>
1096
            Reads the JSON representation of the object.
1097
            </summary>
1098
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1099
            <param name="objectType">Type of the object.</param>
1100
            <param name="existingValue">The existing value of object being read.</param>
1101
            <param name="serializer">The calling serializer.</param>
1102
            <returns>The object value.</returns>
1103
        </member>
1104
        <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
1105
            <summary>
1106
            Determines whether this instance can convert the specified object type.
1107
            </summary>
1108
            <param name="objectType">Type of the object.</param>
1109
            <returns>
1110
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1111
            </returns>
1112
        </member>
1113
        <member name="M:Newtonsoft.Json.JsonConverter.GetSchema">
1114
            <summary>
1115
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.
1116
            </summary>
1117
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns>
1118
        </member>
1119
        <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
1120
            <summary>
1121
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
1122
            </summary>
1123
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
1124
        </member>
1125
        <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
1126
            <summary>
1127
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1128
            </summary>
1129
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
1130
        </member>
1131
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1132
            <summary>
1133
            Writes the JSON representation of the object.
1134
            </summary>
1135
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1136
            <param name="value">The value.</param>
1137
            <param name="serializer">The calling serializer.</param>
1138
        </member>
1139
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1140
            <summary>
1141
            Reads the JSON representation of the object.
1142
            </summary>
1143
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1144
            <param name="objectType">Type of the object.</param>
1145
            <param name="existingValue">The existing value of object being read.</param>
1146
            <param name="serializer">The calling serializer.</param>
1147
            <returns>The object value.</returns>
1148
        </member>
1149
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
1150
            <summary>
1151
            Determines whether this instance can convert the specified object type.
1152
            </summary>
1153
            <param name="objectType">Type of the object.</param>
1154
            <returns>
1155
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1156
            </returns>
1157
        </member>
1158
        <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
1159
            <summary>
1160
            Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
1161
            </summary>
1162
        </member>
1163
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1164
            <summary>
1165
            Writes the JSON representation of the object.
1166
            </summary>
1167
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1168
            <param name="value">The value.</param>
1169
            <param name="serializer">The calling serializer.</param>
1170
        </member>
1171
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1172
            <summary>
1173
            Reads the JSON representation of the object.
1174
            </summary>
1175
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1176
            <param name="objectType">Type of the object.</param>
1177
            <param name="existingValue">The existing value of object being read.</param>
1178
            <param name="serializer">The calling serializer.</param>
1179
            <returns>The object value.</returns>
1180
        </member>
1181
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
1182
            <summary>
1183
            Determines whether this instance can convert the specified object type.
1184
            </summary>
1185
            <param name="objectType">Type of the object.</param>
1186
            <returns>
1187
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1188
            </returns>
1189
        </member>
1190
        <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
1191
            <summary>
1192
            Create a custom object
1193
            </summary>
1194
            <typeparam name="T">The object type to convert.</typeparam>
1195
        </member>
1196
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1197
            <summary>
1198
            Writes the JSON representation of the object.
1199
            </summary>
1200
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1201
            <param name="value">The value.</param>
1202
            <param name="serializer">The calling serializer.</param>
1203
        </member>
1204
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1205
            <summary>
1206
            Reads the JSON representation of the object.
1207
            </summary>
1208
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1209
            <param name="objectType">Type of the object.</param>
1210
            <param name="existingValue">The existing value of object being read.</param>
1211
            <param name="serializer">The calling serializer.</param>
1212
            <returns>The object value.</returns>
1213
        </member>
1214
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
1215
            <summary>
1216
            Creates an object which will then be populated by the serializer.
1217
            </summary>
1218
            <param name="objectType">Type of the object.</param>
1219
            <returns>The created object.</returns>
1220
        </member>
1221
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
1222
            <summary>
1223
            Determines whether this instance can convert the specified object type.
1224
            </summary>
1225
            <param name="objectType">Type of the object.</param>
1226
            <returns>
1227
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1228
            </returns>
1229
        </member>
1230
        <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
1231
            <summary>
1232
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1233
            </summary>
1234
            <value>
1235
            	<c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
1236
            </value>
1237
        </member>
1238
        <member name="T:Newtonsoft.Json.Converters.DataSetConverter">
1239
            <summary>
1240
            Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.
1241
            </summary>
1242
        </member>
1243
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1244
            <summary>
1245
            Writes the JSON representation of the object.
1246
            </summary>
1247
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1248
            <param name="value">The value.</param>
1249
            <param name="serializer">The calling serializer.</param>
1250
        </member>
1251
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1252
            <summary>
1253
            Reads the JSON representation of the object.
1254
            </summary>
1255
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1256
            <param name="objectType">Type of the object.</param>
1257
            <param name="existingValue">The existing value of object being read.</param>
1258
            <param name="serializer">The calling serializer.</param>
1259
            <returns>The object value.</returns>
1260
        </member>
1261
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
1262
            <summary>
1263
            Determines whether this instance can convert the specified value type.
1264
            </summary>
1265
            <param name="valueType">Type of the value.</param>
1266
            <returns>
1267
            	<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1268
            </returns>
1269
        </member>
1270
        <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
1271
            <summary>
1272
            Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
1273
            </summary>
1274
        </member>
1275
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1276
            <summary>
1277
            Writes the JSON representation of the object.
1278
            </summary>
1279
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1280
            <param name="value">The value.</param>
1281
            <param name="serializer">The calling serializer.</param>
1282
        </member>
1283
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1284
            <summary>
1285
            Reads the JSON representation of the object.
1286
            </summary>
1287
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1288
            <param name="objectType">Type of the object.</param>
1289
            <param name="existingValue">The existing value of object being read.</param>
1290
            <param name="serializer">The calling serializer.</param>
1291
            <returns>The object value.</returns>
1292
        </member>
1293
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
1294
            <summary>
1295
            Determines whether this instance can convert the specified value type.
1296
            </summary>
1297
            <param name="valueType">Type of the value.</param>
1298
            <returns>
1299
            	<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1300
            </returns>
1301
        </member>
1302
        <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
1303
            <summary>
1304
            Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
1305
            </summary>
1306
        </member>
1307
        <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">
1308
            <summary>
1309
            Determines whether this instance can convert the specified object type.
1310
            </summary>
1311
            <param name="objectType">Type of the object.</param>
1312
            <returns>
1313
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1314
            </returns>
1315
        </member>
1316
        <member name="T:Newtonsoft.Json.Converters.DiscriminatedUnionConverter">
1317
            <summary>
1318
            Converts a F# discriminated union type to and from JSON.
1319
            </summary>
1320
        </member>
1321
        <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1322
            <summary>
1323
            Writes the JSON representation of the object.
1324
            </summary>
1325
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1326
            <param name="value">The value.</param>
1327
            <param name="serializer">The calling serializer.</param>
1328
        </member>
1329
        <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1330
            <summary>
1331
            Reads the JSON representation of the object.
1332
            </summary>
1333
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1334
            <param name="objectType">Type of the object.</param>
1335
            <param name="existingValue">The existing value of object being read.</param>
1336
            <param name="serializer">The calling serializer.</param>
1337
            <returns>The object value.</returns>
1338
        </member>
1339
        <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.CanConvert(System.Type)">
1340
            <summary>
1341
            Determines whether this instance can convert the specified object type.
1342
            </summary>
1343
            <param name="objectType">Type of the object.</param>
1344
            <returns>
1345
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1346
            </returns>
1347
        </member>
1348
        <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter">
1349
            <summary>
1350
            Converts an Entity Framework EntityKey to and from JSON.
1351
            </summary>
1352
        </member>
1353
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1354
            <summary>
1355
            Writes the JSON representation of the object.
1356
            </summary>
1357
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1358
            <param name="value">The value.</param>
1359
            <param name="serializer">The calling serializer.</param>
1360
        </member>
1361
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1362
            <summary>
1363
            Reads the JSON representation of the object.
1364
            </summary>
1365
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1366
            <param name="objectType">Type of the object.</param>
1367
            <param name="existingValue">The existing value of object being read.</param>
1368
            <param name="serializer">The calling serializer.</param>
1369
            <returns>The object value.</returns>
1370
        </member>
1371
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)">
1372
            <summary>
1373
            Determines whether this instance can convert the specified object type.
1374
            </summary>
1375
            <param name="objectType">Type of the object.</param>
1376
            <returns>
1377
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1378
            </returns>
1379
        </member>
1380
        <member name="T:Newtonsoft.Json.Converters.ExpandoObjectConverter">
1381
            <summary>
1382
            Converts an ExpandoObject to and from JSON.
1383
            </summary>
1384
        </member>
1385
        <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1386
            <summary>
1387
            Writes the JSON representation of the object.
1388
            </summary>
1389
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1390
            <param name="value">The value.</param>
1391
            <param name="serializer">The calling serializer.</param>
1392
        </member>
1393
        <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1394
            <summary>
1395
            Reads the JSON representation of the object.
1396
            </summary>
1397
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1398
            <param name="objectType">Type of the object.</param>
1399
            <param name="existingValue">The existing value of object being read.</param>
1400
            <param name="serializer">The calling serializer.</param>
1401
            <returns>The object value.</returns>
1402
        </member>
1403
        <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)">
1404
            <summary>
1405
            Determines whether this instance can convert the specified object type.
1406
            </summary>
1407
            <param name="objectType">Type of the object.</param>
1408
            <returns>
1409
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1410
            </returns>
1411
        </member>
1412
        <member name="P:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanWrite">
1413
            <summary>
1414
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1415
            </summary>
1416
            <value>
1417
            	<c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
1418
            </value>
1419
        </member>
1420
        <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
1421
            <summary>
1422
            Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).
1423
            </summary>
1424
        </member>
1425
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1426
            <summary>
1427
            Writes the JSON representation of the object.
1428
            </summary>
1429
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1430
            <param name="value">The value.</param>
1431
            <param name="serializer">The calling serializer.</param>
1432
        </member>
1433
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1434
            <summary>
1435
            Reads the JSON representation of the object.
1436
            </summary>
1437
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1438
            <param name="objectType">Type of the object.</param>
1439
            <param name="existingValue">The existing value of object being read.</param>
1440
            <param name="serializer">The calling serializer.</param>
1441
            <returns>The object value.</returns>
1442
        </member>
1443
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
1444
            <summary>
1445
            Gets or sets the date time styles used when converting a date to and from JSON.
1446
            </summary>
1447
            <value>The date time styles used when converting a date to and from JSON.</value>
1448
        </member>
1449
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
1450
            <summary>
1451
            Gets or sets the date time format used when converting a date to and from JSON.
1452
            </summary>
1453
            <value>The date time format used when converting a date to and from JSON.</value>
1454
        </member>
1455
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
1456
            <summary>
1457
            Gets or sets the culture used when converting a date to and from JSON.
1458
            </summary>
1459
            <value>The culture used when converting a date to and from JSON.</value>
1460
        </member>
1461
        <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
1462
            <summary>
1463
            Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).
1464
            </summary>
1465
        </member>
1466
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1467
            <summary>
1468
            Writes the JSON representation of the object.
1469
            </summary>
1470
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1471
            <param name="value">The value.</param>
1472
            <param name="serializer">The calling serializer.</param>
1473
        </member>
1474
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1475
            <summary>
1476
            Reads the JSON representation of the object.
1477
            </summary>
1478
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1479
            <param name="objectType">Type of the object.</param>
1480
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
1481
            <param name="serializer">The calling serializer.</param>
1482
            <returns>The object value.</returns>
1483
        </member>
1484
        <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
1485
            <summary>
1486
            Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
1487
            </summary>
1488
        </member>
1489
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1490
            <summary>
1491
            Writes the JSON representation of the object.
1492
            </summary>
1493
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1494
            <param name="value">The value.</param>
1495
            <param name="serializer">The calling serializer.</param>
1496
        </member>
1497
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1498
            <summary>
1499
            Reads the JSON representation of the object.
1500
            </summary>
1501
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1502
            <param name="objectType">Type of the object.</param>
1503
            <param name="existingValue">The existing value of object being read.</param>
1504
            <param name="serializer">The calling serializer.</param>
1505
            <returns>The object value.</returns>
1506
        </member>
1507
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
1508
            <summary>
1509
            Determines whether this instance can convert the specified object type.
1510
            </summary>
1511
            <param name="objectType">Type of the object.</param>
1512
            <returns>
1513
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1514
            </returns>
1515
        </member>
1516
        <member name="T:Newtonsoft.Json.Converters.RegexConverter">
1517
            <summary>
1518
            Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
1519
            </summary>
1520
        </member>
1521
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1522
            <summary>
1523
            Writes the JSON representation of the object.
1524
            </summary>
1525
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1526
            <param name="value">The value.</param>
1527
            <param name="serializer">The calling serializer.</param>
1528
        </member>
1529
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1530
            <summary>
1531
            Reads the JSON representation of the object.
1532
            </summary>
1533
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1534
            <param name="objectType">Type of the object.</param>
1535
            <param name="existingValue">The existing value of object being read.</param>
1536
            <param name="serializer">The calling serializer.</param>
1537
            <returns>The object value.</returns>
1538
        </member>
1539
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
1540
            <summary>
1541
            Determines whether this instance can convert the specified object type.
1542
            </summary>
1543
            <param name="objectType">Type of the object.</param>
1544
            <returns>
1545
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1546
            </returns>
1547
        </member>
1548
        <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
1549
            <summary>
1550
            Converts an <see cref="T:System.Enum"/> to and from its name string value.
1551
            </summary>
1552
        </member>
1553
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
1554
            <summary>
1555
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
1556
            </summary>
1557
        </member>
1558
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1559
            <summary>
1560
            Writes the JSON representation of the object.
1561
            </summary>
1562
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1563
            <param name="value">The value.</param>
1564
            <param name="serializer">The calling serializer.</param>
1565
        </member>
1566
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1567
            <summary>
1568
            Reads the JSON representation of the object.
1569
            </summary>
1570
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1571
            <param name="objectType">Type of the object.</param>
1572
            <param name="existingValue">The existing value of object being read.</param>
1573
            <param name="serializer">The calling serializer.</param>
1574
            <returns>The object value.</returns>
1575
        </member>
1576
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
1577
            <summary>
1578
            Determines whether this instance can convert the specified object type.
1579
            </summary>
1580
            <param name="objectType">Type of the object.</param>
1581
            <returns>
1582
            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1583
            </returns>
1584
        </member>
1585
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
1586
            <summary>
1587
            Gets or sets a value indicating whether the written enum text should be camel case.
1588
            </summary>
1589
            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
1590
        </member>
1591
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
1592
            <summary>
1593
            Gets or sets a value indicating whether integer values are allowed.
1594
            </summary>
1595
            <value><c>true</c> if integers are allowed; otherwise, <c>false</c>.</value>
1596
        </member>
1597
        <member name="T:Newtonsoft.Json.Converters.VersionConverter">
1598
            <summary>
1599
            Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4").
1600
            </summary>
1601
        </member>
1602
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1603
            <summary>
1604
            Writes the JSON representation of the object.
1605
            </summary>
1606
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1607
            <param name="value">The value.</param>
1608
            <param name="serializer">The calling serializer.</param>
1609
        </member>
1610
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1611
            <summary>
1612
            Reads the JSON representation of the object.
1613
            </summary>
1614
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1615
            <param name="objectType">Type of the object.</param>
1616
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
1617
            <param name="serializer">The calling serializer.</param>
1618
            <returns>The object value.</returns>
1619
        </member>
1620
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
1621
            <summary>
1622
            Determines whether this instance can convert the specified object type.
1623
            </summary>
1624
            <param name="objectType">Type of the object.</param>
1625
            <returns>
1626
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1627
            </returns>
1628
        </member>
1629
        <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
1630
            <summary>
1631
            Converts XML to and from JSON.
1632
            </summary>
1633
        </member>
1634
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1635
            <summary>
1636
            Writes the JSON representation of the object.
1637
            </summary>
1638
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1639
            <param name="serializer">The calling serializer.</param>
1640
            <param name="value">The value.</param>
1641
        </member>
1642
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1643
            <summary>
1644
            Reads the JSON representation of the object.
1645
            </summary>
1646
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1647
            <param name="objectType">Type of the object.</param>
1648
            <param name="existingValue">The existing value of object being read.</param>
1649
            <param name="serializer">The calling serializer.</param>
1650
            <returns>The object value.</returns>
1651
        </member>
1652
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
1653
            <summary>
1654
            Checks if the attributeName is a namespace attribute.
1655
            </summary>
1656
            <param name="attributeName">Attribute name to test.</param>
1657
            <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
1658
            <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>
1659
        </member>
1660
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
1661
            <summary>
1662
            Determines whether this instance can convert the specified value type.
1663
            </summary>
1664
            <param name="valueType">Type of the value.</param>
1665
            <returns>
1666
            	<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1667
            </returns>
1668
        </member>
1669
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
1670
            <summary>
1671
            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.
1672
            </summary>
1673
            <value>The name of the deserialize root element.</value>
1674
        </member>
1675
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
1676
            <summary>
1677
            Gets or sets a flag to indicate whether to write the Json.NET array attribute.
1678
            This attribute helps preserve arrays when converting the written XML back to JSON.
1679
            </summary>
1680
            <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>
1681
        </member>
1682
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
1683
            <summary>
1684
            Gets or sets a value indicating whether to write the root JSON object.
1685
            </summary>
1686
            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
1687
        </member>
1688
        <member name="T:Newtonsoft.Json.FloatParseHandling">
1689
            <summary>
1690
            Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
1691
            </summary>
1692
        </member>
1693
        <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
1694
            <summary>
1695
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
1696
            </summary>
1697
        </member>
1698
        <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
1699
            <summary>
1700
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
1701
            </summary>
1702
        </member>
1703
        <member name="T:Newtonsoft.Json.DateFormatHandling">
1704
            <summary>
1705
            Specifies how dates are formatted when writing JSON text.
1706
            </summary>
1707
        </member>
1708
        <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
1709
            <summary>
1710
            Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
1711
            </summary>
1712
        </member>
1713
        <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
1714
            <summary>
1715
            Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
1716
            </summary>
1717
        </member>
1718
        <member name="T:Newtonsoft.Json.DateParseHandling">
1719
            <summary>
1720
            Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
1721
            </summary>
1722
        </member>
1723
        <member name="F:Newtonsoft.Json.DateParseHandling.None">
1724
            <summary>
1725
            Date formatted strings are not parsed to a date type and are read as strings.
1726
            </summary>
1727
        </member>
1728
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
1729
            <summary>
1730
            Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.
1731
            </summary>
1732
        </member>
1733
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
1734
            <summary>
1735
            Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"/>.
1736
            </summary>
1737
        </member>
1738
        <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
1739
            <summary>
1740
            Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
1741
            </summary>
1742
        </member>
1743
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
1744
            <summary>
1745
            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.
1746
            </summary>
1747
        </member>
1748
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
1749
            <summary>
1750
            Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
1751
            </summary>
1752
        </member>
1753
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
1754
            <summary>
1755
            Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
1756
            If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
1757
            </summary>
1758
        </member>
1759
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
1760
            <summary>
1761
            Time zone information should be preserved when converting.
1762
            </summary>
1763
        </member>
1764
        <member name="T:Newtonsoft.Json.DefaultValueHandling">
1765
            <summary>
1766
            Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1767
            </summary>
1768
            <example>
1769
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class"/>
1770
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example"/>
1771
            </example>
1772
        </member>
1773
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
1774
            <summary>
1775
            Include members where the member value is the same as the member's default value when serializing objects.
1776
            Included members are written to JSON. Has no effect when deserializing.
1777
            </summary>
1778
        </member>
1779
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
1780
            <summary>
1781
            Ignore members where the member value is the same as the member's default value when serializing objects
1782
            so that is is not written to JSON.
1783
            This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,
1784
            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
1785
            placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
1786
            </summary>
1787
        </member>
1788
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
1789
            <summary>
1790
            Members with a default value but no JSON will be set to their default value when deserializing.
1791
            </summary>
1792
        </member>
1793
        <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
1794
            <summary>
1795
            Ignore members where the member value is the same as the member's default value when serializing objects
1796
            and sets members to their default value when deserializing.
1797
            </summary>
1798
        </member>
1799
        <member name="T:Newtonsoft.Json.FloatFormatHandling">
1800
            <summary>
1801
            Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
1802
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1803
            </summary>
1804
        </member>
1805
        <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
1806
            <summary>
1807
            Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".
1808
            </summary>
1809
        </member>
1810
        <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
1811
            <summary>
1812
            Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity.
1813
            Note that this will produce non-valid JSON.
1814
            </summary>
1815
        </member>
1816
        <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
1817
            <summary>
1818
            Write special floating point values as the property's default value in JSON, e.g. 0.0 for a <see cref="T:System.Double"/> property, null for a <see cref="T:System.Nullable`1"/> property.
1819
            </summary>
1820
        </member>
1821
        <member name="T:Newtonsoft.Json.Formatting">
1822
            <summary>
1823
            Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
1824
            </summary>
1825
        </member>
1826
        <member name="F:Newtonsoft.Json.Formatting.None">
1827
            <summary>
1828
            No special formatting is applied. This is the default.
1829
            </summary>
1830
        </member>
1831
        <member name="F:Newtonsoft.Json.Formatting.Indented">
1832
            <summary>
1833
            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.
1834
            </summary>
1835
        </member>
1836
        <member name="T:Newtonsoft.Json.IJsonLineInfo">
1837
            <summary>
1838
            Provides an interface to enable a class to return line and position information.
1839
            </summary>
1840
        </member>
1841
        <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
1842
            <summary>
1843
            Gets a value indicating whether the class can return line information.
1844
            </summary>
1845
            <returns>
1846
            	<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
1847
            </returns>
1848
        </member>
1849
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
1850
            <summary>
1851
            Gets the current line number.
1852
            </summary>
1853
            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>
1854
        </member>
1855
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
1856
            <summary>
1857
            Gets the current line position.
1858
            </summary>
1859
            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>
1860
        </member>
1861
        <member name="T:Newtonsoft.Json.JsonArrayAttribute">
1862
            <summary>
1863
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
1864
            </summary>
1865
        </member>
1866
        <member name="T:Newtonsoft.Json.JsonContainerAttribute">
1867
            <summary>
1868
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
1869
            </summary>
1870
        </member>
1871
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
1872
            <summary>
1873
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
1874
            </summary>
1875
        </member>
1876
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
1877
            <summary>
1878
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
1879
            </summary>
1880
            <param name="id">The container Id.</param>
1881
        </member>
1882
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
1883
            <summary>
1884
            Gets or sets the id.
1885
            </summary>
1886
            <value>The id.</value>
1887
        </member>
1888
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
1889
            <summary>
1890
            Gets or sets the title.
1891
            </summary>
1892
            <value>The title.</value>
1893
        </member>
1894
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
1895
            <summary>
1896
            Gets or sets the description.
1897
            </summary>
1898
            <value>The description.</value>
1899
        </member>
1900
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
1901
            <summary>
1902
            Gets the collection's items converter.
1903
            </summary>
1904
            <value>The collection's items converter.</value>
1905
        </member>
1906
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters">
1907
            <summary>
1908
            The parameter list to use when constructing the JsonConverter described by ItemConverterType.
1909
            If null, the default constructor is used.
1910
            When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
1911
            order, and type of these parameters.
1912
            </summary>
1913
            <example>
1914
            [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
1915
            </example>
1916
        </member>
1917
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
1918
            <summary>
1919
            Gets or sets a value that indicates whether to preserve object references.
1920
            </summary>
1921
            <value>
1922
            	<c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
1923
            </value>
1924
        </member>
1925
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
1926
            <summary>
1927
            Gets or sets a value that indicates whether to preserve collection's items references.
1928
            </summary>
1929
            <value>
1930
            	<c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
1931
            </value>
1932
        </member>
1933
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
1934
            <summary>
1935
            Gets or sets the reference loop handling used when serializing the collection's items.
1936
            </summary>
1937
            <value>The reference loop handling.</value>
1938
        </member>
1939
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
1940
            <summary>
1941
            Gets or sets the type name handling used when serializing the collection's items.
1942
            </summary>
1943
            <value>The type name handling.</value>
1944
        </member>
1945
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
1946
            <summary>
1947
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
1948
            </summary>
1949
        </member>
1950
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
1951
            <summary>
1952
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items
1953
            </summary>
1954
            <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
1955
        </member>
1956
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
1957
            <summary>
1958
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
1959
            </summary>
1960
            <param name="id">The container Id.</param>
1961
        </member>
1962
        <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
1963
            <summary>
1964
            Gets or sets a value indicating whether null items are allowed in the collection.
1965
            </summary>
1966
            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
1967
        </member>
1968
        <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1969
            <summary>
1970
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1971
            </summary>
1972
        </member>
1973
        <member name="T:Newtonsoft.Json.JsonConvert">
1974
            <summary>
1975
            Provides methods for converting between common language runtime types and JSON types.
1976
            </summary>
1977
            <example>
1978
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
1979
            </example>
1980
        </member>
1981
        <member name="F:Newtonsoft.Json.JsonConvert.True">
1982
            <summary>
1983
            Represents JavaScript's boolean value true as a string. This field is read-only.
1984
            </summary>
1985
        </member>
1986
        <member name="F:Newtonsoft.Json.JsonConvert.False">
1987
            <summary>
1988
            Represents JavaScript's boolean value false as a string. This field is read-only.
1989
            </summary>
1990
        </member>
1991
        <member name="F:Newtonsoft.Json.JsonConvert.Null">
1992
            <summary>
1993
            Represents JavaScript's null as a string. This field is read-only.
1994
            </summary>
1995
        </member>
1996
        <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
1997
            <summary>
1998
            Represents JavaScript's undefined as a string. This field is read-only.
1999
            </summary>
2000
        </member>
2001
        <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
2002
            <summary>
2003
            Represents JavaScript's positive infinity as a string. This field is read-only.
2004
            </summary>
2005
        </member>
2006
        <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
2007
            <summary>
2008
            Represents JavaScript's negative infinity as a string. This field is read-only.
2009
            </summary>
2010
        </member>
2011
        <member name="F:Newtonsoft.Json.JsonConvert.NaN">
2012
            <summary>
2013
            Represents JavaScript's NaN as a string. This field is read-only.
2014
            </summary>
2015
        </member>
2016
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
2017
            <summary>
2018
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
2019
            </summary>
2020
            <param name="value">The value to convert.</param>
2021
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
2022
        </member>
2023
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
2024
            <summary>
2025
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
2026
            </summary>
2027
            <param name="value">The value to convert.</param>
2028
            <param name="format">The format the date will be converted to.</param>
2029
            <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
2030
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
2031
        </member>
2032
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
2033
            <summary>
2034
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
2035
            </summary>
2036
            <param name="value">The value to convert.</param>
2037
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
2038
        </member>
2039
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
2040
            <summary>
2041
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
2042
            </summary>
2043
            <param name="value">The value to convert.</param>
2044
            <param name="format">The format the date will be converted to.</param>
2045
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
2046
        </member>
2047
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
2048
            <summary>
2049
            Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
2050
            </summary>
2051
            <param name="value">The value to convert.</param>
2052
            <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
2053
        </member>
2054
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
2055
            <summary>
2056
            Converts the <see cref="T:System.Char"/> to its JSON string representation.
2057
            </summary>
2058
            <param name="value">The value to convert.</param>
2059
            <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
2060
        </member>
2061
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
2062
            <summary>
2063
            Converts the <see cref="T:System.Enum"/> to its JSON string representation.
2064
            </summary>
2065
            <param name="value">The value to convert.</param>
2066
            <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
2067
        </member>
2068
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
2069
            <summary>
2070
            Converts the <see cref="T:System.Int32"/> to its JSON string representation.
2071
            </summary>
2072
            <param name="value">The value to convert.</param>
2073
            <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
2074
        </member>
2075
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
2076
            <summary>
2077
            Converts the <see cref="T:System.Int16"/> to its JSON string representation.
2078
            </summary>
2079
            <param name="value">The value to convert.</param>
2080
            <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
2081
        </member>
2082
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
2083
            <summary>
2084
            Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
2085
            </summary>
2086
            <param name="value">The value to convert.</param>
2087
            <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
2088
        </member>
2089
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
2090
            <summary>
2091
            Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
2092
            </summary>
2093
            <param name="value">The value to convert.</param>
2094
            <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
2095
        </member>
2096
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
2097
            <summary>
2098
            Converts the <see cref="T:System.Int64"/>  to its JSON string representation.
2099
            </summary>
2100
            <param name="value">The value to convert.</param>
2101
            <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
2102
        </member>
2103
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
2104
            <summary>
2105
            Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
2106
            </summary>
2107
            <param name="value">The value to convert.</param>
2108
            <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
2109
        </member>
2110
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
2111
            <summary>
2112
            Converts the <see cref="T:System.Single"/> to its JSON string representation.
2113
            </summary>
2114
            <param name="value">The value to convert.</param>
2115
            <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
2116
        </member>
2117
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
2118
            <summary>
2119
            Converts the <see cref="T:System.Double"/> to its JSON string representation.
2120
            </summary>
2121
            <param name="value">The value to convert.</param>
2122
            <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
2123
        </member>
2124
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
2125
            <summary>
2126
            Converts the <see cref="T:System.Byte"/> to its JSON string representation.
2127
            </summary>
2128
            <param name="value">The value to convert.</param>
2129
            <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
2130
        </member>
2131
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
2132
            <summary>
2133
            Converts the <see cref="T:System.SByte"/> to its JSON string representation.
2134
            </summary>
2135
            <param name="value">The value to convert.</param>
2136
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
2137
        </member>
2138
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
2139
            <summary>
2140
            Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
2141
            </summary>
2142
            <param name="value">The value to convert.</param>
2143
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
2144
        </member>
2145
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
2146
            <summary>
2147
            Converts the <see cref="T:System.Guid"/> to its JSON string representation.
2148
            </summary>
2149
            <param name="value">The value to convert.</param>
2150
            <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
2151
        </member>
2152
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
2153
            <summary>
2154
            Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
2155
            </summary>
2156
            <param name="value">The value to convert.</param>
2157
            <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
2158
        </member>
2159
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
2160
            <summary>
2161
            Converts the <see cref="T:System.Uri"/> to its JSON string representation.
2162
            </summary>
2163
            <param name="value">The value to convert.</param>
2164
            <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
2165
        </member>
2166
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
2167
            <summary>
2168
            Converts the <see cref="T:System.String"/> to its JSON string representation.
2169
            </summary>
2170
            <param name="value">The value to convert.</param>
2171
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
2172
        </member>
2173
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
2174
            <summary>
2175
            Converts the <see cref="T:System.String"/> to its JSON string representation.
2176
            </summary>
2177
            <param name="value">The value to convert.</param>
2178
            <param name="delimiter">The string delimiter character.</param>
2179
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
2180
        </member>
2181
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)">
2182
            <summary>
2183
            Converts the <see cref="T:System.String"/> to its JSON string representation.
2184
            </summary>
2185
            <param name="value">The value to convert.</param>
2186
            <param name="delimiter">The string delimiter character.</param>
2187
            <param name="stringEscapeHandling">The string escape handling.</param>
2188
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
2189
        </member>
2190
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
2191
            <summary>
2192
            Converts the <see cref="T:System.Object"/> to its JSON string representation.
2193
            </summary>
2194
            <param name="value">The value to convert.</param>
2195
            <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
2196
        </member>
2197
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
2198
            <summary>
2199
            Serializes the specified object to a JSON string.
2200
            </summary>
2201
            <param name="value">The object to serialize.</param>
2202
            <returns>A JSON string representation of the object.</returns>
2203
        </member>
2204
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
2205
            <summary>
2206
            Serializes the specified object to a JSON string using formatting.
2207
            </summary>
2208
            <param name="value">The object to serialize.</param>
2209
            <param name="formatting">Indicates how the output is formatted.</param>
2210
            <returns>
2211
            A JSON string representation of the object.
2212
            </returns>
2213
        </member>
2214
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
2215
            <summary>
2216
            Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2217
            </summary>
2218
            <param name="value">The object to serialize.</param>
2219
            <param name="converters">A collection converters used while serializing.</param>
2220
            <returns>A JSON string representation of the object.</returns>
2221
        </member>
2222
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
2223
            <summary>
2224
            Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2225
            </summary>
2226
            <param name="value">The object to serialize.</param>
2227
            <param name="formatting">Indicates how the output is formatted.</param>
2228
            <param name="converters">A collection converters used while serializing.</param>
2229
            <returns>A JSON string representation of the object.</returns>
2230
        </member>
2231
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
2232
            <summary>
2233
            Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2234
            </summary>
2235
            <param name="value">The object to serialize.</param>
2236
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
2237
            If this is null, default serialization settings will be used.</param>
2238
            <returns>
2239
            A JSON string representation of the object.
2240
            </returns>
2241
        </member>
2242
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
2243
            <summary>
2244
            Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2245
            </summary>
2246
            <param name="value">The object to serialize.</param>
2247
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
2248
            If this is null, default serialization settings will be used.</param>
2249
            <param name="type">
2250
            The type of the value being serialized.
2251
            This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
2252
            Specifing the type is optional.
2253
            </param>
2254
            <returns>
2255
            A JSON string representation of the object.
2256
            </returns>
2257
        </member>
2258
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
2259
            <summary>
2260
            Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2261
            </summary>
2262
            <param name="value">The object to serialize.</param>
2263
            <param name="formatting">Indicates how the output is formatted.</param>
2264
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
2265
            If this is null, default serialization settings will be used.</param>
2266
            <returns>
2267
            A JSON string representation of the object.
2268
            </returns>
2269
        </member>
2270
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
2271
            <summary>
2272
            Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2273
            </summary>
2274
            <param name="value">The object to serialize.</param>
2275
            <param name="formatting">Indicates how the output is formatted.</param>
2276
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
2277
            If this is null, default serialization settings will be used.</param>
2278
            <param name="type">
2279
            The type of the value being serialized.
2280
            This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
2281
            Specifing the type is optional.
2282
            </param>
2283
            <returns>
2284
            A JSON string representation of the object.
2285
            </returns>
2286
        </member>
2287
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object)">
2288
            <summary>
2289
            Asynchronously serializes the specified object to a JSON string.
2290
            Serialization will happen on a new thread.
2291
            </summary>
2292
            <param name="value">The object to serialize.</param>
2293
            <returns>
2294
            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
2295
            </returns>
2296
        </member>
2297
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting)">
2298
            <summary>
2299
            Asynchronously serializes the specified object to a JSON string using formatting.
2300
            Serialization will happen on a new thread.
2301
            </summary>
2302
            <param name="value">The object to serialize.</param>
2303
            <param name="formatting">Indicates how the output is formatted.</param>
2304
            <returns>
2305
            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
2306
            </returns>
2307
        </member>
2308
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
2309
            <summary>
2310
            Asynchronously serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2311
            Serialization will happen on a new thread.
2312
            </summary>
2313
            <param name="value">The object to serialize.</param>
2314
            <param name="formatting">Indicates how the output is formatted.</param>
2315
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
2316
            If this is null, default serialization settings will be used.</param>
2317
            <returns>
2318
            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
2319
            </returns>
2320
        </member>
2321
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
2322
            <summary>
2323
            Deserializes the JSON to a .NET object.
2324
            </summary>
2325
            <param name="value">The JSON to deserialize.</param>
2326
            <returns>The deserialized object from the JSON string.</returns>
2327
        </member>
2328
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
2329
            <summary>
2330
            Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2331
            </summary>
2332
            <param name="value">The JSON to deserialize.</param>
2333
            <param name="settings">
2334
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
2335
            If this is null, default serialization settings will be used.
2336
            </param>
2337
            <returns>The deserialized object from the JSON string.</returns>
2338
        </member>
2339
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
2340
            <summary>
2341
            Deserializes the JSON to the specified .NET type.
2342
            </summary>
2343
            <param name="value">The JSON to deserialize.</param>
2344
            <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
2345
            <returns>The deserialized object from the JSON string.</returns>
2346
        </member>
2347
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
2348
            <summary>
2349
            Deserializes the JSON to the specified .NET type.
2350
            </summary>
2351
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
2352
            <param name="value">The JSON to deserialize.</param>
2353
            <returns>The deserialized object from the JSON string.</returns>
2354
        </member>
2355
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
2356
            <summary>
2357
            Deserializes the JSON to the given anonymous type.
2358
            </summary>
2359
            <typeparam name="T">
2360
            The anonymous type to deserialize to. This can't be specified
2361
            traditionally and must be infered from the anonymous type passed
2362
            as a parameter.
2363
            </typeparam>
2364
            <param name="value">The JSON to deserialize.</param>
2365
            <param name="anonymousTypeObject">The anonymous type object.</param>
2366
            <returns>The deserialized anonymous type from the JSON string.</returns>
2367
        </member>
2368
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
2369
            <summary>
2370
            Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2371
            </summary>
2372
            <typeparam name="T">
2373
            The anonymous type to deserialize to. This can't be specified
2374
            traditionally and must be infered from the anonymous type passed
2375
            as a parameter.
2376
            </typeparam>
2377
            <param name="value">The JSON to deserialize.</param>
2378
            <param name="anonymousTypeObject">The anonymous type object.</param>
2379
            <param name="settings">
2380
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
2381
            If this is null, default serialization settings will be used.
2382
            </param>
2383
            <returns>The deserialized anonymous type from the JSON string.</returns>
2384
        </member>
2385
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
2386
            <summary>
2387
            Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2388
            </summary>
2389
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
2390
            <param name="value">The JSON to deserialize.</param>
2391
            <param name="converters">Converters to use while deserializing.</param>
2392
            <returns>The deserialized object from the JSON string.</returns>
2393
        </member>
2394
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
2395
            <summary>
2396
            Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2397
            </summary>
2398
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
2399
            <param name="value">The object to deserialize.</param>
2400
            <param name="settings">
2401
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
2402
            If this is null, default serialization settings will be used.
2403
            </param>
2404
            <returns>The deserialized object from the JSON string.</returns>
2405
        </member>
2406
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
2407
            <summary>
2408
            Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2409
            </summary>
2410
            <param name="value">The JSON to deserialize.</param>
2411
            <param name="type">The type of the object to deserialize.</param>
2412
            <param name="converters">Converters to use while deserializing.</param>
2413
            <returns>The deserialized object from the JSON string.</returns>
2414
        </member>
2415
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
2416
            <summary>
2417
            Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2418
            </summary>
2419
            <param name="value">The JSON to deserialize.</param>
2420
            <param name="type">The type of the object to deserialize to.</param>
2421
            <param name="settings">
2422
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
2423
            If this is null, default serialization settings will be used.
2424
            </param>
2425
            <returns>The deserialized object from the JSON string.</returns>
2426
        </member>
2427
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String)">
2428
            <summary>
2429
            Asynchronously deserializes the JSON to the specified .NET type.
2430
            Deserialization will happen on a new thread.
2431
            </summary>
2432
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
2433
            <param name="value">The JSON to deserialize.</param>
2434
            <returns>
2435
            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
2436
            </returns>
2437
        </member>
2438
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
2439
            <summary>
2440
            Asynchronously deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2441
            Deserialization will happen on a new thread.
2442
            </summary>
2443
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
2444
            <param name="value">The JSON to deserialize.</param>
2445
            <param name="settings">
2446
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
2447
            If this is null, default serialization settings will be used.
2448
            </param>
2449
            <returns>
2450
            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
2451
            </returns>
2452
        </member>
2453
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String)">
2454
            <summary>
2455
            Asynchronously deserializes the JSON to the specified .NET type.
2456
            Deserialization will happen on a new thread.
2457
            </summary>
2458
            <param name="value">The JSON to deserialize.</param>
2459
            <returns>
2460
            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
2461
            </returns>
2462
        </member>
2463
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
2464
            <summary>
2465
            Asynchronously deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2466
            Deserialization will happen on a new thread.
2467
            </summary>
2468
            <param name="value">The JSON to deserialize.</param>
2469
            <param name="type">The type of the object to deserialize to.</param>
2470
            <param name="settings">
2471
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
2472
            If this is null, default serialization settings will be used.
2473
            </param>
2474
            <returns>
2475
            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
2476
            </returns>
2477
        </member>
2478
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
2479
            <summary>
2480
            Populates the object with values from the JSON string.
2481
            </summary>
2482
            <param name="value">The JSON to populate values from.</param>
2483
            <param name="target">The target object to populate values onto.</param>
2484
        </member>
2485
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
2486
            <summary>
2487
            Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2488
            </summary>
2489
            <param name="value">The JSON to populate values from.</param>
2490
            <param name="target">The target object to populate values onto.</param>
2491
            <param name="settings">
2492
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
2493
            If this is null, default serialization settings will be used.
2494
            </param>
2495
        </member>
2496
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObjectAsync(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
2497
            <summary>
2498
            Asynchronously populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2499
            </summary>
2500
            <param name="value">The JSON to populate values from.</param>
2501
            <param name="target">The target object to populate values onto.</param>
2502
            <param name="settings">
2503
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
2504
            If this is null, default serialization settings will be used.
2505
            </param>
2506
            <returns>
2507
            A task that represents the asynchronous populate operation.
2508
            </returns>
2509
        </member>
2510
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
2511
            <summary>
2512
            Serializes the XML node to a JSON string.
2513
            </summary>
2514
            <param name="node">The node to serialize.</param>
2515
            <returns>A JSON string of the XmlNode.</returns>
2516
        </member>
2517
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
2518
            <summary>
2519
            Serializes the XML node to a JSON string using formatting.
2520
            </summary>
2521
            <param name="node">The node to serialize.</param>
2522
            <param name="formatting">Indicates how the output is formatted.</param>
2523
            <returns>A JSON string of the XmlNode.</returns>
2524
        </member>
2525
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
2526
            <summary>
2527
            Serializes the XML node to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
2528
            </summary>
2529
            <param name="node">The node to serialize.</param>
2530
            <param name="formatting">Indicates how the output is formatted.</param>
2531
            <param name="omitRootObject">Omits writing the root object.</param>
2532
            <returns>A JSON string of the XmlNode.</returns>
2533
        </member>
2534
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
2535
            <summary>
2536
            Deserializes the XmlNode from a JSON string.
2537
            </summary>
2538
            <param name="value">The JSON string.</param>
2539
            <returns>The deserialized XmlNode</returns>
2540
        </member>
2541
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
2542
            <summary>
2543
            Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
2544
            </summary>
2545
            <param name="value">The JSON string.</param>
2546
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
2547
            <returns>The deserialized XmlNode</returns>
2548
        </member>
2549
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
2550
            <summary>
2551
            Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
2552
            and writes a .NET array attribute for collections.
2553
            </summary>
2554
            <param name="value">The JSON string.</param>
2555
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
2556
            <param name="writeArrayAttribute">
2557
            A flag to indicate whether to write the Json.NET array attribute.
2558
            This attribute helps preserve arrays when converting the written XML back to JSON.
2559
            </param>
2560
            <returns>The deserialized XmlNode</returns>
2561
        </member>
2562
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
2563
            <summary>
2564
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
2565
            </summary>
2566
            <param name="node">The node to convert to JSON.</param>
2567
            <returns>A JSON string of the XNode.</returns>
2568
        </member>
2569
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
2570
            <summary>
2571
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting.
2572
            </summary>
2573
            <param name="node">The node to convert to JSON.</param>
2574
            <param name="formatting">Indicates how the output is formatted.</param>
2575
            <returns>A JSON string of the XNode.</returns>
2576
        </member>
2577
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
2578
            <summary>
2579
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
2580
            </summary>
2581
            <param name="node">The node to serialize.</param>
2582
            <param name="formatting">Indicates how the output is formatted.</param>
2583
            <param name="omitRootObject">Omits writing the root object.</param>
2584
            <returns>A JSON string of the XNode.</returns>
2585
        </member>
2586
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
2587
            <summary>
2588
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.
2589
            </summary>
2590
            <param name="value">The JSON string.</param>
2591
            <returns>The deserialized XNode</returns>
2592
        </member>
2593
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
2594
            <summary>
2595
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
2596
            </summary>
2597
            <param name="value">The JSON string.</param>
2598
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
2599
            <returns>The deserialized XNode</returns>
2600
        </member>
2601
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
2602
            <summary>
2603
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
2604
            and writes a .NET array attribute for collections.
2605
            </summary>
2606
            <param name="value">The JSON string.</param>
2607
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
2608
            <param name="writeArrayAttribute">
2609
            A flag to indicate whether to write the Json.NET array attribute.
2610
            This attribute helps preserve arrays when converting the written XML back to JSON.
2611
            </param>
2612
            <returns>The deserialized XNode</returns>
2613
        </member>
2614
        <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
2615
            <summary>
2616
            Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2617
            Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
2618
            and <see cref="M:Newtonsoft.Json.Linq.JToken.ToObject``1"/> and <see cref="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)"/> on <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2619
            To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
2620
            <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
2621
            </summary>
2622
        </member>
2623
        <member name="T:Newtonsoft.Json.JsonConverterAttribute">
2624
            <summary>
2625
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
2626
            </summary>
2627
        </member>
2628
        <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
2629
            <summary>
2630
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
2631
            </summary>
2632
            <param name="converterType">Type of the converter.</param>
2633
        </member>
2634
        <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])">
2635
            <summary>
2636
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
2637
            </summary>
2638
            <param name="converterType">Type of the converter.</param>
2639
            <param name="converterParameters">Parameter list to use when constructing the JsonConverter.  Can be null.</param>
2640
        </member>
2641
        <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
2642
            <summary>
2643
            Gets the type of the converter.
2644
            </summary>
2645
            <value>The type of the converter.</value>
2646
        </member>
2647
        <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters">
2648
            <summary>
2649
            The parameter list to use when constructing the JsonConverter described by ConverterType.  
2650
            If null, the default constructor is used.
2651
            </summary>
2652
        </member>
2653
        <member name="T:Newtonsoft.Json.JsonConverterCollection">
2654
            <summary>
2655
            Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2656
            </summary>
2657
        </member>
2658
        <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
2659
            <summary>
2660
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
2661
            </summary>
2662
        </member>
2663
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
2664
            <summary>
2665
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
2666
            </summary>
2667
        </member>
2668
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
2669
            <summary>
2670
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
2671
            </summary>
2672
            <param name="id">The container Id.</param>
2673
        </member>
2674
        <member name="T:Newtonsoft.Json.JsonException">
2675
            <summary>
2676
            The exception thrown when an error occurs during Json serialization or deserialization.
2677
            </summary>
2678
        </member>
2679
        <member name="M:Newtonsoft.Json.JsonException.#ctor">
2680
            <summary>
2681
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
2682
            </summary>
2683
        </member>
2684
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
2685
            <summary>
2686
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
2687
            with a specified error message.
2688
            </summary>
2689
            <param name="message">The error message that explains the reason for the exception.</param>
2690
        </member>
2691
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
2692
            <summary>
2693
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
2694
            with a specified error message and a reference to the inner exception that is the cause of this exception.
2695
            </summary>
2696
            <param name="message">The error message that explains the reason for the exception.</param>
2697
            <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>
2698
        </member>
2699
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
2700
            <summary>
2701
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
2702
            </summary>
2703
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
2704
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
2705
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
2706
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
2707
        </member>
2708
        <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
2709
            <summary>
2710
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection
2711
            and write values during serialization.
2712
            </summary>
2713
        </member>
2714
        <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
2715
            <summary>
2716
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.
2717
            </summary>
2718
        </member>
2719
        <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
2720
            <summary>
2721
            Gets or sets a value that indicates whether to write extension data when serializing the object.
2722
            </summary>
2723
            <value>
2724
            	<c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
2725
            </value>
2726
        </member>
2727
        <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
2728
            <summary>
2729
            Gets or sets a value that indicates whether to read extension data when deserializing the object.
2730
            </summary>
2731
            <value>
2732
            	<c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
2733
            </value>
2734
        </member>
2735
        <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
2736
            <summary>
2737
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
2738
            </summary>
2739
        </member>
2740
        <member name="T:Newtonsoft.Json.JsonObjectAttribute">
2741
            <summary>
2742
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
2743
            </summary>
2744
        </member>
2745
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
2746
            <summary>
2747
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
2748
            </summary>
2749
        </member>
2750
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
2751
            <summary>
2752
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
2753
            </summary>
2754
            <param name="memberSerialization">The member serialization.</param>
2755
        </member>
2756
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
2757
            <summary>
2758
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
2759
            </summary>
2760
            <param name="id">The container Id.</param>
2761
        </member>
2762
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
2763
            <summary>
2764
            Gets or sets the member serialization.
2765
            </summary>
2766
            <value>The member serialization.</value>
2767
        </member>
2768
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
2769
            <summary>
2770
            Gets or sets a value that indicates whether the object's properties are required.
2771
            </summary>
2772
            <value>
2773
            	A value indicating whether the object's properties are required.
2774
            </value>
2775
        </member>
2776
        <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
2777
            <summary>
2778
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
2779
            </summary>
2780
        </member>
2781
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
2782
            <summary>
2783
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
2784
            </summary>
2785
        </member>
2786
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
2787
            <summary>
2788
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
2789
            </summary>
2790
            <param name="propertyName">Name of the property.</param>
2791
        </member>
2792
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
2793
            <summary>
2794
            Gets or sets the converter used when serializing the property's collection items.
2795
            </summary>
2796
            <value>The collection's items converter.</value>
2797
        </member>
2798
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterParameters">
2799
            <summary>
2800
            The parameter list to use when constructing the JsonConverter described by ItemConverterType.
2801
            If null, the default constructor is used.
2802
            When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
2803
            order, and type of these parameters.
2804
            </summary>
2805
            <example>
2806
            [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
2807
            </example>
2808
        </member>
2809
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
2810
            <summary>
2811
            Gets or sets the null value handling used when serializing this property.
2812
            </summary>
2813
            <value>The null value handling.</value>
2814
        </member>
2815
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
2816
            <summary>
2817
            Gets or sets the default value handling used when serializing this property.
2818
            </summary>
2819
            <value>The default value handling.</value>
2820
        </member>
2821
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
2822
            <summary>
2823
            Gets or sets the reference loop handling used when serializing this property.
2824
            </summary>
2825
            <value>The reference loop handling.</value>
2826
        </member>
2827
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
2828
            <summary>
2829
            Gets or sets the object creation handling used when deserializing this property.
2830
            </summary>
2831
            <value>The object creation handling.</value>
2832
        </member>
2833
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
2834
            <summary>
2835
            Gets or sets the type name handling used when serializing this property.
2836
            </summary>
2837
            <value>The type name handling.</value>
2838
        </member>
2839
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
2840
            <summary>
2841
            Gets or sets whether this property's value is serialized as a reference.
2842
            </summary>
2843
            <value>Whether this property's value is serialized as a reference.</value>
2844
        </member>
2845
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
2846
            <summary>
2847
            Gets or sets the order of serialization and deserialization of a member.
2848
            </summary>
2849
            <value>The numeric order of serialization or deserialization.</value>
2850
        </member>
2851
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
2852
            <summary>
2853
            Gets or sets a value indicating whether this property is required.
2854
            </summary>
2855
            <value>
2856
            	A value indicating whether this property is required.
2857
            </value>
2858
        </member>
2859
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
2860
            <summary>
2861
            Gets or sets the name of the property.
2862
            </summary>
2863
            <value>The name of the property.</value>
2864
        </member>
2865
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
2866
            <summary>
2867
            Gets or sets the the reference loop handling used when serializing the property's collection items.
2868
            </summary>
2869
            <value>The collection's items reference loop handling.</value>
2870
        </member>
2871
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
2872
            <summary>
2873
            Gets or sets the the type name handling used when serializing the property's collection items.
2874
            </summary>
2875
            <value>The collection's items type name handling.</value>
2876
        </member>
2877
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
2878
            <summary>
2879
            Gets or sets whether this property's collection items are serialized as a reference.
2880
            </summary>
2881
            <value>Whether this property's collection items are serialized as a reference.</value>
2882
        </member>
2883
        <member name="T:Newtonsoft.Json.JsonReaderException">
2884
            <summary>
2885
            The exception thrown when an error occurs while reading Json text.
2886
            </summary>
2887
        </member>
2888
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
2889
            <summary>
2890
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
2891
            </summary>
2892
        </member>
2893
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
2894
            <summary>
2895
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
2896
            with a specified error message.
2897
            </summary>
2898
            <param name="message">The error message that explains the reason for the exception.</param>
2899
        </member>
2900
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
2901
            <summary>
2902
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
2903
            with a specified error message and a reference to the inner exception that is the cause of this exception.
2904
            </summary>
2905
            <param name="message">The error message that explains the reason for the exception.</param>
2906
            <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>
2907
        </member>
2908
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
2909
            <summary>
2910
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
2911
            </summary>
2912
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
2913
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
2914
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
2915
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
2916
        </member>
2917
        <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
2918
            <summary>
2919
            Gets the line number indicating where the error occurred.
2920
            </summary>
2921
            <value>The line number indicating where the error occurred.</value>
2922
        </member>
2923
        <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
2924
            <summary>
2925
            Gets the line position indicating where the error occurred.
2926
            </summary>
2927
            <value>The line position indicating where the error occurred.</value>
2928
        </member>
2929
        <member name="P:Newtonsoft.Json.JsonReaderException.Path">
2930
            <summary>
2931
            Gets the path to the JSON where the error occurred.
2932
            </summary>
2933
            <value>The path to the JSON where the error occurred.</value>
2934
        </member>
2935
        <member name="T:Newtonsoft.Json.JsonSerializationException">
2936
            <summary>
2937
            The exception thrown when an error occurs during Json serialization or deserialization.
2938
            </summary>
2939
        </member>
2940
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
2941
            <summary>
2942
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
2943
            </summary>
2944
        </member>
2945
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
2946
            <summary>
2947
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
2948
            with a specified error message.
2949
            </summary>
2950
            <param name="message">The error message that explains the reason for the exception.</param>
2951
        </member>
2952
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
2953
            <summary>
2954
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
2955
            with a specified error message and a reference to the inner exception that is the cause of this exception.
2956
            </summary>
2957
            <param name="message">The error message that explains the reason for the exception.</param>
2958
            <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>
2959
        </member>
2960
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
2961
            <summary>
2962
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
2963
            </summary>
2964
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
2965
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
2966
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
2967
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
2968
        </member>
2969
        <member name="T:Newtonsoft.Json.JsonSerializer">
2970
            <summary>
2971
            Serializes and deserializes objects into and from the JSON format.
2972
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
2973
            </summary>
2974
        </member>
2975
        <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
2976
            <summary>
2977
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
2978
            </summary>
2979
        </member>
2980
        <member name="M:Newtonsoft.Json.JsonSerializer.Create">
2981
            <summary>
2982
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
2983
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
2984
            </summary>
2985
            <returns>
2986
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
2987
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
2988
            </returns>
2989
        </member>
2990
        <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
2991
            <summary>
2992
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2993
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
2994
            </summary>
2995
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
2996
            <returns>
2997
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2998
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
2999
            </returns>
3000
        </member>
3001
        <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
3002
            <summary>
3003
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
3004
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
3005
            </summary>
3006
            <returns>
3007
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
3008
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
3009
            </returns>
3010
        </member>
3011
        <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
3012
            <summary>
3013
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
3014
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
3015
            </summary>
3016
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
3017
            <returns>
3018
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
3019
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
3020
            </returns>
3021
        </member>
3022
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
3023
            <summary>
3024
            Populates the JSON values onto the target object.
3025
            </summary>
3026
            <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
3027
            <param name="target">The target object to populate values onto.</param>
3028
        </member>
3029
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
3030
            <summary>
3031
            Populates the JSON values onto the target object.
3032
            </summary>
3033
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
3034
            <param name="target">The target object to populate values onto.</param>
3035
        </member>
3036
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
3037
            <summary>
3038
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
3039
            </summary>
3040
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
3041
            <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
3042
        </member>
3043
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
3044
            <summary>
3045
            Deserializes the Json structure contained by the specified <see cref="T:System.IO.StringReader"/>
3046
            into an instance of the specified type.
3047
            </summary>
3048
            <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
3049
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
3050
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
3051
        </member>
3052
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
3053
            <summary>
3054
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
3055
            into an instance of the specified type.
3056
            </summary>
3057
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
3058
            <typeparam name="T">The type of the object to deserialize.</typeparam>
3059
            <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
3060
        </member>
3061
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
3062
            <summary>
3063
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
3064
            into an instance of the specified type.
3065
            </summary>
3066
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
3067
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
3068
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
3069
        </member>
3070
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
3071
            <summary>
3072
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
3073
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
3074
            </summary>
3075
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
3076
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
3077
        </member>
3078
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
3079
            <summary>
3080
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
3081
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
3082
            </summary>
3083
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
3084
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
3085
            <param name="objectType">
3086
            The type of the value being serialized.
3087
            This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
3088
            Specifing the type is optional.
3089
            </param>
3090
        </member>
3091
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
3092
            <summary>
3093
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
3094
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
3095
            </summary>
3096
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
3097
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
3098
            <param name="objectType">
3099
            The type of the value being serialized.
3100
            This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
3101
            Specifing the type is optional.
3102
            </param>
3103
        </member>
3104
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
3105
            <summary>
3106
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
3107
            to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>. 
3108
            </summary>
3109
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
3110
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
3111
        </member>
3112
        <member name="E:Newtonsoft.Json.JsonSerializer.Error">
3113
            <summary>
3114
            Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
3115
            </summary>
3116
        </member>
3117
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
3118
            <summary>
3119
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
3120
            </summary>
3121
        </member>
3122
        <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
3123
            <summary>
3124
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
3125
            </summary>
3126
        </member>
3127
        <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
3128
            <summary>
3129
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
3130
            </summary>
3131
            <value>The trace writer.</value>
3132
        </member>
3133
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
3134
            <summary>
3135
            Gets or sets how type name writing and reading is handled by the serializer.
3136
            </summary>
3137
        </member>
3138
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
3139
            <summary>
3140
            Gets or sets how a type name assembly is written and resolved by the serializer.
3141
            </summary>
3142
            <value>The type name assembly format.</value>
3143
        </member>
3144
        <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
3145
            <summary>
3146
            Gets or sets how object references are preserved by the serializer.
3147
            </summary>
3148
        </member>
3149
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
3150
            <summary>
3151
            Get or set how reference loops (e.g. a class referencing itself) is handled.
3152
            </summary>
3153
        </member>
3154
        <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
3155
            <summary>
3156
            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
3157
            </summary>
3158
        </member>
3159
        <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
3160
            <summary>
3161
            Get or set how null values are handled during serialization and deserialization.
3162
            </summary>
3163
        </member>
3164
        <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
3165
            <summary>
3166
            Get or set how null default are handled during serialization and deserialization.
3167
            </summary>
3168
        </member>
3169
        <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
3170
            <summary>
3171
            Gets or sets how objects are created during deserialization.
3172
            </summary>
3173
            <value>The object creation handling.</value>
3174
        </member>
3175
        <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
3176
            <summary>
3177
            Gets or sets how constructors are used during deserialization.
3178
            </summary>
3179
            <value>The constructor handling.</value>
3180
        </member>
3181
        <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">
3182
            <summary>
3183
            Gets or sets how metadata properties are used during deserialization.
3184
            </summary>
3185
            <value>The metadata properties handling.</value>
3186
        </member>
3187
        <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
3188
            <summary>
3189
            Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
3190
            </summary>
3191
            <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
3192
        </member>
3193
        <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
3194
            <summary>
3195
            Gets or sets the contract resolver used by the serializer when
3196
            serializing .NET objects to JSON and vice versa.
3197
            </summary>
3198
        </member>
3199
        <member name="P:Newtonsoft.Json.JsonSerializer.Context">
3200
            <summary>
3201
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
3202
            </summary>
3203
            <value>The context.</value>
3204
        </member>
3205
        <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
3206
            <summary>
3207
            Indicates how JSON text output is formatted.
3208
            </summary>
3209
        </member>
3210
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
3211
            <summary>
3212
            Get or set how dates are written to JSON text.
3213
            </summary>
3214
        </member>
3215
        <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
3216
            <summary>
3217
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
3218
            </summary>
3219
        </member>
3220
        <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
3221
            <summary>
3222
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
3223
            </summary>
3224
        </member>
3225
        <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
3226
            <summary>
3227
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
3228
            </summary>
3229
        </member>
3230
        <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
3231
            <summary>
3232
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
3233
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
3234
            are written as JSON text.
3235
            </summary>
3236
        </member>
3237
        <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
3238
            <summary>
3239
            Get or set how strings are escaped when writing JSON text.
3240
            </summary>
3241
        </member>
3242
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
3243
            <summary>
3244
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
3245
            </summary>
3246
        </member>
3247
        <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
3248
            <summary>
3249
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
3250
            </summary>
3251
        </member>
3252
        <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
3253
            <summary>
3254
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
3255
            </summary>
3256
        </member>
3257
        <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
3258
            <summary>
3259
            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
3260
            </summary>
3261
            <value>
3262
            	<c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
3263
            </value>
3264
        </member>
3265
        <member name="T:Newtonsoft.Json.JsonSerializerSettings">
3266
            <summary>
3267
            Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
3268
            </summary>
3269
        </member>
3270
        <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
3271
            <summary>
3272
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
3273
            </summary>
3274
        </member>
3275
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
3276
            <summary>
3277
            Gets or sets how reference loops (e.g. a class referencing itself) is handled.
3278
            </summary>
3279
            <value>Reference loop handling.</value>
3280
        </member>
3281
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
3282
            <summary>
3283
            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
3284
            </summary>
3285
            <value>Missing member handling.</value>
3286
        </member>
3287
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
3288
            <summary>
3289
            Gets or sets how objects are created during deserialization.
3290
            </summary>
3291
            <value>The object creation handling.</value>
3292
        </member>
3293
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
3294
            <summary>
3295
            Gets or sets how null values are handled during serialization and deserialization.
3296
            </summary>
3297
            <value>Null value handling.</value>
3298
        </member>
3299
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
3300
            <summary>
3301
            Gets or sets how null default are handled during serialization and deserialization.
3302
            </summary>
3303
            <value>The default value handling.</value>
3304
        </member>
3305
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
3306
            <summary>
3307
            Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
3308
            </summary>
3309
            <value>The converters.</value>
3310
        </member>
3311
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
3312
            <summary>
3313
            Gets or sets how object references are preserved by the serializer.
3314
            </summary>
3315
            <value>The preserve references handling.</value>
3316
        </member>
3317
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
3318
            <summary>
3319
            Gets or sets how type name writing and reading is handled by the serializer.
3320
            </summary>
3321
            <value>The type name handling.</value>
3322
        </member>
3323
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">
3324
            <summary>
3325
            Gets or sets how metadata properties are used during deserialization.
3326
            </summary>
3327
            <value>The metadata properties handling.</value>
3328
        </member>
3329
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
3330
            <summary>
3331
            Gets or sets how a type name assembly is written and resolved by the serializer.
3332
            </summary>
3333
            <value>The type name assembly format.</value>
3334
        </member>
3335
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
3336
            <summary>
3337
            Gets or sets how constructors are used during deserialization.
3338
            </summary>
3339
            <value>The constructor handling.</value>
3340
        </member>
3341
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
3342
            <summary>
3343
            Gets or sets the contract resolver used by the serializer when
3344
            serializing .NET objects to JSON and vice versa.
3345
            </summary>
3346
            <value>The contract resolver.</value>
3347
        </member>
3348
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
3349
            <summary>
3350
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
3351
            </summary>
3352
            <value>The reference resolver.</value>
3353
        </member>
3354
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
3355
            <summary>
3356
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
3357
            </summary>
3358
            <value>The trace writer.</value>
3359
        </member>
3360
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
3361
            <summary>
3362
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
3363
            </summary>
3364
            <value>The binder.</value>
3365
        </member>
3366
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
3367
            <summary>
3368
            Gets or sets the error handler called during serialization and deserialization.
3369
            </summary>
3370
            <value>The error handler called during serialization and deserialization.</value>
3371
        </member>
3372
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
3373
            <summary>
3374
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
3375
            </summary>
3376
            <value>The context.</value>
3377
        </member>
3378
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
3379
            <summary>
3380
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
3381
            </summary>
3382
        </member>
3383
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
3384
            <summary>
3385
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
3386
            </summary>
3387
        </member>
3388
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
3389
            <summary>
3390
            Indicates how JSON text output is formatted.
3391
            </summary>
3392
        </member>
3393
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
3394
            <summary>
3395
            Get or set how dates are written to JSON text.
3396
            </summary>
3397
        </member>
3398
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
3399
            <summary>
3400
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
3401
            </summary>
3402
        </member>
3403
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
3404
            <summary>
3405
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
3406
            </summary>
3407
        </member>
3408
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
3409
            <summary>
3410
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
3411
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
3412
            are written as JSON.
3413
            </summary>
3414
        </member>
3415
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
3416
            <summary>
3417
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
3418
            </summary>
3419
        </member>
3420
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
3421
            <summary>
3422
            Get or set how strings are escaped when writing JSON text.
3423
            </summary>
3424
        </member>
3425
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
3426
            <summary>
3427
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
3428
            </summary>
3429
        </member>
3430
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
3431
            <summary>
3432
            Gets a value indicating whether there will be a check for additional content after deserializing an object.
3433
            </summary>
3434
            <value>
3435
            	<c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
3436
            </value>
3437
        </member>
3438
        <member name="T:Newtonsoft.Json.JsonTextReader">
3439
            <summary>
3440
            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
3441
            </summary>
3442
        </member>
3443
        <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
3444
            <summary>
3445
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
3446
            </summary>
3447
            <param name="reader">The <c>TextReader</c> containing the XML data to read.</param>
3448
        </member>
3449
        <member name="M:Newtonsoft.Json.JsonTextReader.Read">
3450
            <summary>
3451
            Reads the next JSON token from the stream.
3452
            </summary>
3453
            <returns>
3454
            true if the next token was read successfully; false if there are no more tokens to read.
3455
            </returns>
3456
        </member>
3457
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
3458
            <summary>
3459
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
3460
            </summary>
3461
            <returns>
3462
            A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
3463
            </returns>
3464
        </member>
3465
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
3466
            <summary>
3467
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3468
            </summary>
3469
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
3470
        </member>
3471
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
3472
            <summary>
3473
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3474
            </summary>
3475
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
3476
        </member>
3477
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
3478
            <summary>
3479
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
3480
            </summary>
3481
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3482
        </member>
3483
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
3484
            <summary>
3485
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3486
            </summary>
3487
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3488
        </member>
3489
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
3490
            <summary>
3491
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3492
            </summary>
3493
            <returns>A <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>
3494
        </member>
3495
        <member name="M:Newtonsoft.Json.JsonTextReader.Close">
3496
            <summary>
3497
            Changes the state to closed. 
3498
            </summary>
3499
        </member>
3500
        <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
3501
            <summary>
3502
            Gets a value indicating whether the class can return line information.
3503
            </summary>
3504
            <returns>
3505
            	<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
3506
            </returns>
3507
        </member>
3508
        <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
3509
            <summary>
3510
            Gets the current line number.
3511
            </summary>
3512
            <value>
3513
            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
3514
            </value>
3515
        </member>
3516
        <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
3517
            <summary>
3518
            Gets the current line position.
3519
            </summary>
3520
            <value>
3521
            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
3522
            </value>
3523
        </member>
3524
        <member name="T:Newtonsoft.Json.JsonTextWriter">
3525
            <summary>
3526
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
3527
            </summary>
3528
        </member>
3529
        <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
3530
            <summary>
3531
            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>. 
3532
            </summary>
3533
            <param name="textWriter">The <c>TextWriter</c> to write to.</param>
3534
        </member>
3535
        <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
3536
            <summary>
3537
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
3538
            </summary>
3539
        </member>
3540
        <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
3541
            <summary>
3542
            Closes this stream and the underlying stream.
3543
            </summary>
3544
        </member>
3545
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
3546
            <summary>
3547
            Writes the beginning of a Json object.
3548
            </summary>
3549
        </member>
3550
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
3551
            <summary>
3552
            Writes the beginning of a Json array.
3553
            </summary>
3554
        </member>
3555
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
3556
            <summary>
3557
            Writes the start of a constructor with the given name.
3558
            </summary>
3559
            <param name="name">The name of the constructor.</param>
3560
        </member>
3561
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
3562
            <summary>
3563
            Writes the specified end token.
3564
            </summary>
3565
            <param name="token">The end token to write.</param>
3566
        </member>
3567
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
3568
            <summary>
3569
            Writes the property name of a name/value pair on a Json object.
3570
            </summary>
3571
            <param name="name">The name of the property.</param>
3572
        </member>
3573
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">
3574
            <summary>
3575
            Writes the property name of a name/value pair on a JSON object.
3576
            </summary>
3577
            <param name="name">The name of the property.</param>
3578
            <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
3579
        </member>
3580
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
3581
            <summary>
3582
            Writes indent characters.
3583
            </summary>
3584
        </member>
3585
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
3586
            <summary>
3587
            Writes the JSON value delimiter.
3588
            </summary>
3589
        </member>
3590
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
3591
            <summary>
3592
            Writes an indent space.
3593
            </summary>
3594
        </member>
3595
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">
3596
            <summary>
3597
            Writes a <see cref="T:System.Object"/> value.
3598
            An error will raised if the value cannot be written as a single JSON token.
3599
            </summary>
3600
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
3601
        </member>
3602
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
3603
            <summary>
3604
            Writes a null value.
3605
            </summary>
3606
        </member>
3607
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
3608
            <summary>
3609
            Writes an undefined value.
3610
            </summary>
3611
        </member>
3612
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
3613
            <summary>
3614
            Writes raw JSON.
3615
            </summary>
3616
            <param name="json">The raw JSON to write.</param>
3617
        </member>
3618
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
3619
            <summary>
3620
            Writes a <see cref="T:System.String"/> value.
3621
            </summary>
3622
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
3623
        </member>
3624
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
3625
            <summary>
3626
            Writes a <see cref="T:System.Int32"/> value.
3627
            </summary>
3628
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
3629
        </member>
3630
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
3631
            <summary>
3632
            Writes a <see cref="T:System.UInt32"/> value.
3633
            </summary>
3634
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
3635
        </member>
3636
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
3637
            <summary>
3638
            Writes a <see cref="T:System.Int64"/> value.
3639
            </summary>
3640
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
3641
        </member>
3642
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
3643
            <summary>
3644
            Writes a <see cref="T:System.UInt64"/> value.
3645
            </summary>
3646
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
3647
        </member>
3648
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
3649
            <summary>
3650
            Writes a <see cref="T:System.Single"/> value.
3651
            </summary>
3652
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
3653
        </member>
3654
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
3655
            <summary>
3656
            Writes a <see cref="T:System.Nullable`1"/> value.
3657
            </summary>
3658
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
3659
        </member>
3660
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
3661
            <summary>
3662
            Writes a <see cref="T:System.Double"/> value.
3663
            </summary>
3664
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
3665
        </member>
3666
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
3667
            <summary>
3668
            Writes a <see cref="T:System.Nullable`1"/> value.
3669
            </summary>
3670
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
3671
        </member>
3672
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
3673
            <summary>
3674
            Writes a <see cref="T:System.Boolean"/> value.
3675
            </summary>
3676
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
3677
        </member>
3678
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
3679
            <summary>
3680
            Writes a <see cref="T:System.Int16"/> value.
3681
            </summary>
3682
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
3683
        </member>
3684
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
3685
            <summary>
3686
            Writes a <see cref="T:System.UInt16"/> value.
3687
            </summary>
3688
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
3689
        </member>
3690
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
3691
            <summary>
3692
            Writes a <see cref="T:System.Char"/> value.
3693
            </summary>
3694
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
3695
        </member>
3696
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
3697
            <summary>
3698
            Writes a <see cref="T:System.Byte"/> value.
3699
            </summary>
3700
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
3701
        </member>
3702
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
3703
            <summary>
3704
            Writes a <see cref="T:System.SByte"/> value.
3705
            </summary>
3706
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
3707
        </member>
3708
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
3709
            <summary>
3710
            Writes a <see cref="T:System.Decimal"/> value.
3711
            </summary>
3712
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
3713
        </member>
3714
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
3715
            <summary>
3716
            Writes a <see cref="T:System.DateTime"/> value.
3717
            </summary>
3718
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
3719
        </member>
3720
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
3721
            <summary>
3722
            Writes a <see cref="T:System.Byte"/>[] value.
3723
            </summary>
3724
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
3725
        </member>
3726
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
3727
            <summary>
3728
            Writes a <see cref="T:System.DateTimeOffset"/> value.
3729
            </summary>
3730
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
3731
        </member>
3732
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
3733
            <summary>
3734
            Writes a <see cref="T:System.Guid"/> value.
3735
            </summary>
3736
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
3737
        </member>
3738
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
3739
            <summary>
3740
            Writes a <see cref="T:System.TimeSpan"/> value.
3741
            </summary>
3742
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
3743
        </member>
3744
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
3745
            <summary>
3746
            Writes a <see cref="T:System.Uri"/> value.
3747
            </summary>
3748
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
3749
        </member>
3750
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
3751
            <summary>
3752
            Writes out a comment <code>/*...*/</code> containing the specified text. 
3753
            </summary>
3754
            <param name="text">Text to place inside the comment.</param>
3755
        </member>
3756
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
3757
            <summary>
3758
            Writes out the given white space.
3759
            </summary>
3760
            <param name="ws">The string of white space characters.</param>
3761
        </member>
3762
        <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
3763
            <summary>
3764
            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>.
3765
            </summary>
3766
        </member>
3767
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
3768
            <summary>
3769
            Gets or sets which character to use to quote attribute values.
3770
            </summary>
3771
        </member>
3772
        <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
3773
            <summary>
3774
            Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
3775
            </summary>
3776
        </member>
3777
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
3778
            <summary>
3779
            Gets or sets a value indicating whether object names will be surrounded with quotes.
3780
            </summary>
3781
        </member>
3782
        <member name="T:Newtonsoft.Json.JsonToken">
3783
            <summary>
3784
            Specifies the type of Json token.
3785
            </summary>
3786
        </member>
3787
        <member name="F:Newtonsoft.Json.JsonToken.None">
3788
            <summary>
3789
            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. 
3790
            </summary>
3791
        </member>
3792
        <member name="F:Newtonsoft.Json.JsonToken.StartObject">
3793
            <summary>
3794
            An object start token.
3795
            </summary>
3796
        </member>
3797
        <member name="F:Newtonsoft.Json.JsonToken.StartArray">
3798
            <summary>
3799
            An array start token.
3800
            </summary>
3801
        </member>
3802
        <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
3803
            <summary>
3804
            A constructor start token.
3805
            </summary>
3806
        </member>
3807
        <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
3808
            <summary>
3809
            An object property name.
3810
            </summary>
3811
        </member>
3812
        <member name="F:Newtonsoft.Json.JsonToken.Comment">
3813
            <summary>
3814
            A comment.
3815
            </summary>
3816
        </member>
3817
        <member name="F:Newtonsoft.Json.JsonToken.Raw">
3818
            <summary>
3819
            Raw JSON.
3820
            </summary>
3821
        </member>
3822
        <member name="F:Newtonsoft.Json.JsonToken.Integer">
3823
            <summary>
3824
            An integer.
3825
            </summary>
3826
        </member>
3827
        <member name="F:Newtonsoft.Json.JsonToken.Float">
3828
            <summary>
3829
            A float.
3830
            </summary>
3831
        </member>
3832
        <member name="F:Newtonsoft.Json.JsonToken.String">
3833
            <summary>
3834
            A string.
3835
            </summary>
3836
        </member>
3837
        <member name="F:Newtonsoft.Json.JsonToken.Boolean">
3838
            <summary>
3839
            A boolean.
3840
            </summary>
3841
        </member>
3842
        <member name="F:Newtonsoft.Json.JsonToken.Null">
3843
            <summary>
3844
            A null token.
3845
            </summary>
3846
        </member>
3847
        <member name="F:Newtonsoft.Json.JsonToken.Undefined">
3848
            <summary>
3849
            An undefined token.
3850
            </summary>
3851
        </member>
3852
        <member name="F:Newtonsoft.Json.JsonToken.EndObject">
3853
            <summary>
3854
            An object end token.
3855
            </summary>
3856
        </member>
3857
        <member name="F:Newtonsoft.Json.JsonToken.EndArray">
3858
            <summary>
3859
            An array end token.
3860
            </summary>
3861
        </member>
3862
        <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
3863
            <summary>
3864
            A constructor end token.
3865
            </summary>
3866
        </member>
3867
        <member name="F:Newtonsoft.Json.JsonToken.Date">
3868
            <summary>
3869
            A Date.
3870
            </summary>
3871
        </member>
3872
        <member name="F:Newtonsoft.Json.JsonToken.Bytes">
3873
            <summary>
3874
            Byte data.
3875
            </summary>
3876
        </member>
3877
        <member name="T:Newtonsoft.Json.JsonValidatingReader">
3878
            <summary>
3879
            Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
3880
            </summary>
3881
        </member>
3882
        <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
3883
            <summary>
3884
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
3885
            validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
3886
            </summary>
3887
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
3888
        </member>
3889
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
3890
            <summary>
3891
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3892
            </summary>
3893
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3894
        </member>
3895
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
3896
            <summary>
3897
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
3898
            </summary>
3899
            <returns>
3900
            A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null.
3901
            </returns>
3902
        </member>
3903
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
3904
            <summary>
3905
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3906
            </summary>
3907
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3908
        </member>
3909
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
3910
            <summary>
3911
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
3912
            </summary>
3913
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3914
        </member>
3915
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
3916
            <summary>
3917
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3918
            </summary>
3919
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3920
        </member>
3921
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
3922
            <summary>
3923
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3924
            </summary>
3925
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3926
        </member>
3927
        <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
3928
            <summary>
3929
            Reads the next JSON token from the stream.
3930
            </summary>
3931
            <returns>
3932
            true if the next token was read successfully; false if there are no more tokens to read.
3933
            </returns>
3934
        </member>
3935
        <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
3936
            <summary>
3937
            Sets an event handler for receiving schema validation errors.
3938
            </summary>
3939
        </member>
3940
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
3941
            <summary>
3942
            Gets the text value of the current JSON token.
3943
            </summary>
3944
            <value></value>
3945
        </member>
3946
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
3947
            <summary>
3948
            Gets the depth of the current token in the JSON document.
3949
            </summary>
3950
            <value>The depth of the current token in the JSON document.</value>
3951
        </member>
3952
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
3953
            <summary>
3954
            Gets the path of the current JSON token. 
3955
            </summary>
3956
        </member>
3957
        <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
3958
            <summary>
3959
            Gets the quotation mark character used to enclose the value of a string.
3960
            </summary>
3961
            <value></value>
3962
        </member>
3963
        <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
3964
            <summary>
3965
            Gets the type of the current JSON token.
3966
            </summary>
3967
            <value></value>
3968
        </member>
3969
        <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
3970
            <summary>
3971
            Gets the Common Language Runtime (CLR) type for the current JSON token.
3972
            </summary>
3973
            <value></value>
3974
        </member>
3975
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
3976
            <summary>
3977
            Gets or sets the schema.
3978
            </summary>
3979
            <value>The schema.</value>
3980
        </member>
3981
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
3982
            <summary>
3983
            Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
3984
            </summary>
3985
            <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
3986
        </member>
3987
        <member name="T:Newtonsoft.Json.JsonWriterException">
3988
            <summary>
3989
            The exception thrown when an error occurs while reading Json text.
3990
            </summary>
3991
        </member>
3992
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
3993
            <summary>
3994
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
3995
            </summary>
3996
        </member>
3997
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
3998
            <summary>
3999
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
4000
            with a specified error message.
4001
            </summary>
4002
            <param name="message">The error message that explains the reason for the exception.</param>
4003
        </member>
4004
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
4005
            <summary>
4006
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
4007
            with a specified error message and a reference to the inner exception that is the cause of this exception.
4008
            </summary>
4009
            <param name="message">The error message that explains the reason for the exception.</param>
4010
            <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>
4011
        </member>
4012
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
4013
            <summary>
4014
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
4015
            </summary>
4016
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4017
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4018
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
4019
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
4020
        </member>
4021
        <member name="P:Newtonsoft.Json.JsonWriterException.Path">
4022
            <summary>
4023
            Gets the path to the JSON where the error occurred.
4024
            </summary>
4025
            <value>The path to the JSON where the error occurred.</value>
4026
        </member>
4027
        <member name="T:Newtonsoft.Json.Linq.Extensions">
4028
            <summary>
4029
            Contains the LINQ to JSON extension methods.
4030
            </summary>
4031
        </member>
4032
        <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
4033
            <summary>
4034
            Returns a collection of tokens that contains the ancestors of every token in the source collection.
4035
            </summary>
4036
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
4037
            <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>
4038
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the ancestors of every token in the source collection.</returns>
4039
        </member>
4040
        <member name="M:Newtonsoft.Json.Linq.Extensions.AncestorsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
4041
            <summary>
4042
            Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection.
4043
            </summary>
4044
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
4045
            <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>
4046
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains every token in the source collection, the ancestors of every token in the source collection.</returns>
4047
        </member>
4048
        <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
4049
            <summary>
4050
            Returns a collection of tokens that contains the descendants of every token in the source collection.
4051
            </summary>
4052
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
4053
            <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>
4054
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the descendants of every token in the source collection.</returns>
4055
        </member>
4056
        <member name="M:Newtonsoft.Json.Linq.Extensions.DescendantsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
4057
            <summary>
4058
            Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection.
4059
            </summary>
4060
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
4061
            <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>
4062
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains every token in the source collection, and the descendants of every token in the source collection.</returns>
4063
        </member>
4064
        <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
4065
            <summary>
4066
            Returns a collection of child properties of every object in the source collection.
4067
            </summary>
4068
            <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>
4069
            <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>
4070
        </member>
4071
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
4072
            <summary>
4073
            Returns a collection of child values of every object in the source collection with the given key.
4074
            </summary>
4075
            <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>
4076
            <param name="key">The token key.</param>
4077
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every token in the source collection with the given key.</returns>
4078
        </member>
4079
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
4080
            <summary>
4081
            Returns a collection of child values of every object in the source collection.
4082
            </summary>
4083
            <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>
4084
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every token in the source collection.</returns>
4085
        </member>
4086
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
4087
            <summary>
4088
            Returns a collection of converted child values of every object in the source collection with the given key.
4089
            </summary>
4090
            <typeparam name="U">The type to convert the values to.</typeparam>
4091
            <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>
4092
            <param name="key">The token key.</param>
4093
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection with the given key.</returns>
4094
        </member>
4095
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
4096
            <summary>
4097
            Returns a collection of converted child values of every object in the source collection.
4098
            </summary>
4099
            <typeparam name="U">The type to convert the values to.</typeparam>
4100
            <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>
4101
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
4102
        </member>
4103
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
4104
            <summary>
4105
            Converts the value.
4106
            </summary>
4107
            <typeparam name="U">The type to convert the value to.</typeparam>
4108
            <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>
4109
            <returns>A converted value.</returns>
4110
        </member>
4111
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
4112
            <summary>
4113
            Converts the value.
4114
            </summary>
4115
            <typeparam name="T">The source collection type.</typeparam>
4116
            <typeparam name="U">The type to convert the value to.</typeparam>
4117
            <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>
4118
            <returns>A converted value.</returns>
4119
        </member>
4120
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
4121
            <summary>
4122
            Returns a collection of child tokens of every array in the source collection.
4123
            </summary>
4124
            <typeparam name="T">The source collection type.</typeparam>
4125
            <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>
4126
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every token in the source collection.</returns>
4127
        </member>
4128
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
4129
            <summary>
4130
            Returns a collection of converted child tokens of every array in the source collection.
4131
            </summary>
4132
            <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>
4133
            <typeparam name="U">The type to convert the values to.</typeparam>
4134
            <typeparam name="T">The source collection type.</typeparam>
4135
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
4136
        </member>
4137
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
4138
            <summary>
4139
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
4140
            </summary>
4141
            <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>
4142
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
4143
        </member>
4144
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
4145
            <summary>
4146
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
4147
            </summary>
4148
            <typeparam name="T">The source collection type.</typeparam>
4149
            <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>
4150
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
4151
        </member>
4152
        <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
4153
            <summary>
4154
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
4155
            </summary>
4156
            <typeparam name="T">The type of token</typeparam>
4157
        </member>
4158
        <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
4159
            <summary>
4160
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
4161
            </summary>
4162
            <value></value>
4163
        </member>
4164
        <member name="T:Newtonsoft.Json.Linq.JArray">
4165
            <summary>
4166
            Represents a JSON array.
4167
            </summary>
4168
            <example>
4169
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
4170
            </example>
4171
        </member>
4172
        <member name="T:Newtonsoft.Json.Linq.JContainer">
4173
            <summary>
4174
            Represents a token that can contain other tokens.
4175
            </summary>
4176
        </member>
4177
        <member name="T:Newtonsoft.Json.Linq.JToken">
4178
            <summary>
4179
            Represents an abstract JSON token.
4180
            </summary>
4181
        </member>
4182
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
4183
            <summary>
4184
            Compares the values of two tokens, including the values of all descendant tokens.
4185
            </summary>
4186
            <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
4187
            <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
4188
            <returns>true if the tokens are equal; otherwise false.</returns>
4189
        </member>
4190
        <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
4191
            <summary>
4192
            Adds the specified content immediately after this token.
4193
            </summary>
4194
            <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
4195
        </member>
4196
        <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
4197
            <summary>
4198
            Adds the specified content immediately before this token.
4199
            </summary>
4200
            <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
4201
        </member>
4202
        <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
4203
            <summary>
4204
            Returns a collection of the ancestor tokens of this token.
4205
            </summary>
4206
            <returns>A collection of the ancestor tokens of this token.</returns>
4207
        </member>
4208
        <member name="M:Newtonsoft.Json.Linq.JToken.AncestorsAndSelf">
4209
            <summary>
4210
            Returns a collection of tokens that contain this token, and the ancestors of this token.
4211
            </summary>
4212
            <returns>A collection of tokens that contain this token, and the ancestors of this token.</returns>
4213
        </member>
4214
        <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
4215
            <summary>
4216
            Returns a collection of the sibling tokens after this token, in document order.
4217
            </summary>
4218
            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
4219
        </member>
4220
        <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
4221
            <summary>
4222
            Returns a collection of the sibling tokens before this token, in document order.
4223
            </summary>
4224
            <returns>A collection of the sibling tokens before this token, in document order.</returns>
4225
        </member>
4226
        <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
4227
            <summary>
4228
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
4229
            </summary>
4230
            <typeparam name="T">The type to convert the token to.</typeparam>
4231
            <param name="key">The token key.</param>
4232
            <returns>The converted token value.</returns>
4233
        </member>
4234
        <member name="M:Newtonsoft.Json.Linq.JToken.Children">
4235
            <summary>
4236
            Returns a collection of the child tokens of this token, in document order.
4237
            </summary>
4238
            <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>
4239
        </member>
4240
        <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
4241
            <summary>
4242
            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
4243
            </summary>
4244
            <typeparam name="T">The type to filter the child tokens on.</typeparam>
4245
            <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>
4246
        </member>
4247
        <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
4248
            <summary>
4249
            Returns a collection of the child values of this token, in document order.
4250
            </summary>
4251
            <typeparam name="T">The type to convert the values to.</typeparam>
4252
            <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>
4253
        </member>
4254
        <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
4255
            <summary>
4256
            Removes this token from its parent.
4257
            </summary>
4258
        </member>
4259
        <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
4260
            <summary>
4261
            Replaces this token with the specified token.
4262
            </summary>
4263
            <param name="value">The value.</param>
4264
        </member>
4265
        <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
4266
            <summary>
4267
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
4268
            </summary>
4269
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
4270
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
4271
        </member>
4272
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
4273
            <summary>
4274
            Returns the indented JSON for this token.
4275
            </summary>
4276
            <returns>
4277
            The indented JSON for this token.
4278
            </returns>
4279
        </member>
4280
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
4281
            <summary>
4282
            Returns the JSON for this token using the given formatting and converters.
4283
            </summary>
4284
            <param name="formatting">Indicates how the output is formatted.</param>
4285
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
4286
            <returns>The JSON for this token using the given formatting and converters.</returns>
4287
        </member>
4288
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
4289
            <summary>
4290
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
4291
            </summary>
4292
            <param name="value">The value.</param>
4293
            <returns>The result of the conversion.</returns>
4294
        </member>
4295
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
4296
            <summary>
4297
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>.
4298
            </summary>
4299
            <param name="value">The value.</param>
4300
            <returns>The result of the conversion.</returns>
4301
        </member>
4302
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
4303
            <summary>
4304
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
4305
            </summary>
4306
            <param name="value">The value.</param>
4307
            <returns>The result of the conversion.</returns>
4308
        </member>
4309
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
4310
            <summary>
4311
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>.
4312
            </summary>
4313
            <param name="value">The value.</param>
4314
            <returns>The result of the conversion.</returns>
4315
        </member>
4316
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
4317
            <summary>
4318
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
4319
            </summary>
4320
            <param name="value">The value.</param>
4321
            <returns>The result of the conversion.</returns>
4322
        </member>
4323
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">
4324
            <summary>
4325
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
4326
            </summary>
4327
            <param name="value">The value.</param>
4328
            <returns>The result of the conversion.</returns>
4329
        </member>
4330
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
4331
            <summary>
4332
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
4333
            </summary>
4334
            <param name="value">The value.</param>
4335
            <returns>The result of the conversion.</returns>
4336
        </member>
4337
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
4338
            <summary>
4339
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
4340
            </summary>
4341
            <param name="value">The value.</param>
4342
            <returns>The result of the conversion.</returns>
4343
        </member>
4344
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
4345
            <summary>
4346
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
4347
            </summary>
4348
            <param name="value">The value.</param>
4349
            <returns>The result of the conversion.</returns>
4350
        </member>
4351
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
4352
            <summary>
4353
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
4354
            </summary>
4355
            <param name="value">The value.</param>
4356
            <returns>The result of the conversion.</returns>
4357
        </member>
4358
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
4359
            <summary>
4360
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
4361
            </summary>
4362
            <param name="value">The value.</param>
4363
            <returns>The result of the conversion.</returns>
4364
        </member>
4365
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
4366
            <summary>
4367
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
4368
            </summary>
4369
            <param name="value">The value.</param>
4370
            <returns>The result of the conversion.</returns>
4371
        </member>
4372
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
4373
            <summary>
4374
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.
4375
            </summary>
4376
            <param name="value">The value.</param>
4377
            <returns>The result of the conversion.</returns>
4378
        </member>
4379
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
4380
            <summary>
4381
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.
4382
            </summary>
4383
            <param name="value">The value.</param>
4384
            <returns>The result of the conversion.</returns>
4385
        </member>
4386
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">
4387
            <summary>
4388
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.
4389
            </summary>
4390
            <param name="value">The value.</param>
4391
            <returns>The result of the conversion.</returns>
4392
        </member>
4393
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
4394
            <summary>
4395
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
4396
            </summary>
4397
            <param name="value">The value.</param>
4398
            <returns>The result of the conversion.</returns>
4399
        </member>
4400
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
4401
            <summary>
4402
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
4403
            </summary>
4404
            <param name="value">The value.</param>
4405
            <returns>The result of the conversion.</returns>
4406
        </member>
4407
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
4408
            <summary>
4409
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
4410
            </summary>
4411
            <param name="value">The value.</param>
4412
            <returns>The result of the conversion.</returns>
4413
        </member>
4414
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
4415
            <summary>
4416
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
4417
            </summary>
4418
            <param name="value">The value.</param>
4419
            <returns>The result of the conversion.</returns>
4420
        </member>
4421
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">
4422
            <summary>
4423
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
4424
            </summary>
4425
            <param name="value">The value.</param>
4426
            <returns>The result of the conversion.</returns>
4427
        </member>
4428
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
4429
            <summary>
4430
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>.
4431
            </summary>
4432
            <param name="value">The value.</param>
4433
            <returns>The result of the conversion.</returns>
4434
        </member>
4435
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
4436
            <summary>
4437
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
4438
            </summary>
4439
            <param name="value">The value.</param>
4440
            <returns>The result of the conversion.</returns>
4441
        </member>
4442
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
4443
            <summary>
4444
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
4445
            </summary>
4446
            <param name="value">The value.</param>
4447
            <returns>The result of the conversion.</returns>
4448
        </member>
4449
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
4450
            <summary>
4451
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
4452
            </summary>
4453
            <param name="value">The value.</param>
4454
            <returns>The result of the conversion.</returns>
4455
        </member>
4456
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
4457
            <summary>
4458
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
4459
            </summary>
4460
            <param name="value">The value.</param>
4461
            <returns>The result of the conversion.</returns>
4462
        </member>
4463
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
4464
            <summary>
4465
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
4466
            </summary>
4467
            <param name="value">The value.</param>
4468
            <returns>The result of the conversion.</returns>
4469
        </member>
4470
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
4471
            <summary>
4472
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
4473
            </summary>
4474
            <param name="value">The value.</param>
4475
            <returns>The result of the conversion.</returns>
4476
        </member>
4477
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
4478
            <summary>
4479
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
4480
            </summary>
4481
            <param name="value">The value.</param>
4482
            <returns>The result of the conversion.</returns>
4483
        </member>
4484
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
4485
            <summary>
4486
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
4487
            </summary>
4488
            <param name="value">The value.</param>
4489
            <returns>The result of the conversion.</returns>
4490
        </member>
4491
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
4492
            <summary>
4493
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
4494
            </summary>
4495
            <param name="value">The value.</param>
4496
            <returns>The result of the conversion.</returns>
4497
        </member>
4498
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
4499
            <summary>
4500
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
4501
            </summary>
4502
            <param name="value">The value.</param>
4503
            <returns>The result of the conversion.</returns>
4504
        </member>
4505
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
4506
            <summary>
4507
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>[].
4508
            </summary>
4509
            <param name="value">The value.</param>
4510
            <returns>The result of the conversion.</returns>
4511
        </member>
4512
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
4513
            <summary>
4514
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
4515
            </summary>
4516
            <param name="value">The value.</param>
4517
            <returns>The result of the conversion.</returns>
4518
        </member>
4519
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
4520
            <summary>
4521
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
4522
            </summary>
4523
            <param name="value">The value.</param>
4524
            <returns>The result of the conversion.</returns>
4525
        </member>
4526
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
4527
            <summary>
4528
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
4529
            </summary>
4530
            <param name="value">The value.</param>
4531
            <returns>The result of the conversion.</returns>
4532
        </member>
4533
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
4534
            <summary>
4535
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
4536
            </summary>
4537
            <param name="value">The value.</param>
4538
            <returns>The result of the conversion.</returns>
4539
        </member>
4540
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
4541
            <summary>
4542
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.
4543
            </summary>
4544
            <param name="value">The value.</param>
4545
            <returns>The result of the conversion.</returns>
4546
        </member>
4547
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
4548
            <summary>
4549
            Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4550
            </summary>
4551
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4552
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4553
        </member>
4554
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">
4555
            <summary>
4556
            Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4557
            </summary>
4558
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4559
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4560
        </member>
4561
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">
4562
            <summary>
4563
            Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4564
            </summary>
4565
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4566
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4567
        </member>
4568
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">
4569
            <summary>
4570
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4571
            </summary>
4572
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4573
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4574
        </member>
4575
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">
4576
            <summary>
4577
            Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4578
            </summary>
4579
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4580
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4581
        </member>
4582
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">
4583
            <summary>
4584
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4585
            </summary>
4586
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4587
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4588
        </member>
4589
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
4590
            <summary>
4591
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4592
            </summary>
4593
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4594
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4595
        </member>
4596
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
4597
            <summary>
4598
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4599
            </summary>
4600
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4601
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4602
        </member>
4603
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
4604
            <summary>
4605
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4606
            </summary>
4607
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4608
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4609
        </member>
4610
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">
4611
            <summary>
4612
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4613
            </summary>
4614
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4615
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4616
        </member>
4617
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
4618
            <summary>
4619
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4620
            </summary>
4621
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4622
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4623
        </member>
4624
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
4625
            <summary>
4626
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4627
            </summary>
4628
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4629
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4630
        </member>
4631
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
4632
            <summary>
4633
            Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4634
            </summary>
4635
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4636
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4637
        </member>
4638
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
4639
            <summary>
4640
            Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4641
            </summary>
4642
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4643
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4644
        </member>
4645
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
4646
            <summary>
4647
            Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4648
            </summary>
4649
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4650
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4651
        </member>
4652
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
4653
            <summary>
4654
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4655
            </summary>
4656
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4657
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4658
        </member>
4659
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
4660
            <summary>
4661
            Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4662
            </summary>
4663
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4664
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4665
        </member>
4666
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
4667
            <summary>
4668
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4669
            </summary>
4670
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4671
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4672
        </member>
4673
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
4674
            <summary>
4675
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4676
            </summary>
4677
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4678
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4679
        </member>
4680
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
4681
            <summary>
4682
            Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4683
            </summary>
4684
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4685
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4686
        </member>
4687
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
4688
            <summary>
4689
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4690
            </summary>
4691
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4692
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4693
        </member>
4694
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
4695
            <summary>
4696
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4697
            </summary>
4698
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4699
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4700
        </member>
4701
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
4702
            <summary>
4703
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4704
            </summary>
4705
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4706
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4707
        </member>
4708
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
4709
            <summary>
4710
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4711
            </summary>
4712
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4713
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4714
        </member>
4715
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
4716
            <summary>
4717
            Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4718
            </summary>
4719
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4720
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4721
        </member>
4722
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
4723
            <summary>
4724
            Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4725
            </summary>
4726
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4727
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4728
        </member>
4729
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
4730
            <summary>
4731
            Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4732
            </summary>
4733
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4734
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4735
        </member>
4736
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
4737
            <summary>
4738
            Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4739
            </summary>
4740
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4741
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4742
        </member>
4743
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
4744
            <summary>
4745
            Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4746
            </summary>
4747
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4748
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4749
        </member>
4750
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
4751
            <summary>
4752
            Performs an implicit conversion from <see cref="T:System.Byte"/>[] to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4753
            </summary>
4754
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4755
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4756
        </member>
4757
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
4758
            <summary>
4759
            Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4760
            </summary>
4761
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4762
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4763
        </member>
4764
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
4765
            <summary>
4766
            Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4767
            </summary>
4768
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4769
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4770
        </member>
4771
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
4772
            <summary>
4773
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4774
            </summary>
4775
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4776
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4777
        </member>
4778
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
4779
            <summary>
4780
            Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4781
            </summary>
4782
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4783
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4784
        </member>
4785
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
4786
            <summary>
4787
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4788
            </summary>
4789
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
4790
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
4791
        </member>
4792
        <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
4793
            <summary>
4794
            Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
4795
            </summary>
4796
            <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
4797
        </member>
4798
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
4799
            <summary>
4800
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
4801
            </summary>
4802
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
4803
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
4804
        </member>
4805
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
4806
            <summary>
4807
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4808
            </summary>
4809
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
4810
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
4811
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
4812
        </member>
4813
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
4814
            <summary>
4815
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4816
            </summary>
4817
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
4818
            <returns>The new object created from the JSON value.</returns>
4819
        </member>
4820
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
4821
            <summary>
4822
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4823
            </summary>
4824
            <param name="objectType">The object type that the token will be deserialized to.</param>
4825
            <returns>The new object created from the JSON value.</returns>
4826
        </member>
4827
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
4828
            <summary>
4829
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4830
            </summary>
4831
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
4832
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
4833
            <returns>The new object created from the JSON value.</returns>
4834
        </member>
4835
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
4836
            <summary>
4837
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4838
            </summary>
4839
            <param name="objectType">The object type that the token will be deserialized to.</param>
4840
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
4841
            <returns>The new object created from the JSON value.</returns>
4842
        </member>
4843
        <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
4844
            <summary>
4845
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
4846
            </summary>
4847
            <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>
4848
            <returns>
4849
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
4850
            that were read from the reader. The runtime type of the token is determined
4851
            by the token type of the first token encountered in the reader.
4852
            </returns>
4853
        </member>
4854
        <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
4855
            <summary>
4856
            Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
4857
            </summary>
4858
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
4859
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
4860
        </member>
4861
        <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
4862
            <summary>
4863
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
4864
            </summary>
4865
            <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>
4866
            <returns>
4867
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
4868
            that were read from the reader. The runtime type of the token is determined
4869
            by the token type of the first token encountered in the reader.
4870
            </returns>
4871
        </member>
4872
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
4873
            <summary>
4874
            Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
4875
            </summary>
4876
            <param name="path">
4877
            A <see cref="T:System.String"/> that contains a JPath expression.
4878
            </param>
4879
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or null.</returns>
4880
        </member>
4881
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
4882
            <summary>
4883
            Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
4884
            </summary>
4885
            <param name="path">
4886
            A <see cref="T:System.String"/> that contains a JPath expression.
4887
            </param>
4888
            <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.</param>
4889
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
4890
        </member>
4891
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
4892
            <summary>
4893
            Selects a collection of elements using a JPath expression.
4894
            </summary>
4895
            <param name="path">
4896
            A <see cref="T:System.String"/> that contains a JPath expression.
4897
            </param>
4898
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
4899
        </member>
4900
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">
4901
            <summary>
4902
            Selects a collection of elements using a JPath expression.
4903
            </summary>
4904
            <param name="path">
4905
            A <see cref="T:System.String"/> that contains a JPath expression.
4906
            </param>
4907
            <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.</param>
4908
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
4909
        </member>
4910
        <member name="M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)">
4911
            <summary>
4912
            Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
4913
            </summary>
4914
            <param name="parameter">The expression tree representation of the runtime value.</param>
4915
            <returns>
4916
            The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
4917
            </returns>
4918
        </member>
4919
        <member name="M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)">
4920
            <summary>
4921
            Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
4922
            </summary>
4923
            <param name="parameter">The expression tree representation of the runtime value.</param>
4924
            <returns>
4925
            The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
4926
            </returns>
4927
        </member>
4928
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
4929
            <summary>
4930
            Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
4931
            </summary>
4932
            <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
4933
        </member>
4934
        <member name="M:Newtonsoft.Json.Linq.JToken.AddAnnotation(System.Object)">
4935
            <summary>
4936
            Adds an object to the annotation list of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4937
            </summary>
4938
            <param name="annotation">The annotation to add.</param>
4939
        </member>
4940
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotation``1">
4941
            <summary>
4942
            Get the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4943
            </summary>
4944
            <typeparam name="T">The type of the annotation to retrieve.</typeparam>
4945
            <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
4946
        </member>
4947
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotation(System.Type)">
4948
            <summary>
4949
            Gets the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4950
            </summary>
4951
            <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotation to retrieve.</param>
4952
            <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
4953
        </member>
4954
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotations``1">
4955
            <summary>
4956
            Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4957
            </summary>
4958
            <typeparam name="T">The type of the annotations to retrieve.</typeparam>
4959
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/>  that contains the annotations for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
4960
        </member>
4961
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotations(System.Type)">
4962
            <summary>
4963
            Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4964
            </summary>
4965
            <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotations to retrieve.</param>
4966
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:System.Object"/> that contains the annotations that match the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
4967
        </member>
4968
        <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations``1">
4969
            <summary>
4970
            Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4971
            </summary>
4972
            <typeparam name="T">The type of annotations to remove.</typeparam>
4973
        </member>
4974
        <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations(System.Type)">
4975
            <summary>
4976
            Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4977
            </summary>
4978
            <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of annotations to remove.</param>
4979
        </member>
4980
        <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
4981
            <summary>
4982
            Gets a comparer that can compare two tokens for value equality.
4983
            </summary>
4984
            <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
4985
        </member>
4986
        <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
4987
            <summary>
4988
            Gets or sets the parent.
4989
            </summary>
4990
            <value>The parent.</value>
4991
        </member>
4992
        <member name="P:Newtonsoft.Json.Linq.JToken.Root">
4993
            <summary>
4994
            Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4995
            </summary>
4996
            <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
4997
        </member>
4998
        <member name="P:Newtonsoft.Json.Linq.JToken.Type">
4999
            <summary>
5000
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5001
            </summary>
5002
            <value>The type.</value>
5003
        </member>
5004
        <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
5005
            <summary>
5006
            Gets a value indicating whether this token has child tokens.
5007
            </summary>
5008
            <value>
5009
            	<c>true</c> if this token has child values; otherwise, <c>false</c>.
5010
            </value>
5011
        </member>
5012
        <member name="P:Newtonsoft.Json.Linq.JToken.Next">
5013
            <summary>
5014
            Gets the next sibling token of this node.
5015
            </summary>
5016
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
5017
        </member>
5018
        <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
5019
            <summary>
5020
            Gets the previous sibling token of this node.
5021
            </summary>
5022
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
5023
        </member>
5024
        <member name="P:Newtonsoft.Json.Linq.JToken.Path">
5025
            <summary>
5026
            Gets the path of the JSON token. 
5027
            </summary>
5028
        </member>
5029
        <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
5030
            <summary>
5031
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5032
            </summary>
5033
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
5034
        </member>
5035
        <member name="P:Newtonsoft.Json.Linq.JToken.First">
5036
            <summary>
5037
            Get the first child token of this token.
5038
            </summary>
5039
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
5040
        </member>
5041
        <member name="P:Newtonsoft.Json.Linq.JToken.Last">
5042
            <summary>
5043
            Get the last child token of this token.
5044
            </summary>
5045
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
5046
        </member>
5047
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
5048
            <summary>
5049
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
5050
            </summary>
5051
            <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
5052
        </member>
5053
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
5054
            <summary>
5055
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
5056
            </summary>
5057
            <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
5058
        </member>
5059
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
5060
            <summary>
5061
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged"/> event.
5062
            </summary>
5063
            <param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> instance containing the event data.</param>
5064
        </member>
5065
        <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
5066
            <summary>
5067
            Returns a collection of the child tokens of this token, in document order.
5068
            </summary>
5069
            <returns>
5070
            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.
5071
            </returns>
5072
        </member>
5073
        <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
5074
            <summary>
5075
            Returns a collection of the child values of this token, in document order.
5076
            </summary>
5077
            <typeparam name="T">The type to convert the values to.</typeparam>
5078
            <returns>
5079
            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.
5080
            </returns>
5081
        </member>
5082
        <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
5083
            <summary>
5084
            Returns a collection of the descendant tokens for this token in document order.
5085
            </summary>
5086
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
5087
        </member>
5088
        <member name="M:Newtonsoft.Json.Linq.JContainer.DescendantsAndSelf">
5089
            <summary>
5090
            Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
5091
            </summary>
5092
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing this token, and all the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
5093
        </member>
5094
        <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
5095
            <summary>
5096
            Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5097
            </summary>
5098
            <param name="content">The content to be added.</param>
5099
        </member>
5100
        <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
5101
            <summary>
5102
            Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5103
            </summary>
5104
            <param name="content">The content to be added.</param>
5105
        </member>
5106
        <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
5107
            <summary>
5108
            Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5109
            </summary>
5110
            <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
5111
        </member>
5112
        <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
5113
            <summary>
5114
            Replaces the children nodes of this token with the specified content.
5115
            </summary>
5116
            <param name="content">The content.</param>
5117
        </member>
5118
        <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
5119
            <summary>
5120
            Removes the child nodes from this token.
5121
            </summary>
5122
        </member>
5123
        <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">
5124
            <summary>
5125
            Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5126
            </summary>
5127
            <param name="content">The content to be merged.</param>
5128
        </member>
5129
        <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">
5130
            <summary>
5131
            Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.
5132
            </summary>
5133
            <param name="content">The content to be merged.</param>
5134
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>
5135
        </member>
5136
        <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
5137
            <summary>
5138
            Occurs when the list changes or an item in the list changes.
5139
            </summary>
5140
        </member>
5141
        <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
5142
            <summary>
5143
            Occurs before an item is added to the collection.
5144
            </summary>
5145
        </member>
5146
        <member name="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged">
5147
            <summary>
5148
            Occurs when the items list of the collection has changed, or the collection is reset.
5149
            </summary>
5150
        </member>
5151
        <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
5152
            <summary>
5153
            Gets the container's children tokens.
5154
            </summary>
5155
            <value>The container's children tokens.</value>
5156
        </member>
5157
        <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
5158
            <summary>
5159
            Gets a value indicating whether this token has child tokens.
5160
            </summary>
5161
            <value>
5162
            	<c>true</c> if this token has child values; otherwise, <c>false</c>.
5163
            </value>
5164
        </member>
5165
        <member name="P:Newtonsoft.Json.Linq.JContainer.First">
5166
            <summary>
5167
            Get the first child token of this token.
5168
            </summary>
5169
            <value>
5170
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5171
            </value>
5172
        </member>
5173
        <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
5174
            <summary>
5175
            Get the last child token of this token.
5176
            </summary>
5177
            <value>
5178
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5179
            </value>
5180
        </member>
5181
        <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
5182
            <summary>
5183
            Gets the count of child JSON tokens.
5184
            </summary>
5185
            <value>The count of child JSON tokens</value>
5186
        </member>
5187
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
5188
            <summary>
5189
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
5190
            </summary>
5191
        </member>
5192
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
5193
            <summary>
5194
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
5195
            </summary>
5196
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
5197
        </member>
5198
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
5199
            <summary>
5200
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
5201
            </summary>
5202
            <param name="content">The contents of the array.</param>
5203
        </member>
5204
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
5205
            <summary>
5206
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
5207
            </summary>
5208
            <param name="content">The contents of the array.</param>
5209
        </member>
5210
        <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
5211
            <summary>
5212
            Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5213
            </summary>
5214
            <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>
5215
            <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>
5216
        </member>
5217
        <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
5218
            <summary>
5219
            Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
5220
            </summary>
5221
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
5222
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
5223
            <example>
5224
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text"/>
5225
            </example>
5226
        </member>
5227
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
5228
            <summary>
5229
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
5230
            </summary>
5231
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
5232
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
5233
        </member>
5234
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
5235
            <summary>
5236
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
5237
            </summary>
5238
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
5239
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
5240
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
5241
        </member>
5242
        <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5243
            <summary>
5244
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5245
            </summary>
5246
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5247
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5248
        </member>
5249
        <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
5250
            <summary>
5251
            Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
5252
            </summary>
5253
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
5254
            <returns>
5255
            The index of <paramref name="item"/> if found in the list; otherwise, -1.
5256
            </returns>
5257
        </member>
5258
        <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
5259
            <summary>
5260
            Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.
5261
            </summary>
5262
            <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
5263
            <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
5264
            <exception cref="T:System.ArgumentOutOfRangeException">
5265
            	<paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
5266
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
5267
        </member>
5268
        <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
5269
            <summary>
5270
            Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
5271
            </summary>
5272
            <param name="index">The zero-based index of the item to remove.</param>
5273
            <exception cref="T:System.ArgumentOutOfRangeException">
5274
            	<paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
5275
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
5276
        </member>
5277
        <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">
5278
            <summary>
5279
            Returns an enumerator that iterates through the collection.
5280
            </summary>
5281
            <returns>
5282
            A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.
5283
            </returns>
5284
        </member>
5285
        <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
5286
            <summary>
5287
            Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
5288
            </summary>
5289
            <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
5290
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
5291
        </member>
5292
        <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
5293
            <summary>
5294
            Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
5295
            </summary>
5296
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
5297
        </member>
5298
        <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
5299
            <summary>
5300
            Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
5301
            </summary>
5302
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
5303
            <returns>
5304
            true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
5305
            </returns>
5306
        </member>
5307
        <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
5308
            <summary>
5309
            Copies to.
5310
            </summary>
5311
            <param name="array">The array.</param>
5312
            <param name="arrayIndex">Index of the array.</param>
5313
        </member>
5314
        <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
5315
            <summary>
5316
            Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
5317
            </summary>
5318
            <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
5319
            <returns>
5320
            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"/>.
5321
            </returns>
5322
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
5323
        </member>
5324
        <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
5325
            <summary>
5326
            Gets the container's children tokens.
5327
            </summary>
5328
            <value>The container's children tokens.</value>
5329
        </member>
5330
        <member name="P:Newtonsoft.Json.Linq.JArray.Type">
5331
            <summary>
5332
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5333
            </summary>
5334
            <value>The type.</value>
5335
        </member>
5336
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
5337
            <summary>
5338
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5339
            </summary>
5340
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
5341
        </member>
5342
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
5343
            <summary>
5344
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
5345
            </summary>
5346
            <value></value>
5347
        </member>
5348
        <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
5349
            <summary>
5350
            Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.
5351
            </summary>
5352
            <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</returns>
5353
        </member>
5354
        <member name="T:Newtonsoft.Json.Linq.JConstructor">
5355
            <summary>
5356
            Represents a JSON constructor.
5357
            </summary>
5358
        </member>
5359
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
5360
            <summary>
5361
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
5362
            </summary>
5363
        </member>
5364
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
5365
            <summary>
5366
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
5367
            </summary>
5368
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
5369
        </member>
5370
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
5371
            <summary>
5372
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
5373
            </summary>
5374
            <param name="name">The constructor name.</param>
5375
            <param name="content">The contents of the constructor.</param>
5376
        </member>
5377
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
5378
            <summary>
5379
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
5380
            </summary>
5381
            <param name="name">The constructor name.</param>
5382
            <param name="content">The contents of the constructor.</param>
5383
        </member>
5384
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
5385
            <summary>
5386
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
5387
            </summary>
5388
            <param name="name">The constructor name.</param>
5389
        </member>
5390
        <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5391
            <summary>
5392
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5393
            </summary>
5394
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5395
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5396
        </member>
5397
        <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
5398
            <summary>
5399
            Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5400
            </summary>
5401
            <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>
5402
            <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>
5403
        </member>
5404
        <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
5405
            <summary>
5406
            Gets the container's children tokens.
5407
            </summary>
5408
            <value>The container's children tokens.</value>
5409
        </member>
5410
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
5411
            <summary>
5412
            Gets or sets the name of this constructor.
5413
            </summary>
5414
            <value>The constructor name.</value>
5415
        </member>
5416
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
5417
            <summary>
5418
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5419
            </summary>
5420
            <value>The type.</value>
5421
        </member>
5422
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
5423
            <summary>
5424
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5425
            </summary>
5426
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
5427
        </member>
5428
        <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
5429
            <summary>
5430
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
5431
            </summary>
5432
            <typeparam name="T">The type of token</typeparam>
5433
        </member>
5434
        <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
5435
            <summary>
5436
            An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
5437
            </summary>
5438
        </member>
5439
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
5440
            <summary>
5441
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
5442
            </summary>
5443
            <param name="enumerable">The enumerable.</param>
5444
        </member>
5445
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
5446
            <summary>
5447
            Returns an enumerator that iterates through the collection.
5448
            </summary>
5449
            <returns>
5450
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
5451
            </returns>
5452
        </member>
5453
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator">
5454
            <summary>
5455
            Returns an enumerator that iterates through a collection.
5456
            </summary>
5457
            <returns>
5458
            An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
5459
            </returns>
5460
        </member>
5461
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(Newtonsoft.Json.Linq.JEnumerable{`0})">
5462
            <summary>
5463
            Determines whether the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance.
5464
            </summary>
5465
            <param name="other">The <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> to compare with this instance.</param>
5466
            <returns>
5467
            	<c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance; otherwise, <c>false</c>.
5468
            </returns>
5469
        </member>
5470
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
5471
            <summary>
5472
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
5473
            </summary>
5474
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
5475
            <returns>
5476
            	<c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
5477
            </returns>
5478
        </member>
5479
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
5480
            <summary>
5481
            Returns a hash code for this instance.
5482
            </summary>
5483
            <returns>
5484
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
5485
            </returns>
5486
        </member>
5487
        <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
5488
            <summary>
5489
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
5490
            </summary>
5491
            <value></value>
5492
        </member>
5493
        <member name="T:Newtonsoft.Json.Linq.JObject">
5494
            <summary>
5495
            Represents a JSON object.
5496
            </summary>
5497
            <example>
5498
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
5499
            </example>
5500
        </member>
5501
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
5502
            <summary>
5503
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
5504
            </summary>
5505
        </member>
5506
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
5507
            <summary>
5508
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
5509
            </summary>
5510
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
5511
        </member>
5512
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
5513
            <summary>
5514
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
5515
            </summary>
5516
            <param name="content">The contents of the object.</param>
5517
        </member>
5518
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
5519
            <summary>
5520
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
5521
            </summary>
5522
            <param name="content">The contents of the object.</param>
5523
        </member>
5524
        <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
5525
            <summary>
5526
            Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.
5527
            </summary>
5528
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns>
5529
        </member>
5530
        <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
5531
            <summary>
5532
            Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
5533
            </summary>
5534
            <param name="name">The property name.</param>
5535
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns>
5536
        </member>
5537
        <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
5538
            <summary>
5539
            Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.
5540
            </summary>
5541
            <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns>
5542
        </member>
5543
        <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
5544
            <summary>
5545
            Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5546
            </summary>
5547
            <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>
5548
            <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>
5549
        </member>
5550
        <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
5551
            <summary>
5552
            Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
5553
            </summary>
5554
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
5555
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
5556
            <example>
5557
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text"/>
5558
            </example>
5559
        </member>
5560
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
5561
            <summary>
5562
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
5563
            </summary>
5564
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
5565
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
5566
        </member>
5567
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
5568
            <summary>
5569
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
5570
            </summary>
5571
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
5572
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
5573
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
5574
        </member>
5575
        <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5576
            <summary>
5577
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5578
            </summary>
5579
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5580
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5581
        </member>
5582
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
5583
            <summary>
5584
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
5585
            </summary>
5586
            <param name="propertyName">Name of the property.</param>
5587
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
5588
        </member>
5589
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
5590
            <summary>
5591
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
5592
            The exact property name will be searched for first and if no matching property is found then
5593
            the <see cref="T:System.StringComparison"/> will be used to match a property.
5594
            </summary>
5595
            <param name="propertyName">Name of the property.</param>
5596
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
5597
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
5598
        </member>
5599
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
5600
            <summary>
5601
            Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
5602
            The exact property name will be searched for first and if no matching property is found then
5603
            the <see cref="T:System.StringComparison"/> will be used to match a property.
5604
            </summary>
5605
            <param name="propertyName">Name of the property.</param>
5606
            <param name="value">The value.</param>
5607
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
5608
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
5609
        </member>
5610
        <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
5611
            <summary>
5612
            Adds the specified property name.
5613
            </summary>
5614
            <param name="propertyName">Name of the property.</param>
5615
            <param name="value">The value.</param>
5616
        </member>
5617
        <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
5618
            <summary>
5619
            Removes the property with the specified name.
5620
            </summary>
5621
            <param name="propertyName">Name of the property.</param>
5622
            <returns>true if item was successfully removed; otherwise, false.</returns>
5623
        </member>
5624
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
5625
            <summary>
5626
            Tries the get value.
5627
            </summary>
5628
            <param name="propertyName">Name of the property.</param>
5629
            <param name="value">The value.</param>
5630
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
5631
        </member>
5632
        <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
5633
            <summary>
5634
            Returns an enumerator that iterates through the collection.
5635
            </summary>
5636
            <returns>
5637
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
5638
            </returns>
5639
        </member>
5640
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
5641
            <summary>
5642
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
5643
            </summary>
5644
            <param name="propertyName">Name of the property.</param>
5645
        </member>
5646
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">
5647
            <summary>
5648
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments.
5649
            </summary>
5650
            <param name="propertyName">Name of the property.</param>
5651
        </member>
5652
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
5653
            <summary>
5654
            Returns the properties for this instance of a component.
5655
            </summary>
5656
            <returns>
5657
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance.
5658
            </returns>
5659
        </member>
5660
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
5661
            <summary>
5662
            Returns the properties for this instance of a component using the attribute array as a filter.
5663
            </summary>
5664
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
5665
            <returns>
5666
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.
5667
            </returns>
5668
        </member>
5669
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
5670
            <summary>
5671
            Returns a collection of custom attributes for this instance of a component.
5672
            </summary>
5673
            <returns>
5674
            An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object.
5675
            </returns>
5676
        </member>
5677
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
5678
            <summary>
5679
            Returns the class name of this instance of a component.
5680
            </summary>
5681
            <returns>
5682
            The class name of the object, or null if the class does not have a name.
5683
            </returns>
5684
        </member>
5685
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
5686
            <summary>
5687
            Returns the name of this instance of a component.
5688
            </summary>
5689
            <returns>
5690
            The name of the object, or null if the object does not have a name.
5691
            </returns>
5692
        </member>
5693
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
5694
            <summary>
5695
            Returns a type converter for this instance of a component.
5696
            </summary>
5697
            <returns>
5698
            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.
5699
            </returns>
5700
        </member>
5701
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
5702
            <summary>
5703
            Returns the default event for this instance of a component.
5704
            </summary>
5705
            <returns>
5706
            An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events.
5707
            </returns>
5708
        </member>
5709
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
5710
            <summary>
5711
            Returns the default property for this instance of a component.
5712
            </summary>
5713
            <returns>
5714
            A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties.
5715
            </returns>
5716
        </member>
5717
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
5718
            <summary>
5719
            Returns an editor of the specified type for this instance of a component.
5720
            </summary>
5721
            <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param>
5722
            <returns>
5723
            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.
5724
            </returns>
5725
        </member>
5726
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
5727
            <summary>
5728
            Returns the events for this instance of a component using the specified attribute array as a filter.
5729
            </summary>
5730
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
5731
            <returns>
5732
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance.
5733
            </returns>
5734
        </member>
5735
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
5736
            <summary>
5737
            Returns the events for this instance of a component.
5738
            </summary>
5739
            <returns>
5740
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance.
5741
            </returns>
5742
        </member>
5743
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
5744
            <summary>
5745
            Returns an object that contains the property described by the specified property descriptor.
5746
            </summary>
5747
            <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param>
5748
            <returns>
5749
            An <see cref="T:System.Object"/> that represents the owner of the specified property.
5750
            </returns>
5751
        </member>
5752
        <member name="M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)">
5753
            <summary>
5754
            Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
5755
            </summary>
5756
            <param name="parameter">The expression tree representation of the runtime value.</param>
5757
            <returns>
5758
            The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
5759
            </returns>
5760
        </member>
5761
        <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
5762
            <summary>
5763
            Gets the container's children tokens.
5764
            </summary>
5765
            <value>The container's children tokens.</value>
5766
        </member>
5767
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
5768
            <summary>
5769
            Occurs when a property value changes.
5770
            </summary>
5771
        </member>
5772
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">
5773
            <summary>
5774
            Occurs when a property value is changing.
5775
            </summary>
5776
        </member>
5777
        <member name="P:Newtonsoft.Json.Linq.JObject.Type">
5778
            <summary>
5779
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5780
            </summary>
5781
            <value>The type.</value>
5782
        </member>
5783
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
5784
            <summary>
5785
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5786
            </summary>
5787
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
5788
        </member>
5789
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
5790
            <summary>
5791
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
5792
            </summary>
5793
            <value></value>
5794
        </member>
5795
        <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">
5796
            <summary>
5797
            Specifies the settings used when merging JSON.
5798
            </summary>
5799
        </member>
5800
        <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">
5801
            <summary>
5802
            Gets or sets the method used when merging JSON arrays.
5803
            </summary>
5804
            <value>The method used when merging JSON arrays.</value>
5805
        </member>
5806
        <member name="T:Newtonsoft.Json.Linq.JProperty">
5807
            <summary>
5808
            Represents a JSON property.
5809
            </summary>
5810
        </member>
5811
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
5812
            <summary>
5813
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
5814
            </summary>
5815
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
5816
        </member>
5817
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
5818
            <summary>
5819
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
5820
            </summary>
5821
            <param name="name">The property name.</param>
5822
            <param name="content">The property content.</param>
5823
        </member>
5824
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
5825
            <summary>
5826
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
5827
            </summary>
5828
            <param name="name">The property name.</param>
5829
            <param name="content">The property content.</param>
5830
        </member>
5831
        <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5832
            <summary>
5833
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5834
            </summary>
5835
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5836
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5837
        </member>
5838
        <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
5839
            <summary>
5840
            Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5841
            </summary>
5842
            <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>
5843
            <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>
5844
        </member>
5845
        <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
5846
            <summary>
5847
            Gets the container's children tokens.
5848
            </summary>
5849
            <value>The container's children tokens.</value>
5850
        </member>
5851
        <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
5852
            <summary>
5853
            Gets the property name.
5854
            </summary>
5855
            <value>The property name.</value>
5856
        </member>
5857
        <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
5858
            <summary>
5859
            Gets or sets the property value.
5860
            </summary>
5861
            <value>The property value.</value>
5862
        </member>
5863
        <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
5864
            <summary>
5865
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5866
            </summary>
5867
            <value>The type.</value>
5868
        </member>
5869
        <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
5870
            <summary>
5871
            Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
5872
            </summary>
5873
        </member>
5874
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">
5875
            <summary>
5876
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
5877
            </summary>
5878
            <param name="name">The name.</param>
5879
        </member>
5880
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
5881
            <summary>
5882
            When overridden in a derived class, returns whether resetting an object changes its value.
5883
            </summary>
5884
            <returns>
5885
            true if resetting the component changes its value; otherwise, false.
5886
            </returns>
5887
            <param name="component">The component to test for reset capability. 
5888
                            </param>
5889
        </member>
5890
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
5891
            <summary>
5892
            When overridden in a derived class, gets the current value of the property on a component.
5893
            </summary>
5894
            <returns>
5895
            The value of a property for a given component.
5896
            </returns>
5897
            <param name="component">The component with the property for which to retrieve the value. 
5898
                            </param>
5899
        </member>
5900
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
5901
            <summary>
5902
            When overridden in a derived class, resets the value for this property of the component to the default value.
5903
            </summary>
5904
            <param name="component">The component with the property value that is to be reset to the default value. 
5905
                            </param>
5906
        </member>
5907
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
5908
            <summary>
5909
            When overridden in a derived class, sets the value of the component to a different value.
5910
            </summary>
5911
            <param name="component">The component with the property value that is to be set. 
5912
                            </param><param name="value">The new value. 
5913
                            </param>
5914
        </member>
5915
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
5916
            <summary>
5917
            When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
5918
            </summary>
5919
            <returns>
5920
            true if the property should be persisted; otherwise, false.
5921
            </returns>
5922
            <param name="component">The component with the property to be examined for persistence. 
5923
                            </param>
5924
        </member>
5925
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
5926
            <summary>
5927
            When overridden in a derived class, gets the type of the component this property is bound to.
5928
            </summary>
5929
            <returns>
5930
            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.
5931
            </returns>
5932
        </member>
5933
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
5934
            <summary>
5935
            When overridden in a derived class, gets a value indicating whether this property is read-only.
5936
            </summary>
5937
            <returns>
5938
            true if the property is read-only; otherwise, false.
5939
            </returns>
5940
        </member>
5941
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
5942
            <summary>
5943
            When overridden in a derived class, gets the type of the property.
5944
            </summary>
5945
            <returns>
5946
            A <see cref="T:System.Type"/> that represents the type of the property.
5947
            </returns>
5948
        </member>
5949
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
5950
            <summary>
5951
            Gets the hash code for the name of the member.
5952
            </summary>
5953
            <value></value>
5954
            <returns>
5955
            The hash code for the name of the member.
5956
            </returns>
5957
        </member>
5958
        <member name="T:Newtonsoft.Json.Linq.JRaw">
5959
            <summary>
5960
            Represents a raw JSON string.
5961
            </summary>
5962
        </member>
5963
        <member name="T:Newtonsoft.Json.Linq.JValue">
5964
            <summary>
5965
            Represents a value in JSON (string, integer, date, etc).
5966
            </summary>
5967
        </member>
5968
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
5969
            <summary>
5970
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
5971
            </summary>
5972
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
5973
        </member>
5974
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
5975
            <summary>
5976
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
5977
            </summary>
5978
            <param name="value">The value.</param>
5979
        </member>
5980
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
5981
            <summary>
5982
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
5983
            </summary>
5984
            <param name="value">The value.</param>
5985
        </member>
5986
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
5987
            <summary>
5988
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
5989
            </summary>
5990
            <param name="value">The value.</param>
5991
        </member>
5992
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
5993
            <summary>
5994
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
5995
            </summary>
5996
            <param name="value">The value.</param>
5997
        </member>
5998
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
5999
            <summary>
6000
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6001
            </summary>
6002
            <param name="value">The value.</param>
6003
        </member>
6004
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
6005
            <summary>
6006
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6007
            </summary>
6008
            <param name="value">The value.</param>
6009
        </member>
6010
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
6011
            <summary>
6012
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6013
            </summary>
6014
            <param name="value">The value.</param>
6015
        </member>
6016
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTimeOffset)">
6017
            <summary>
6018
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6019
            </summary>
6020
            <param name="value">The value.</param>
6021
        </member>
6022
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
6023
            <summary>
6024
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6025
            </summary>
6026
            <param name="value">The value.</param>
6027
        </member>
6028
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
6029
            <summary>
6030
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6031
            </summary>
6032
            <param name="value">The value.</param>
6033
        </member>
6034
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
6035
            <summary>
6036
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6037
            </summary>
6038
            <param name="value">The value.</param>
6039
        </member>
6040
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
6041
            <summary>
6042
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6043
            </summary>
6044
            <param name="value">The value.</param>
6045
        </member>
6046
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
6047
            <summary>
6048
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6049
            </summary>
6050
            <param name="value">The value.</param>
6051
        </member>
6052
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
6053
            <summary>
6054
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6055
            </summary>
6056
            <param name="value">The value.</param>
6057
        </member>
6058
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
6059
            <summary>
6060
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
6061
            </summary>
6062
            <param name="value">The value.</param>
6063
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
6064
        </member>
6065
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
6066
            <summary>
6067
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
6068
            </summary>
6069
            <param name="value">The value.</param>
6070
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
6071
        </member>
6072
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">
6073
            <summary>
6074
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
6075
            </summary>
6076
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
6077
        </member>
6078
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">
6079
            <summary>
6080
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
6081
            </summary>
6082
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
6083
        </member>
6084
        <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6085
            <summary>
6086
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6087
            </summary>
6088
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6089
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6090
        </member>
6091
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
6092
            <summary>
6093
            Indicates whether the current object is equal to another object of the same type.
6094
            </summary>
6095
            <returns>
6096
            true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.
6097
            </returns>
6098
            <param name="other">An object to compare with this object.</param>
6099
        </member>
6100
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
6101
            <summary>
6102
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
6103
            </summary>
6104
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
6105
            <returns>
6106
            true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
6107
            </returns>
6108
            <exception cref="T:System.NullReferenceException">
6109
            The <paramref name="obj"/> parameter is null.
6110
            </exception>
6111
        </member>
6112
        <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
6113
            <summary>
6114
            Serves as a hash function for a particular type.
6115
            </summary>
6116
            <returns>
6117
            A hash code for the current <see cref="T:System.Object"/>.
6118
            </returns>
6119
        </member>
6120
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
6121
            <summary>
6122
            Returns a <see cref="T:System.String"/> that represents this instance.
6123
            </summary>
6124
            <returns>
6125
            A <see cref="T:System.String"/> that represents this instance.
6126
            </returns>
6127
        </member>
6128
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
6129
            <summary>
6130
            Returns a <see cref="T:System.String"/> that represents this instance.
6131
            </summary>
6132
            <param name="format">The format.</param>
6133
            <returns>
6134
            A <see cref="T:System.String"/> that represents this instance.
6135
            </returns>
6136
        </member>
6137
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
6138
            <summary>
6139
            Returns a <see cref="T:System.String"/> that represents this instance.
6140
            </summary>
6141
            <param name="formatProvider">The format provider.</param>
6142
            <returns>
6143
            A <see cref="T:System.String"/> that represents this instance.
6144
            </returns>
6145
        </member>
6146
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
6147
            <summary>
6148
            Returns a <see cref="T:System.String"/> that represents this instance.
6149
            </summary>
6150
            <param name="format">The format.</param>
6151
            <param name="formatProvider">The format provider.</param>
6152
            <returns>
6153
            A <see cref="T:System.String"/> that represents this instance.
6154
            </returns>
6155
        </member>
6156
        <member name="M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)">
6157
            <summary>
6158
            Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
6159
            </summary>
6160
            <param name="parameter">The expression tree representation of the runtime value.</param>
6161
            <returns>
6162
            The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
6163
            </returns>
6164
        </member>
6165
        <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
6166
            <summary>
6167
            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.
6168
            </summary>
6169
            <param name="obj">An object to compare with this instance.</param>
6170
            <returns>
6171
            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
6172
            Value
6173
            Meaning
6174
            Less than zero
6175
            This instance is less than <paramref name="obj"/>.
6176
            Zero
6177
            This instance is equal to <paramref name="obj"/>.
6178
            Greater than zero
6179
            This instance is greater than <paramref name="obj"/>.
6180
            </returns>
6181
            <exception cref="T:System.ArgumentException">
6182
            	<paramref name="obj"/> is not the same type as this instance.
6183
            </exception>
6184
        </member>
6185
        <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
6186
            <summary>
6187
            Gets a value indicating whether this token has child tokens.
6188
            </summary>
6189
            <value>
6190
            	<c>true</c> if this token has child values; otherwise, <c>false</c>.
6191
            </value>
6192
        </member>
6193
        <member name="P:Newtonsoft.Json.Linq.JValue.Type">
6194
            <summary>
6195
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6196
            </summary>
6197
            <value>The type.</value>
6198
        </member>
6199
        <member name="P:Newtonsoft.Json.Linq.JValue.Value">
6200
            <summary>
6201
            Gets or sets the underlying token value.
6202
            </summary>
6203
            <value>The underlying token value.</value>
6204
        </member>
6205
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
6206
            <summary>
6207
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
6208
            </summary>
6209
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
6210
        </member>
6211
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
6212
            <summary>
6213
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
6214
            </summary>
6215
            <param name="rawJson">The raw json.</param>
6216
        </member>
6217
        <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
6218
            <summary>
6219
            Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
6220
            </summary>
6221
            <param name="reader">The reader.</param>
6222
            <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
6223
        </member>
6224
        <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
6225
            <summary>
6226
            Compares tokens to determine whether they are equal.
6227
            </summary>
6228
        </member>
6229
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
6230
            <summary>
6231
            Determines whether the specified objects are equal.
6232
            </summary>
6233
            <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
6234
            <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
6235
            <returns>
6236
            true if the specified objects are equal; otherwise, false.
6237
            </returns>
6238
        </member>
6239
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
6240
            <summary>
6241
            Returns a hash code for the specified object.
6242
            </summary>
6243
            <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
6244
            <returns>A hash code for the specified object.</returns>
6245
            <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception>
6246
        </member>
6247
        <member name="T:Newtonsoft.Json.Linq.JTokenReader">
6248
            <summary>
6249
            Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
6250
            </summary>
6251
        </member>
6252
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
6253
            <summary>
6254
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
6255
            </summary>
6256
            <param name="token">The token to read from.</param>
6257
        </member>
6258
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">
6259
            <summary>
6260
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
6261
            </summary>
6262
            <returns>
6263
            A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
6264
            </returns>
6265
        </member>
6266
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">
6267
            <summary>
6268
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6269
            </summary>
6270
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6271
        </member>
6272
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
6273
            <summary>
6274
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6275
            </summary>
6276
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6277
        </member>
6278
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString">
6279
            <summary>
6280
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
6281
            </summary>
6282
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6283
        </member>
6284
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime">
6285
            <summary>
6286
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6287
            </summary>
6288
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6289
        </member>
6290
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">
6291
            <summary>
6292
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6293
            </summary>
6294
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6295
        </member>
6296
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
6297
            <summary>
6298
            Reads the next JSON token from the stream.
6299
            </summary>
6300
            <returns>
6301
            true if the next token was read successfully; false if there are no more tokens to read.
6302
            </returns>
6303
        </member>
6304
        <member name="P:Newtonsoft.Json.Linq.JTokenReader.CurrentToken">
6305
            <summary>
6306
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the reader's current position.
6307
            </summary>
6308
        </member>
6309
        <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">
6310
            <summary>
6311
            Gets the path of the current JSON token. 
6312
            </summary>
6313
        </member>
6314
        <member name="T:Newtonsoft.Json.Linq.JTokenType">
6315
            <summary>
6316
            Specifies the type of token.
6317
            </summary>
6318
        </member>
6319
        <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
6320
            <summary>
6321
            No token type has been set.
6322
            </summary>
6323
        </member>
6324
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
6325
            <summary>
6326
            A JSON object.
6327
            </summary>
6328
        </member>
6329
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
6330
            <summary>
6331
            A JSON array.
6332
            </summary>
6333
        </member>
6334
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
6335
            <summary>
6336
            A JSON constructor.
6337
            </summary>
6338
        </member>
6339
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
6340
            <summary>
6341
            A JSON object property.
6342
            </summary>
6343
        </member>
6344
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
6345
            <summary>
6346
            A comment.
6347
            </summary>
6348
        </member>
6349
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
6350
            <summary>
6351
            An integer value.
6352
            </summary>
6353
        </member>
6354
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
6355
            <summary>
6356
            A float value.
6357
            </summary>
6358
        </member>
6359
        <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
6360
            <summary>
6361
            A string value.
6362
            </summary>
6363
        </member>
6364
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
6365
            <summary>
6366
            A boolean value.
6367
            </summary>
6368
        </member>
6369
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
6370
            <summary>
6371
            A null value.
6372
            </summary>
6373
        </member>
6374
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
6375
            <summary>
6376
            An undefined value.
6377
            </summary>
6378
        </member>
6379
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
6380
            <summary>
6381
            A date value.
6382
            </summary>
6383
        </member>
6384
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
6385
            <summary>
6386
            A raw JSON value.
6387
            </summary>
6388
        </member>
6389
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
6390
            <summary>
6391
            A collection of bytes value.
6392
            </summary>
6393
        </member>
6394
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
6395
            <summary>
6396
            A Guid value.
6397
            </summary>
6398
        </member>
6399
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
6400
            <summary>
6401
            A Uri value.
6402
            </summary>
6403
        </member>
6404
        <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
6405
            <summary>
6406
            A TimeSpan value.
6407
            </summary>
6408
        </member>
6409
        <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
6410
            <summary>
6411
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
6412
            </summary>
6413
        </member>
6414
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
6415
            <summary>
6416
            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"/>.
6417
            </summary>
6418
            <param name="container">The container being written to.</param>
6419
        </member>
6420
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
6421
            <summary>
6422
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
6423
            </summary>
6424
        </member>
6425
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
6426
            <summary>
6427
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
6428
            </summary>
6429
        </member>
6430
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
6431
            <summary>
6432
            Closes this stream and the underlying stream.
6433
            </summary>
6434
        </member>
6435
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
6436
            <summary>
6437
            Writes the beginning of a Json object.
6438
            </summary>
6439
        </member>
6440
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
6441
            <summary>
6442
            Writes the beginning of a Json array.
6443
            </summary>
6444
        </member>
6445
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
6446
            <summary>
6447
            Writes the start of a constructor with the given name.
6448
            </summary>
6449
            <param name="name">The name of the constructor.</param>
6450
        </member>
6451
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
6452
            <summary>
6453
            Writes the end.
6454
            </summary>
6455
            <param name="token">The token.</param>
6456
        </member>
6457
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
6458
            <summary>
6459
            Writes the property name of a name/value pair on a Json object.
6460
            </summary>
6461
            <param name="name">The name of the property.</param>
6462
        </member>
6463
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
6464
            <summary>
6465
            Writes a <see cref="T:System.Object"/> value.
6466
            An error will raised if the value cannot be written as a single JSON token.
6467
            </summary>
6468
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
6469
        </member>
6470
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
6471
            <summary>
6472
            Writes a null value.
6473
            </summary>
6474
        </member>
6475
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
6476
            <summary>
6477
            Writes an undefined value.
6478
            </summary>
6479
        </member>
6480
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
6481
            <summary>
6482
            Writes raw JSON.
6483
            </summary>
6484
            <param name="json">The raw JSON to write.</param>
6485
        </member>
6486
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
6487
            <summary>
6488
            Writes out a comment <code>/*...*/</code> containing the specified text.
6489
            </summary>
6490
            <param name="text">Text to place inside the comment.</param>
6491
        </member>
6492
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
6493
            <summary>
6494
            Writes a <see cref="T:System.String"/> value.
6495
            </summary>
6496
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
6497
        </member>
6498
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
6499
            <summary>
6500
            Writes a <see cref="T:System.Int32"/> value.
6501
            </summary>
6502
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
6503
        </member>
6504
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
6505
            <summary>
6506
            Writes a <see cref="T:System.UInt32"/> value.
6507
            </summary>
6508
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
6509
        </member>
6510
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
6511
            <summary>
6512
            Writes a <see cref="T:System.Int64"/> value.
6513
            </summary>
6514
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
6515
        </member>
6516
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
6517
            <summary>
6518
            Writes a <see cref="T:System.UInt64"/> value.
6519
            </summary>
6520
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
6521
        </member>
6522
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
6523
            <summary>
6524
            Writes a <see cref="T:System.Single"/> value.
6525
            </summary>
6526
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
6527
        </member>
6528
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
6529
            <summary>
6530
            Writes a <see cref="T:System.Double"/> value.
6531
            </summary>
6532
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
6533
        </member>
6534
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
6535
            <summary>
6536
            Writes a <see cref="T:System.Boolean"/> value.
6537
            </summary>
6538
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
6539
        </member>
6540
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
6541
            <summary>
6542
            Writes a <see cref="T:System.Int16"/> value.
6543
            </summary>
6544
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
6545
        </member>
6546
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
6547
            <summary>
6548
            Writes a <see cref="T:System.UInt16"/> value.
6549
            </summary>
6550
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
6551
        </member>
6552
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
6553
            <summary>
6554
            Writes a <see cref="T:System.Char"/> value.
6555
            </summary>
6556
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
6557
        </member>
6558
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
6559
            <summary>
6560
            Writes a <see cref="T:System.Byte"/> value.
6561
            </summary>
6562
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
6563
        </member>
6564
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
6565
            <summary>
6566
            Writes a <see cref="T:System.SByte"/> value.
6567
            </summary>
6568
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
6569
        </member>
6570
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
6571
            <summary>
6572
            Writes a <see cref="T:System.Decimal"/> value.
6573
            </summary>
6574
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
6575
        </member>
6576
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
6577
            <summary>
6578
            Writes a <see cref="T:System.DateTime"/> value.
6579
            </summary>
6580
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
6581
        </member>
6582
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">
6583
            <summary>
6584
            Writes a <see cref="T:System.DateTimeOffset"/> value.
6585
            </summary>
6586
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
6587
        </member>
6588
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
6589
            <summary>
6590
            Writes a <see cref="T:System.Byte"/>[] value.
6591
            </summary>
6592
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
6593
        </member>
6594
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
6595
            <summary>
6596
            Writes a <see cref="T:System.TimeSpan"/> value.
6597
            </summary>
6598
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
6599
        </member>
6600
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
6601
            <summary>
6602
            Writes a <see cref="T:System.Guid"/> value.
6603
            </summary>
6604
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
6605
        </member>
6606
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
6607
            <summary>
6608
            Writes a <see cref="T:System.Uri"/> value.
6609
            </summary>
6610
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
6611
        </member>
6612
        <member name="P:Newtonsoft.Json.Linq.JTokenWriter.CurrentToken">
6613
            <summary>
6614
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the writer's current position.
6615
            </summary>
6616
        </member>
6617
        <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
6618
            <summary>
6619
            Gets the token being writen.
6620
            </summary>
6621
            <value>The token being writen.</value>
6622
        </member>
6623
        <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
6624
            <summary>
6625
            Specifies how JSON arrays are merged together.
6626
            </summary>
6627
        </member>
6628
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">
6629
            <summary>Concatenate arrays.</summary>
6630
        </member>
6631
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">
6632
            <summary>Union arrays, skipping items that already exist.</summary>
6633
        </member>
6634
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">
6635
            <summary>Replace all array items.</summary>
6636
        </member>
6637
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">
6638
            <summary>Merge array items together, matched by index.</summary>
6639
        </member>
6640
        <member name="T:Newtonsoft.Json.MemberSerialization">
6641
            <summary>
6642
            Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6643
            </summary>
6644
        </member>
6645
        <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
6646
            <summary>
6647
            All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
6648
            This is the default member serialization mode.
6649
            </summary>
6650
        </member>
6651
        <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
6652
            <summary>
6653
            Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/> are serialized.
6654
            This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute"/>.
6655
            </summary>
6656
        </member>
6657
        <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
6658
            <summary>
6659
            All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
6660
            This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
6661
            and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to false.
6662
            </summary>
6663
        </member>
6664
        <member name="T:Newtonsoft.Json.MetadataPropertyHandling">
6665
            <summary>
6666
            Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6667
            </summary>
6668
        </member>
6669
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">
6670
            <summary>
6671
            Read metadata properties located at the start of a JSON object.
6672
            </summary>
6673
        </member>
6674
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">
6675
            <summary>
6676
            Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
6677
            </summary>
6678
        </member>
6679
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">
6680
            <summary>
6681
            Do not try to read metadata properties.
6682
            </summary>
6683
        </member>
6684
        <member name="T:Newtonsoft.Json.MissingMemberHandling">
6685
            <summary>
6686
            Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6687
            </summary>
6688
        </member>
6689
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
6690
            <summary>
6691
            Ignore a missing member and do not attempt to deserialize it.
6692
            </summary>
6693
        </member>
6694
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
6695
            <summary>
6696
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
6697
            </summary>
6698
        </member>
6699
        <member name="T:Newtonsoft.Json.NullValueHandling">
6700
            <summary>
6701
            Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6702
            </summary>
6703
            <example>
6704
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class"/>
6705
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example"/>
6706
            </example>
6707
        </member>
6708
        <member name="F:Newtonsoft.Json.NullValueHandling.Include">
6709
            <summary>
6710
            Include null values when serializing and deserializing objects.
6711
            </summary>
6712
        </member>
6713
        <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
6714
            <summary>
6715
            Ignore null values when serializing and deserializing objects.
6716
            </summary>
6717
        </member>
6718
        <member name="T:Newtonsoft.Json.ObjectCreationHandling">
6719
            <summary>
6720
            Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6721
            </summary>
6722
        </member>
6723
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
6724
            <summary>
6725
            Reuse existing objects, create new objects when needed.
6726
            </summary>
6727
        </member>
6728
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
6729
            <summary>
6730
            Only reuse existing objects.
6731
            </summary>
6732
        </member>
6733
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
6734
            <summary>
6735
            Always create new objects.
6736
            </summary>
6737
        </member>
6738
        <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
6739
            <summary>
6740
            Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6741
            Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable.
6742
            </summary>
6743
            <example>
6744
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References"/>       
6745
            </example>
6746
        </member>
6747
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
6748
            <summary>
6749
            Do not preserve references when serializing types.
6750
            </summary>
6751
        </member>
6752
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
6753
            <summary>
6754
            Preserve references when serializing into a JSON object structure.
6755
            </summary>
6756
        </member>
6757
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
6758
            <summary>
6759
            Preserve references when serializing into a JSON array structure.
6760
            </summary>
6761
        </member>
6762
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
6763
            <summary>
6764
            Preserve references when serializing.
6765
            </summary>
6766
        </member>
6767
        <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
6768
            <summary>
6769
            Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6770
            </summary>
6771
        </member>
6772
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
6773
            <summary>
6774
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
6775
            </summary>
6776
        </member>
6777
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
6778
            <summary>
6779
            Ignore loop references and do not serialize.
6780
            </summary>
6781
        </member>
6782
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
6783
            <summary>
6784
            Serialize loop references.
6785
            </summary>
6786
        </member>
6787
        <member name="T:Newtonsoft.Json.Required">
6788
            <summary>
6789
            Indicating whether a property is required.
6790
            </summary>
6791
        </member>
6792
        <member name="F:Newtonsoft.Json.Required.Default">
6793
            <summary>
6794
            The property is not required. The default state.
6795
            </summary>
6796
        </member>
6797
        <member name="F:Newtonsoft.Json.Required.AllowNull">
6798
            <summary>
6799
            The property must be defined in JSON but can be a null value.
6800
            </summary>
6801
        </member>
6802
        <member name="F:Newtonsoft.Json.Required.Always">
6803
            <summary>
6804
            The property must be defined in JSON and cannot be a null value.
6805
            </summary>
6806
        </member>
6807
        <member name="T:Newtonsoft.Json.Schema.Extensions">
6808
            <summary>
6809
            Contains the JSON schema extension methods.
6810
            </summary>
6811
        </member>
6812
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
6813
            <summary>
6814
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
6815
            </summary>
6816
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6817
            <param name="schema">The schema to test with.</param>
6818
            <returns>
6819
            	<c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
6820
            </returns>
6821
        </member>
6822
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
6823
            <summary>
6824
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
6825
            </summary>
6826
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6827
            <param name="schema">The schema to test with.</param>
6828
            <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
6829
            <returns>
6830
            	<c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
6831
            </returns>
6832
        </member>
6833
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
6834
            <summary>
6835
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6836
            </summary>
6837
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6838
            <param name="schema">The schema to test with.</param>
6839
        </member>
6840
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
6841
            <summary>
6842
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6843
            </summary>
6844
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6845
            <param name="schema">The schema to test with.</param>
6846
            <param name="validationEventHandler">The validation event handler.</param>
6847
        </member>
6848
        <member name="T:Newtonsoft.Json.Schema.JsonSchema">
6849
            <summary>
6850
            An in-memory representation of a JSON Schema.
6851
            </summary>
6852
        </member>
6853
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
6854
            <summary>
6855
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
6856
            </summary>
6857
        </member>
6858
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
6859
            <summary>
6860
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
6861
            </summary>
6862
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
6863
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
6864
        </member>
6865
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
6866
            <summary>
6867
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
6868
            </summary>
6869
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
6870
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
6871
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
6872
        </member>
6873
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
6874
            <summary>
6875
            Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON.
6876
            </summary>
6877
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6878
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
6879
        </member>
6880
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
6881
            <summary>
6882
            Parses the specified json.
6883
            </summary>
6884
            <param name="json">The json.</param>
6885
            <param name="resolver">The resolver.</param>
6886
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
6887
        </member>
6888
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
6889
            <summary>
6890
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6891
            </summary>
6892
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6893
        </member>
6894
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
6895
            <summary>
6896
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
6897
            </summary>
6898
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6899
            <param name="resolver">The resolver used.</param>
6900
        </member>
6901
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
6902
            <summary>
6903
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
6904
            </summary>
6905
            <returns>
6906
            A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
6907
            </returns>
6908
        </member>
6909
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
6910
            <summary>
6911
            Gets or sets the id.
6912
            </summary>
6913
        </member>
6914
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
6915
            <summary>
6916
            Gets or sets the title.
6917
            </summary>
6918
        </member>
6919
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
6920
            <summary>
6921
            Gets or sets whether the object is required.
6922
            </summary>
6923
        </member>
6924
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
6925
            <summary>
6926
            Gets or sets whether the object is read only.
6927
            </summary>
6928
        </member>
6929
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
6930
            <summary>
6931
            Gets or sets whether the object is visible to users.
6932
            </summary>
6933
        </member>
6934
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
6935
            <summary>
6936
            Gets or sets whether the object is transient.
6937
            </summary>
6938
        </member>
6939
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
6940
            <summary>
6941
            Gets or sets the description of the object.
6942
            </summary>
6943
        </member>
6944
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
6945
            <summary>
6946
            Gets or sets the types of values allowed by the object.
6947
            </summary>
6948
            <value>The type.</value>
6949
        </member>
6950
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
6951
            <summary>
6952
            Gets or sets the pattern.
6953
            </summary>
6954
            <value>The pattern.</value>
6955
        </member>
6956
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
6957
            <summary>
6958
            Gets or sets the minimum length.
6959
            </summary>
6960
            <value>The minimum length.</value>
6961
        </member>
6962
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
6963
            <summary>
6964
            Gets or sets the maximum length.
6965
            </summary>
6966
            <value>The maximum length.</value>
6967
        </member>
6968
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
6969
            <summary>
6970
            Gets or sets a number that the value should be divisble by.
6971
            </summary>
6972
            <value>A number that the value should be divisble by.</value>
6973
        </member>
6974
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
6975
            <summary>
6976
            Gets or sets the minimum.
6977
            </summary>
6978
            <value>The minimum.</value>
6979
        </member>
6980
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
6981
            <summary>
6982
            Gets or sets the maximum.
6983
            </summary>
6984
            <value>The maximum.</value>
6985
        </member>
6986
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
6987
            <summary>
6988
            Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.
6989
            </summary>
6990
            <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value>
6991
        </member>
6992
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
6993
            <summary>
6994
            Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.
6995
            </summary>
6996
            <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>
6997
        </member>
6998
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
6999
            <summary>
7000
            Gets or sets the minimum number of items.
7001
            </summary>
7002
            <value>The minimum number of items.</value>
7003
        </member>
7004
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
7005
            <summary>
7006
            Gets or sets the maximum number of items.
7007
            </summary>
7008
            <value>The maximum number of items.</value>
7009
        </member>
7010
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
7011
            <summary>
7012
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
7013
            </summary>
7014
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
7015
        </member>
7016
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">
7017
            <summary>
7018
            Gets or sets a value indicating whether items in an array are validated using the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> instance at their array position from <see cref="P:Newtonsoft.Json.Schema.JsonSchema.Items"/>.
7019
            </summary>
7020
            <value>
7021
            	<c>true</c> if items are validated using their array position; otherwise, <c>false</c>.
7022
            </value>
7023
        </member>
7024
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">
7025
            <summary>
7026
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.
7027
            </summary>
7028
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value>
7029
        </member>
7030
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">
7031
            <summary>
7032
            Gets or sets a value indicating whether additional items are allowed.
7033
            </summary>
7034
            <value>
7035
            	<c>true</c> if additional items are allowed; otherwise, <c>false</c>.
7036
            </value>
7037
        </member>
7038
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">
7039
            <summary>
7040
            Gets or sets whether the array items must be unique.
7041
            </summary>
7042
        </member>
7043
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
7044
            <summary>
7045
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
7046
            </summary>
7047
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
7048
        </member>
7049
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
7050
            <summary>
7051
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
7052
            </summary>
7053
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
7054
        </member>
7055
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
7056
            <summary>
7057
            Gets or sets the pattern properties.
7058
            </summary>
7059
            <value>The pattern properties.</value>
7060
        </member>
7061
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
7062
            <summary>
7063
            Gets or sets a value indicating whether additional properties are allowed.
7064
            </summary>
7065
            <value>
7066
            	<c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
7067
            </value>
7068
        </member>
7069
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
7070
            <summary>
7071
            Gets or sets the required property if this property is present.
7072
            </summary>
7073
            <value>The required property if this property is present.</value>
7074
        </member>
7075
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
7076
            <summary>
7077
            Gets or sets the a collection of valid enum values allowed.
7078
            </summary>
7079
            <value>A collection of valid enum values allowed.</value>
7080
        </member>
7081
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
7082
            <summary>
7083
            Gets or sets disallowed types.
7084
            </summary>
7085
            <value>The disallow types.</value>
7086
        </member>
7087
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
7088
            <summary>
7089
            Gets or sets the default value.
7090
            </summary>
7091
            <value>The default value.</value>
7092
        </member>
7093
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
7094
            <summary>
7095
            Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.
7096
            </summary>
7097
            <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value>
7098
        </member>
7099
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
7100
            <summary>
7101
            Gets or sets the format.
7102
            </summary>
7103
            <value>The format.</value>
7104
        </member>
7105
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
7106
            <summary>
7107
            Returns detailed information about the schema exception.
7108
            </summary>
7109
        </member>
7110
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
7111
            <summary>
7112
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
7113
            </summary>
7114
        </member>
7115
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
7116
            <summary>
7117
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7118
            with a specified error message.
7119
            </summary>
7120
            <param name="message">The error message that explains the reason for the exception.</param>
7121
        </member>
7122
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
7123
            <summary>
7124
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7125
            with a specified error message and a reference to the inner exception that is the cause of this exception.
7126
            </summary>
7127
            <param name="message">The error message that explains the reason for the exception.</param>
7128
            <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>
7129
        </member>
7130
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7131
            <summary>
7132
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
7133
            </summary>
7134
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
7135
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
7136
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
7137
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
7138
        </member>
7139
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
7140
            <summary>
7141
            Gets the line number indicating where the error occurred.
7142
            </summary>
7143
            <value>The line number indicating where the error occurred.</value>
7144
        </member>
7145
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
7146
            <summary>
7147
            Gets the line position indicating where the error occurred.
7148
            </summary>
7149
            <value>The line position indicating where the error occurred.</value>
7150
        </member>
7151
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
7152
            <summary>
7153
            Gets the path to the JSON where the error occurred.
7154
            </summary>
7155
            <value>The path to the JSON where the error occurred.</value>
7156
        </member>
7157
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
7158
            <summary>
7159
            Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
7160
            </summary>
7161
        </member>
7162
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
7163
            <summary>
7164
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7165
            </summary>
7166
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7167
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7168
        </member>
7169
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7170
            <summary>
7171
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7172
            </summary>
7173
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7174
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
7175
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7176
        </member>
7177
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
7178
            <summary>
7179
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7180
            </summary>
7181
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7182
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
7183
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7184
        </member>
7185
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
7186
            <summary>
7187
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7188
            </summary>
7189
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7190
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
7191
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
7192
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7193
        </member>
7194
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
7195
            <summary>
7196
            Gets or sets how undefined schemas are handled by the serializer.
7197
            </summary>
7198
        </member>
7199
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
7200
            <summary>
7201
            Gets or sets the contract resolver.
7202
            </summary>
7203
            <value>The contract resolver.</value>
7204
        </member>
7205
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
7206
            <summary>
7207
            Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
7208
            </summary>
7209
        </member>
7210
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
7211
            <summary>
7212
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
7213
            </summary>
7214
        </member>
7215
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
7216
            <summary>
7217
            Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.
7218
            </summary>
7219
            <param name="reference">The id.</param>
7220
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>
7221
        </member>
7222
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
7223
            <summary>
7224
            Gets or sets the loaded schemas.
7225
            </summary>
7226
            <value>The loaded schemas.</value>
7227
        </member>
7228
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
7229
            <summary>
7230
            The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
7231
            </summary>
7232
        </member>
7233
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
7234
            <summary>
7235
            No type specified.
7236
            </summary>
7237
        </member>
7238
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
7239
            <summary>
7240
            String type.
7241
            </summary>
7242
        </member>
7243
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
7244
            <summary>
7245
            Float type.
7246
            </summary>
7247
        </member>
7248
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
7249
            <summary>
7250
            Integer type.
7251
            </summary>
7252
        </member>
7253
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
7254
            <summary>
7255
            Boolean type.
7256
            </summary>
7257
        </member>
7258
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
7259
            <summary>
7260
            Object type.
7261
            </summary>
7262
        </member>
7263
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
7264
            <summary>
7265
            Array type.
7266
            </summary>
7267
        </member>
7268
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
7269
            <summary>
7270
            Null type.
7271
            </summary>
7272
        </member>
7273
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
7274
            <summary>
7275
            Any type.
7276
            </summary>
7277
        </member>
7278
        <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
7279
            <summary>
7280
            Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
7281
            </summary>
7282
        </member>
7283
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
7284
            <summary>
7285
            Do not infer a schema Id.
7286
            </summary>
7287
        </member>
7288
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
7289
            <summary>
7290
            Use the .NET type name as the schema Id.
7291
            </summary>
7292
        </member>
7293
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
7294
            <summary>
7295
            Use the assembly qualified .NET type name as the schema Id.
7296
            </summary>
7297
        </member>
7298
        <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
7299
            <summary>
7300
            Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
7301
            </summary>
7302
        </member>
7303
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
7304
            <summary>
7305
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.
7306
            </summary>
7307
            <value>The JsonSchemaException associated with the validation error.</value>
7308
        </member>
7309
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
7310
            <summary>
7311
            Gets the path of the JSON location where the validation error occurred.
7312
            </summary>
7313
            <value>The path of the JSON location where the validation error occurred.</value>
7314
        </member>
7315
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
7316
            <summary>
7317
            Gets the text description corresponding to the validation error.
7318
            </summary>
7319
            <value>The text description.</value>
7320
        </member>
7321
        <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
7322
            <summary>
7323
            Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
7324
            </summary>
7325
        </member>
7326
        <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
7327
            <summary>
7328
            Resolves member mappings for a type, camel casing property names.
7329
            </summary>
7330
        </member>
7331
        <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
7332
            <summary>
7333
            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"/>.
7334
            </summary>
7335
        </member>
7336
        <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
7337
            <summary>
7338
            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"/>.
7339
            </summary>
7340
            <example>
7341
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class"/>
7342
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example"/>
7343
            </example>
7344
        </member>
7345
        <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
7346
            <summary>
7347
            Resolves the contract for a given type.
7348
            </summary>
7349
            <param name="type">The type to resolve a contract for.</param>
7350
            <returns>The contract for a given type.</returns>
7351
        </member>
7352
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
7353
            <summary>
7354
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
7355
            </summary>
7356
        </member>
7357
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)">
7358
            <summary>
7359
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
7360
            </summary>
7361
            <param name="shareCache">
7362
            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.
7363
            Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only
7364
            happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different
7365
            results. When set to false it is highly recommended to reuse <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> instances with the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7366
            </param>
7367
        </member>
7368
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
7369
            <summary>
7370
            Resolves the contract for a given type.
7371
            </summary>
7372
            <param name="type">The type to resolve a contract for.</param>
7373
            <returns>The contract for a given type.</returns>
7374
        </member>
7375
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
7376
            <summary>
7377
            Gets the serializable members for the type.
7378
            </summary>
7379
            <param name="objectType">The type to get serializable members for.</param>
7380
            <returns>The serializable members for the type.</returns>
7381
        </member>
7382
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
7383
            <summary>
7384
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
7385
            </summary>
7386
            <param name="objectType">Type of the object.</param>
7387
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
7388
        </member>
7389
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
7390
            <summary>
7391
            Creates the constructor parameters.
7392
            </summary>
7393
            <param name="constructor">The constructor to create properties for.</param>
7394
            <param name="memberProperties">The type's member properties.</param>
7395
            <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
7396
        </member>
7397
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
7398
            <summary>
7399
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
7400
            </summary>
7401
            <param name="matchingMemberProperty">The matching member property.</param>
7402
            <param name="parameterInfo">The constructor parameter.</param>
7403
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
7404
        </member>
7405
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
7406
            <summary>
7407
            Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for the contract.
7408
            </summary>
7409
            <param name="objectType">Type of the object.</param>
7410
            <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter"/>.</returns>
7411
        </member>
7412
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
7413
            <summary>
7414
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
7415
            </summary>
7416
            <param name="objectType">Type of the object.</param>
7417
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
7418
        </member>
7419
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
7420
            <summary>
7421
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
7422
            </summary>
7423
            <param name="objectType">Type of the object.</param>
7424
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
7425
        </member>
7426
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
7427
            <summary>
7428
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
7429
            </summary>
7430
            <param name="objectType">Type of the object.</param>
7431
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
7432
        </member>
7433
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
7434
            <summary>
7435
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
7436
            </summary>
7437
            <param name="objectType">Type of the object.</param>
7438
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
7439
        </member>
7440
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
7441
            <summary>
7442
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
7443
            </summary>
7444
            <param name="objectType">Type of the object.</param>
7445
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
7446
        </member>
7447
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDynamicContract(System.Type)">
7448
            <summary>
7449
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.
7450
            </summary>
7451
            <param name="objectType">Type of the object.</param>
7452
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.</returns>
7453
        </member>
7454
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
7455
            <summary>
7456
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
7457
            </summary>
7458
            <param name="objectType">Type of the object.</param>
7459
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
7460
        </member>
7461
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
7462
            <summary>
7463
            Determines which contract type is created for the given type.
7464
            </summary>
7465
            <param name="objectType">Type of the object.</param>
7466
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
7467
        </member>
7468
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
7469
            <summary>
7470
            Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
7471
            </summary>
7472
            <param name="type">The type to create properties for.</param>
7473
            /// <param name="memberSerialization">The member serialization mode for the type.</param>
7474
            <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
7475
        </member>
7476
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
7477
            <summary>
7478
            Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
7479
            </summary>
7480
            <param name="member">The member.</param>
7481
            <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
7482
        </member>
7483
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
7484
            <summary>
7485
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
7486
            </summary>
7487
            <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
7488
            <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
7489
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
7490
        </member>
7491
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
7492
            <summary>
7493
            Resolves the name of the property.
7494
            </summary>
7495
            <param name="propertyName">Name of the property.</param>
7496
            <returns>Name of the property.</returns>
7497
        </member>
7498
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
7499
            <summary>
7500
            Gets the resolved name of the property.
7501
            </summary>
7502
            <param name="propertyName">Name of the property.</param>
7503
            <returns>Name of the property.</returns>
7504
        </member>
7505
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
7506
            <summary>
7507
            Gets a value indicating whether members are being get and set using dynamic code generation.
7508
            This value is determined by the runtime permissions available.
7509
            </summary>
7510
            <value>
7511
            	<c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
7512
            </value>
7513
        </member>
7514
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
7515
            <summary>
7516
            Gets or sets the default members search flags.
7517
            </summary>
7518
            <value>The default members search flags.</value>
7519
        </member>
7520
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
7521
            <summary>
7522
            Gets or sets a value indicating whether compiler generated members should be serialized.
7523
            </summary>
7524
            <value>
7525
            	<c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
7526
            </value>
7527
        </member>
7528
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
7529
            <summary>
7530
            Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.
7531
            </summary>
7532
            <value>
7533
            	<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>.
7534
            </value>
7535
        </member>
7536
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
7537
            <summary>
7538
            Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.
7539
            </summary>
7540
            <value>
7541
            	<c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
7542
            </value>
7543
        </member>
7544
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
7545
            <summary>
7546
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
7547
            </summary>
7548
        </member>
7549
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)">
7550
            <summary>
7551
            Resolves the name of the property.
7552
            </summary>
7553
            <param name="propertyName">Name of the property.</param>
7554
            <returns>The property name camel cased.</returns>
7555
        </member>
7556
        <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
7557
            <summary>
7558
            Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7559
            </summary>
7560
        </member>
7561
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
7562
            <summary>
7563
            Resolves a reference to its object.
7564
            </summary>
7565
            <param name="context">The serialization context.</param>
7566
            <param name="reference">The reference to resolve.</param>
7567
            <returns>The object that</returns>
7568
        </member>
7569
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
7570
            <summary>
7571
            Gets the reference for the sepecified object.
7572
            </summary>
7573
            <param name="context">The serialization context.</param>
7574
            <param name="value">The object to get a reference for.</param>
7575
            <returns>The reference to the object.</returns>
7576
        </member>
7577
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
7578
            <summary>
7579
            Determines whether the specified object is referenced.
7580
            </summary>
7581
            <param name="context">The serialization context.</param>
7582
            <param name="value">The object to test for a reference.</param>
7583
            <returns>
7584
            	<c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
7585
            </returns>
7586
        </member>
7587
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
7588
            <summary>
7589
            Adds a reference to the specified object.
7590
            </summary>
7591
            <param name="context">The serialization context.</param>
7592
            <param name="reference">The reference.</param>
7593
            <param name="value">The object to reference.</param>
7594
        </member>
7595
        <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
7596
            <summary>
7597
            The default serialization binder used when resolving and loading classes from type names.
7598
            </summary>
7599
        </member>
7600
        <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
7601
            <summary>
7602
            When overridden in a derived class, controls the binding of a serialized object to a type.
7603
            </summary>
7604
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
7605
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
7606
            <returns>
7607
            The type of the object the formatter creates a new instance of.
7608
            </returns>
7609
        </member>
7610
        <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)">
7611
            <summary>
7612
            When overridden in a derived class, controls the binding of a serialized object to a type.
7613
            </summary>
7614
            <param name="serializedType">The type of the object the formatter creates a new instance of.</param>
7615
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object. </param>
7616
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object. </param>
7617
        </member>
7618
        <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">
7619
            <summary>
7620
            Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.
7621
            </summary>
7622
        </member>
7623
        <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
7624
            <summary>
7625
            Represents a trace writer.
7626
            </summary>
7627
        </member>
7628
        <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
7629
            <summary>
7630
            Writes the specified trace level, message and optional exception.
7631
            </summary>
7632
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
7633
            <param name="message">The trace message.</param>
7634
            <param name="ex">The trace exception. This parameter is optional.</param>
7635
        </member>
7636
        <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
7637
            <summary>
7638
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
7639
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
7640
            <code>Warning</code> and <code>Error</code> messages.
7641
            </summary>
7642
            <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>
7643
        </member>
7644
        <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
7645
            <summary>
7646
            Writes the specified trace level, message and optional exception.
7647
            </summary>
7648
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
7649
            <param name="message">The trace message.</param>
7650
            <param name="ex">The trace exception. This parameter is optional.</param>
7651
        </member>
7652
        <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">
7653
            <summary>
7654
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
7655
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
7656
            <code>Warning</code> and <code>Error</code> messages.
7657
            </summary>
7658
            <value>
7659
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
7660
            </value>
7661
        </member>
7662
        <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
7663
            <summary>
7664
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
7665
            </summary>
7666
        </member>
7667
        <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
7668
            <summary>
7669
            Provides methods to get and set values.
7670
            </summary>
7671
        </member>
7672
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
7673
            <summary>
7674
            Sets the value.
7675
            </summary>
7676
            <param name="target">The target to set the value on.</param>
7677
            <param name="value">The value to set on the target.</param>
7678
        </member>
7679
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
7680
            <summary>
7681
            Gets the value.
7682
            </summary>
7683
            <param name="target">The target to get the value from.</param>
7684
            <returns>The value.</returns>
7685
        </member>
7686
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
7687
            <summary>
7688
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
7689
            </summary>
7690
            <param name="memberInfo">The member info.</param>
7691
        </member>
7692
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
7693
            <summary>
7694
            Sets the value.
7695
            </summary>
7696
            <param name="target">The target to set the value on.</param>
7697
            <param name="value">The value to set on the target.</param>
7698
        </member>
7699
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
7700
            <summary>
7701
            Gets the value.
7702
            </summary>
7703
            <param name="target">The target to get the value from.</param>
7704
            <returns>The value.</returns>
7705
        </member>
7706
        <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
7707
            <summary>
7708
            Provides information surrounding an error.
7709
            </summary>
7710
        </member>
7711
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
7712
            <summary>
7713
            Gets the error.
7714
            </summary>
7715
            <value>The error.</value>
7716
        </member>
7717
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
7718
            <summary>
7719
            Gets the original object that caused the error.
7720
            </summary>
7721
            <value>The original object that caused the error.</value>
7722
        </member>
7723
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
7724
            <summary>
7725
            Gets the member that caused the error.
7726
            </summary>
7727
            <value>The member that caused the error.</value>
7728
        </member>
7729
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
7730
            <summary>
7731
            Gets the path of the JSON location where the error occurred.
7732
            </summary>
7733
            <value>The path of the JSON location where the error occurred.</value>
7734
        </member>
7735
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
7736
            <summary>
7737
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
7738
            </summary>
7739
            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
7740
        </member>
7741
        <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
7742
            <summary>
7743
            Provides data for the Error event.
7744
            </summary>
7745
        </member>
7746
        <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
7747
            <summary>
7748
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
7749
            </summary>
7750
            <param name="currentObject">The current object.</param>
7751
            <param name="errorContext">The error context.</param>
7752
        </member>
7753
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
7754
            <summary>
7755
            Gets the current object the error event is being raised against.
7756
            </summary>
7757
            <value>The current object the error event is being raised against.</value>
7758
        </member>
7759
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
7760
            <summary>
7761
            Gets the error context.
7762
            </summary>
7763
            <value>The error context.</value>
7764
        </member>
7765
        <member name="T:Newtonsoft.Json.Serialization.ExpressionValueProvider">
7766
            <summary>
7767
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
7768
            </summary>
7769
        </member>
7770
        <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.#ctor(System.Reflection.MemberInfo)">
7771
            <summary>
7772
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ExpressionValueProvider"/> class.
7773
            </summary>
7774
            <param name="memberInfo">The member info.</param>
7775
        </member>
7776
        <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.SetValue(System.Object,System.Object)">
7777
            <summary>
7778
            Sets the value.
7779
            </summary>
7780
            <param name="target">The target to set the value on.</param>
7781
            <param name="value">The value to set on the target.</param>
7782
        </member>
7783
        <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.GetValue(System.Object)">
7784
            <summary>
7785
            Gets the value.
7786
            </summary>
7787
            <param name="target">The target to get the value from.</param>
7788
            <returns>The value.</returns>
7789
        </member>
7790
        <member name="T:Newtonsoft.Json.Serialization.IAttributeProvider">
7791
            <summary>
7792
            Provides methods to get attributes.
7793
            </summary>
7794
        </member>
7795
        <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Boolean)">
7796
            <summary>
7797
            Returns a collection of all of the attributes, or an empty collection if there are no attributes.
7798
            </summary>
7799
            <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
7800
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
7801
        </member>
7802
        <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Type,System.Boolean)">
7803
            <summary>
7804
            Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
7805
            </summary>
7806
            <param name="attributeType">The type of the attributes.</param>
7807
            <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
7808
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
7809
        </member>
7810
        <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
7811
            <summary>
7812
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7813
            </summary>
7814
        </member>
7815
        <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
7816
            <summary>
7817
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7818
            </summary>
7819
        </member>
7820
        <member name="T:Newtonsoft.Json.Serialization.JsonContract">
7821
            <summary>
7822
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7823
            </summary>
7824
        </member>
7825
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
7826
            <summary>
7827
            Gets the underlying type for the contract.
7828
            </summary>
7829
            <value>The underlying type for the contract.</value>
7830
        </member>
7831
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
7832
            <summary>
7833
            Gets or sets the type created during deserialization.
7834
            </summary>
7835
            <value>The type created during deserialization.</value>
7836
        </member>
7837
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
7838
            <summary>
7839
            Gets or sets whether this type contract is serialized as a reference.
7840
            </summary>
7841
            <value>Whether this type contract is serialized as a reference.</value>
7842
        </member>
7843
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
7844
            <summary>
7845
            Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for this contract.
7846
            </summary>
7847
            <value>The converter.</value>
7848
        </member>
7849
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">
7850
            <summary>
7851
            Gets or sets all methods called immediately after deserialization of the object.
7852
            </summary>
7853
            <value>The methods called immediately after deserialization of the object.</value>
7854
        </member>
7855
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">
7856
            <summary>
7857
            Gets or sets all methods called during deserialization of the object.
7858
            </summary>
7859
            <value>The methods called during deserialization of the object.</value>
7860
        </member>
7861
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">
7862
            <summary>
7863
            Gets or sets all methods called after serialization of the object graph.
7864
            </summary>
7865
            <value>The methods called after serialization of the object graph.</value>
7866
        </member>
7867
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">
7868
            <summary>
7869
            Gets or sets all methods called before serialization of the object.
7870
            </summary>
7871
            <value>The methods called before serialization of the object.</value>
7872
        </member>
7873
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">
7874
            <summary>
7875
            Gets or sets all method called when an error is thrown during the serialization of the object.
7876
            </summary>
7877
            <value>The methods called when an error is thrown during the serialization of the object.</value>
7878
        </member>
7879
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized">
7880
            <summary>
7881
            Gets or sets the method called immediately after deserialization of the object.
7882
            </summary>
7883
            <value>The method called immediately after deserialization of the object.</value>
7884
        </member>
7885
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing">
7886
            <summary>
7887
            Gets or sets the method called during deserialization of the object.
7888
            </summary>
7889
            <value>The method called during deserialization of the object.</value>
7890
        </member>
7891
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized">
7892
            <summary>
7893
            Gets or sets the method called after serialization of the object graph.
7894
            </summary>
7895
            <value>The method called after serialization of the object graph.</value>
7896
        </member>
7897
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing">
7898
            <summary>
7899
            Gets or sets the method called before serialization of the object.
7900
            </summary>
7901
            <value>The method called before serialization of the object.</value>
7902
        </member>
7903
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError">
7904
            <summary>
7905
            Gets or sets the method called when an error is thrown during the serialization of the object.
7906
            </summary>
7907
            <value>The method called when an error is thrown during the serialization of the object.</value>
7908
        </member>
7909
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
7910
            <summary>
7911
            Gets or sets the default creator method used to create the object.
7912
            </summary>
7913
            <value>The default creator method used to create the object.</value>
7914
        </member>
7915
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
7916
            <summary>
7917
            Gets or sets a value indicating whether the default creator is non public.
7918
            </summary>
7919
            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
7920
        </member>
7921
        <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
7922
            <summary>
7923
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
7924
            </summary>
7925
            <param name="underlyingType">The underlying type for the contract.</param>
7926
        </member>
7927
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
7928
            <summary>
7929
            Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter"/>.
7930
            </summary>
7931
            <value>The converter.</value>
7932
        </member>
7933
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
7934
            <summary>
7935
            Gets or sets a value indicating whether the collection items preserve object references.
7936
            </summary>
7937
            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
7938
        </member>
7939
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
7940
            <summary>
7941
            Gets or sets the collection item reference loop handling.
7942
            </summary>
7943
            <value>The reference loop handling.</value>
7944
        </member>
7945
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
7946
            <summary>
7947
            Gets or sets the collection item type name handling.
7948
            </summary>
7949
            <value>The type name handling.</value>
7950
        </member>
7951
        <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
7952
            <summary>
7953
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
7954
            </summary>
7955
            <param name="underlyingType">The underlying type for the contract.</param>
7956
        </member>
7957
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
7958
            <summary>
7959
            Gets the <see cref="T:System.Type"/> of the collection items.
7960
            </summary>
7961
            <value>The <see cref="T:System.Type"/> of the collection items.</value>
7962
        </member>
7963
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
7964
            <summary>
7965
            Gets a value indicating whether the collection type is a multidimensional array.
7966
            </summary>
7967
            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
7968
        </member>
7969
        <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">
7970
            <summary>
7971
            Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.
7972
            </summary>
7973
            <param name="o">The object that raised the callback event.</param>
7974
            <param name="context">The streaming context.</param>
7975
        </member>
7976
        <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">
7977
            <summary>
7978
            Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.
7979
            </summary>
7980
            <param name="o">The object that raised the callback event.</param>
7981
            <param name="context">The streaming context.</param>
7982
            <param name="errorContext">The error context.</param>
7983
        </member>
7984
        <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">
7985
            <summary>
7986
            Sets extension data for an object during deserialization.
7987
            </summary>
7988
            <param name="o">The object to set extension data on.</param>
7989
            <param name="key">The extension data key.</param>
7990
            <param name="value">The extension data value.</param>
7991
        </member>
7992
        <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">
7993
            <summary>
7994
            Gets extension data for an object during serialization.
7995
            </summary>
7996
            <param name="o">The object to set extension data on.</param>
7997
        </member>
7998
        <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
7999
            <summary>
8000
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8001
            </summary>
8002
        </member>
8003
        <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
8004
            <summary>
8005
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
8006
            </summary>
8007
            <param name="underlyingType">The underlying type for the contract.</param>
8008
        </member>
8009
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver">
8010
            <summary>
8011
            Gets or sets the property name resolver.
8012
            </summary>
8013
            <value>The property name resolver.</value>
8014
        </member>
8015
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
8016
            <summary>
8017
            Gets the <see cref="T:System.Type"/> of the dictionary keys.
8018
            </summary>
8019
            <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
8020
        </member>
8021
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
8022
            <summary>
8023
            Gets the <see cref="T:System.Type"/> of the dictionary values.
8024
            </summary>
8025
            <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
8026
        </member>
8027
        <member name="T:Newtonsoft.Json.Serialization.JsonDynamicContract">
8028
            <summary>
8029
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8030
            </summary>
8031
        </member>
8032
        <member name="M:Newtonsoft.Json.Serialization.JsonDynamicContract.#ctor(System.Type)">
8033
            <summary>
8034
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> class.
8035
            </summary>
8036
            <param name="underlyingType">The underlying type for the contract.</param>
8037
        </member>
8038
        <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.Properties">
8039
            <summary>
8040
            Gets the object's properties.
8041
            </summary>
8042
            <value>The object's properties.</value>
8043
        </member>
8044
        <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.PropertyNameResolver">
8045
            <summary>
8046
            Gets or sets the property name resolver.
8047
            </summary>
8048
            <value>The property name resolver.</value>
8049
        </member>
8050
        <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
8051
            <summary>
8052
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8053
            </summary>
8054
        </member>
8055
        <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
8056
            <summary>
8057
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
8058
            </summary>
8059
            <param name="underlyingType">The underlying type for the contract.</param>
8060
        </member>
8061
        <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
8062
            <summary>
8063
            Gets or sets the ISerializable object constructor.
8064
            </summary>
8065
            <value>The ISerializable object constructor.</value>
8066
        </member>
8067
        <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
8068
            <summary>
8069
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8070
            </summary>
8071
        </member>
8072
        <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
8073
            <summary>
8074
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
8075
            </summary>
8076
            <param name="underlyingType">The underlying type for the contract.</param>
8077
        </member>
8078
        <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
8079
            <summary>
8080
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8081
            </summary>
8082
        </member>
8083
        <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
8084
            <summary>
8085
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
8086
            </summary>
8087
            <param name="underlyingType">The underlying type for the contract.</param>
8088
        </member>
8089
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
8090
            <summary>
8091
            Gets or sets the object member serialization.
8092
            </summary>
8093
            <value>The member object serialization.</value>
8094
        </member>
8095
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
8096
            <summary>
8097
            Gets or sets a value that indicates whether the object's properties are required.
8098
            </summary>
8099
            <value>
8100
            	A value indicating whether the object's properties are required.
8101
            </value>
8102
        </member>
8103
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
8104
            <summary>
8105
            Gets the object's properties.
8106
            </summary>
8107
            <value>The object's properties.</value>
8108
        </member>
8109
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters">
8110
            <summary>
8111
            Gets the constructor parameters required for any non-default constructor
8112
            </summary>
8113
        </member>
8114
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">
8115
            <summary>
8116
            Gets a collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> instances that define the parameters used with <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator"/>.
8117
            </summary>
8118
        </member>
8119
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor">
8120
            <summary>
8121
            Gets or sets the override constructor used to create the object.
8122
            This is set when a constructor is marked up using the
8123
            JsonConstructor attribute.
8124
            </summary>
8125
            <value>The override constructor.</value>
8126
        </member>
8127
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor">
8128
            <summary>
8129
            Gets or sets the parametrized constructor used to create the object.
8130
            </summary>
8131
            <value>The parametrized constructor.</value>
8132
        </member>
8133
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">
8134
            <summary>
8135
            Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
8136
            This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection.
8137
            </summary>
8138
            <value>The function used to create the object.</value>
8139
        </member>
8140
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">
8141
            <summary>
8142
            Gets or sets the extension data setter.
8143
            </summary>
8144
        </member>
8145
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">
8146
            <summary>
8147
            Gets or sets the extension data getter.
8148
            </summary>
8149
        </member>
8150
        <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
8151
            <summary>
8152
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8153
            </summary>
8154
        </member>
8155
        <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
8156
            <summary>
8157
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
8158
            </summary>
8159
            <param name="underlyingType">The underlying type for the contract.</param>
8160
        </member>
8161
        <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
8162
            <summary>
8163
            Maps a JSON property to a .NET member or constructor parameter.
8164
            </summary>
8165
        </member>
8166
        <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
8167
            <summary>
8168
            Returns a <see cref="T:System.String"/> that represents this instance.
8169
            </summary>
8170
            <returns>
8171
            A <see cref="T:System.String"/> that represents this instance.
8172
            </returns>
8173
        </member>
8174
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
8175
            <summary>
8176
            Gets or sets the name of the property.
8177
            </summary>
8178
            <value>The name of the property.</value>
8179
        </member>
8180
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
8181
            <summary>
8182
            Gets or sets the type that declared this property.
8183
            </summary>
8184
            <value>The type that declared this property.</value>
8185
        </member>
8186
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
8187
            <summary>
8188
            Gets or sets the order of serialization and deserialization of a member.
8189
            </summary>
8190
            <value>The numeric order of serialization or deserialization.</value>
8191
        </member>
8192
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
8193
            <summary>
8194
            Gets or sets the name of the underlying member or parameter.
8195
            </summary>
8196
            <value>The name of the underlying member or parameter.</value>
8197
        </member>
8198
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
8199
            <summary>
8200
            Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
8201
            </summary>
8202
            <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>
8203
        </member>
8204
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.AttributeProvider">
8205
            <summary>
8206
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.
8207
            </summary>
8208
            <value>The <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.</value>
8209
        </member>
8210
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
8211
            <summary>
8212
            Gets or sets the type of the property.
8213
            </summary>
8214
            <value>The type of the property.</value>
8215
        </member>
8216
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
8217
            <summary>
8218
            Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> for the property.
8219
            If set this converter takes presidence over the contract converter for the property type.
8220
            </summary>
8221
            <value>The converter.</value>
8222
        </member>
8223
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
8224
            <summary>
8225
            Gets or sets the member converter.
8226
            </summary>
8227
            <value>The member converter.</value>
8228
        </member>
8229
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
8230
            <summary>
8231
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
8232
            </summary>
8233
            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
8234
        </member>
8235
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
8236
            <summary>
8237
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
8238
            </summary>
8239
            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
8240
        </member>
8241
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
8242
            <summary>
8243
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
8244
            </summary>
8245
            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
8246
        </member>
8247
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
8248
            <summary>
8249
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
8250
            </summary>
8251
            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
8252
        </member>
8253
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
8254
            <summary>
8255
            Gets the default value.
8256
            </summary>
8257
            <value>The default value.</value>
8258
        </member>
8259
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
8260
            <summary>
8261
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
8262
            </summary>
8263
            <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
8264
        </member>
8265
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
8266
            <summary>
8267
            Gets or sets a value indicating whether this property preserves object references.
8268
            </summary>
8269
            <value>
8270
            	<c>true</c> if this instance is reference; otherwise, <c>false</c>.
8271
            </value>
8272
        </member>
8273
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
8274
            <summary>
8275
            Gets or sets the property null value handling.
8276
            </summary>
8277
            <value>The null value handling.</value>
8278
        </member>
8279
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
8280
            <summary>
8281
            Gets or sets the property default value handling.
8282
            </summary>
8283
            <value>The default value handling.</value>
8284
        </member>
8285
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
8286
            <summary>
8287
            Gets or sets the property reference loop handling.
8288
            </summary>
8289
            <value>The reference loop handling.</value>
8290
        </member>
8291
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
8292
            <summary>
8293
            Gets or sets the property object creation handling.
8294
            </summary>
8295
            <value>The object creation handling.</value>
8296
        </member>
8297
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
8298
            <summary>
8299
            Gets or sets or sets the type name handling.
8300
            </summary>
8301
            <value>The type name handling.</value>
8302
        </member>
8303
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
8304
            <summary>
8305
            Gets or sets a predicate used to determine whether the property should be serialize.
8306
            </summary>
8307
            <value>A predicate used to determine whether the property should be serialize.</value>
8308
        </member>
8309
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
8310
            <summary>
8311
            Gets or sets a predicate used to determine whether the property should be serialized.
8312
            </summary>
8313
            <value>A predicate used to determine whether the property should be serialized.</value>
8314
        </member>
8315
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
8316
            <summary>
8317
            Gets or sets an action used to set whether the property has been deserialized.
8318
            </summary>
8319
            <value>An action used to set whether the property has been deserialized.</value>
8320
        </member>
8321
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
8322
            <summary>
8323
            Gets or sets the converter used when serializing the property's collection items.
8324
            </summary>
8325
            <value>The collection's items converter.</value>
8326
        </member>
8327
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
8328
            <summary>
8329
            Gets or sets whether this property's collection items are serialized as a reference.
8330
            </summary>
8331
            <value>Whether this property's collection items are serialized as a reference.</value>
8332
        </member>
8333
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
8334
            <summary>
8335
            Gets or sets the the type name handling used when serializing the property's collection items.
8336
            </summary>
8337
            <value>The collection's items type name handling.</value>
8338
        </member>
8339
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
8340
            <summary>
8341
            Gets or sets the the reference loop handling used when serializing the property's collection items.
8342
            </summary>
8343
            <value>The collection's items reference loop handling.</value>
8344
        </member>
8345
        <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
8346
            <summary>
8347
            A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
8348
            </summary>
8349
        </member>
8350
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
8351
            <summary>
8352
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
8353
            </summary>
8354
            <param name="type">The type.</param>
8355
        </member>
8356
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
8357
            <summary>
8358
            When implemented in a derived class, extracts the key from the specified element.
8359
            </summary>
8360
            <param name="item">The element from which to extract the key.</param>
8361
            <returns>The key for the specified element.</returns>
8362
        </member>
8363
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
8364
            <summary>
8365
            Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
8366
            </summary>
8367
            <param name="property">The property to add to the collection.</param>
8368
        </member>
8369
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
8370
            <summary>
8371
            Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
8372
            First attempts to get an exact case match of propertyName and then
8373
            a case insensitive match.
8374
            </summary>
8375
            <param name="propertyName">Name of the property.</param>
8376
            <returns>A matching property if found.</returns>
8377
        </member>
8378
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
8379
            <summary>
8380
            Gets a property by property name.
8381
            </summary>
8382
            <param name="propertyName">The name of the property to get.</param>
8383
            <param name="comparisonType">Type property name string comparison.</param>
8384
            <returns>A matching property if found.</returns>
8385
        </member>
8386
        <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
8387
            <summary>
8388
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8389
            </summary>
8390
        </member>
8391
        <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
8392
            <summary>
8393
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
8394
            </summary>
8395
            <param name="underlyingType">The underlying type for the contract.</param>
8396
        </member>
8397
        <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.CreateJsonConverterInstance(System.Type,System.Object[])">
8398
            <summary>
8399
            Lookup and create an instance of the JsonConverter type described by the argument.
8400
            </summary>
8401
            <param name="converterType">The JsonConverter type to create.</param>
8402
            <param name="converterArgs">Optional arguments to pass to an initializing constructor of the JsonConverter.
8403
            If null, the default constructor is used.</param>
8404
        </member>
8405
        <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.GetJsonConverterCreator(System.Type)">
8406
            <summary>
8407
            Create a factory function that can be used to create instances of a JsonConverter described by the 
8408
            argument type.  The returned function can then be used to either invoke the converter's default ctor, or any 
8409
            parameterized constructors by way of an object array.
8410
            </summary>
8411
        </member>
8412
        <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
8413
            <summary>
8414
            Represents a trace writer that writes to memory. When the trace message limit is
8415
            reached then old trace messages will be removed as new messages are added.
8416
            </summary>
8417
        </member>
8418
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
8419
            <summary>
8420
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.
8421
            </summary>
8422
        </member>
8423
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
8424
            <summary>
8425
            Writes the specified trace level, message and optional exception.
8426
            </summary>
8427
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
8428
            <param name="message">The trace message.</param>
8429
            <param name="ex">The trace exception. This parameter is optional.</param>
8430
        </member>
8431
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
8432
            <summary>
8433
            Returns an enumeration of the most recent trace messages.
8434
            </summary>
8435
            <returns>An enumeration of the most recent trace messages.</returns>
8436
        </member>
8437
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
8438
            <summary>
8439
            Returns a <see cref="T:System.String"/> of the most recent trace messages.
8440
            </summary>
8441
            <returns>
8442
            A <see cref="T:System.String"/> of the most recent trace messages.
8443
            </returns>
8444
        </member>
8445
        <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
8446
            <summary>
8447
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
8448
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
8449
            <code>Warning</code> and <code>Error</code> messages.
8450
            </summary>
8451
            <value>
8452
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
8453
            </value>
8454
        </member>
8455
        <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
8456
            <summary>
8457
            Represents a method that constructs an object.
8458
            </summary>
8459
            <typeparam name="T">The object type to create.</typeparam>
8460
        </member>
8461
        <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
8462
            <summary>
8463
            When applied to a method, specifies that the method is called when an error occurs serializing an object.
8464
            </summary>
8465
        </member>
8466
        <member name="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider">
8467
            <summary>
8468
            Provides methods to get attributes from a <see cref="T:System.Type"/>, <see cref="T:System.Reflection.MemberInfo"/>, <see cref="T:System.Reflection.ParameterInfo"/> or <see cref="T:System.Reflection.Assembly"/>.
8469
            </summary>
8470
        </member>
8471
        <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.#ctor(System.Object)">
8472
            <summary>
8473
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider"/> class.
8474
            </summary>
8475
        </member>
8476
        <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Boolean)">
8477
            <summary>
8478
            Returns a collection of all of the attributes, or an empty collection if there are no attributes.
8479
            </summary>
8480
            <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
8481
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
8482
        </member>
8483
        <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Type,System.Boolean)">
8484
            <summary>
8485
            Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
8486
            </summary>
8487
            <param name="attributeType">The type of the attributes.</param>
8488
            <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
8489
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
8490
        </member>
8491
        <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
8492
            <summary>
8493
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
8494
            </summary>
8495
        </member>
8496
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
8497
            <summary>
8498
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
8499
            </summary>
8500
            <param name="memberInfo">The member info.</param>
8501
        </member>
8502
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
8503
            <summary>
8504
            Sets the value.
8505
            </summary>
8506
            <param name="target">The target to set the value on.</param>
8507
            <param name="value">The value to set on the target.</param>
8508
        </member>
8509
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
8510
            <summary>
8511
            Gets the value.
8512
            </summary>
8513
            <param name="target">The target to get the value from.</param>
8514
            <returns>The value.</returns>
8515
        </member>
8516
        <member name="T:Newtonsoft.Json.StringEscapeHandling">
8517
            <summary>
8518
            Specifies how strings are escaped when writing JSON text.
8519
            </summary>
8520
        </member>
8521
        <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
8522
            <summary>
8523
            Only control characters (e.g. newline) are escaped.
8524
            </summary>
8525
        </member>
8526
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
8527
            <summary>
8528
            All non-ASCII and control characters (e.g. newline) are escaped.
8529
            </summary>
8530
        </member>
8531
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
8532
            <summary>
8533
            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.
8534
            </summary>
8535
        </member>
8536
        <member name="T:Newtonsoft.Json.TypeNameHandling">
8537
            <summary>
8538
            Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8539
            </summary>
8540
        </member>
8541
        <member name="F:Newtonsoft.Json.TypeNameHandling.None">
8542
            <summary>
8543
            Do not include the .NET type name when serializing types.
8544
            </summary>
8545
        </member>
8546
        <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
8547
            <summary>
8548
            Include the .NET type name when serializing into a JSON object structure.
8549
            </summary>
8550
        </member>
8551
        <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
8552
            <summary>
8553
            Include the .NET type name when serializing into a JSON array structure.
8554
            </summary>
8555
        </member>
8556
        <member name="F:Newtonsoft.Json.TypeNameHandling.All">
8557
            <summary>
8558
            Always include the .NET type name when serializing.
8559
            </summary>
8560
        </member>
8561
        <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
8562
            <summary>
8563
            Include the .NET type name when the type of the object being serialized is not the same as its declared type.
8564
            </summary>
8565
        </member>
8566
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
8567
            <summary>
8568
            Determines whether the collection is null or empty.
8569
            </summary>
8570
            <param name="collection">The collection.</param>
8571
            <returns>
8572
            	<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
8573
            </returns>
8574
        </member>
8575
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
8576
            <summary>
8577
            Adds the elements of the specified collection to the specified generic IList.
8578
            </summary>
8579
            <param name="initial">The list to add to.</param>
8580
            <param name="collection">The collection of elements to add.</param>
8581
        </member>
8582
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
8583
            <summary>
8584
            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
8585
            </summary>
8586
            <typeparam name="TSource">The type of the elements of source.</typeparam>
8587
            <param name="list">A sequence in which to locate a value.</param>
8588
            <param name="value">The object to locate in the sequence</param>
8589
            <param name="comparer">An equality comparer to compare values.</param>
8590
            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
8591
        </member>
8592
        <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
8593
            <summary>
8594
            Converts the value to the specified type. If the value is unable to be converted, the
8595
            value is checked whether it assignable to the specified type.
8596
            </summary>
8597
            <param name="initialValue">The value to convert.</param>
8598
            <param name="culture">The culture to use when converting.</param>
8599
            <param name="targetType">The type to convert or cast the value to.</param>
8600
            <returns>
8601
            The converted type. If conversion was unsuccessful, the initial value
8602
            is returned if assignable to the target type.
8603
            </returns>
8604
        </member>
8605
        <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodWithResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback,Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
8606
            <summary>
8607
            Helper method for generating a MetaObject which calls a
8608
            specific method on Dynamic that returns a result
8609
            </summary>
8610
        </member>
8611
        <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodReturnLast(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
8612
            <summary>
8613
            Helper method for generating a MetaObject which calls a
8614
            specific method on Dynamic, but uses one of the arguments for
8615
            the result.
8616
            </summary>
8617
        </member>
8618
        <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodNoResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
8619
            <summary>
8620
            Helper method for generating a MetaObject which calls a
8621
            specific method on Dynamic, but uses one of the arguments for
8622
            the result.
8623
            </summary>
8624
        </member>
8625
        <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.GetRestrictions">
8626
            <summary>
8627
            Returns a Restrictions object which includes our current restrictions merged
8628
            with a restriction limiting our type
8629
            </summary>
8630
        </member>
8631
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
8632
            <summary>
8633
            Gets a dictionary of the names and values of an Enum type.
8634
            </summary>
8635
            <returns></returns>
8636
        </member>
8637
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
8638
            <summary>
8639
            Gets a dictionary of the names and values of an Enum type.
8640
            </summary>
8641
            <param name="enumType">The enum type to get names and values for.</param>
8642
            <returns></returns>
8643
        </member>
8644
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
8645
            <summary>
8646
            Gets the type of the typed collection's items.
8647
            </summary>
8648
            <param name="type">The type.</param>
8649
            <returns>The type of the typed collection's items.</returns>
8650
        </member>
8651
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
8652
            <summary>
8653
            Gets the member's underlying type.
8654
            </summary>
8655
            <param name="member">The member.</param>
8656
            <returns>The underlying type of the member.</returns>
8657
        </member>
8658
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
8659
            <summary>
8660
            Determines whether the member is an indexed property.
8661
            </summary>
8662
            <param name="member">The member.</param>
8663
            <returns>
8664
            	<c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
8665
            </returns>
8666
        </member>
8667
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
8668
            <summary>
8669
            Determines whether the property is an indexed property.
8670
            </summary>
8671
            <param name="property">The property.</param>
8672
            <returns>
8673
            	<c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
8674
            </returns>
8675
        </member>
8676
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
8677
            <summary>
8678
            Gets the member's value on the object.
8679
            </summary>
8680
            <param name="member">The member.</param>
8681
            <param name="target">The target object.</param>
8682
            <returns>The member's value on the object.</returns>
8683
        </member>
8684
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
8685
            <summary>
8686
            Sets the member's value on the target object.
8687
            </summary>
8688
            <param name="member">The member.</param>
8689
            <param name="target">The target.</param>
8690
            <param name="value">The value.</param>
8691
        </member>
8692
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
8693
            <summary>
8694
            Determines whether the specified MemberInfo can be read.
8695
            </summary>
8696
            <param name="member">The MemberInfo to determine whether can be read.</param>
8697
            /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
8698
            <returns>
8699
            	<c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
8700
            </returns>
8701
        </member>
8702
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
8703
            <summary>
8704
            Determines whether the specified MemberInfo can be set.
8705
            </summary>
8706
            <param name="member">The MemberInfo to determine whether can be set.</param>
8707
            <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
8708
            <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
8709
            <returns>
8710
            	<c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
8711
            </returns>
8712
        </member>
8713
        <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
8714
            <summary>
8715
            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
8716
            </summary>
8717
        </member>
8718
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
8719
            <summary>
8720
            Determines whether the string is all white space. Empty string will return false.
8721
            </summary>
8722
            <param name="s">The string to test whether it is all white space.</param>
8723
            <returns>
8724
            	<c>true</c> if the string is all white space; otherwise, <c>false</c>.
8725
            </returns>
8726
        </member>
8727
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
8728
            <summary>
8729
            Nulls an empty string.
8730
            </summary>
8731
            <param name="s">The string.</param>
8732
            <returns>Null if the string was null, otherwise the string unchanged.</returns>
8733
        </member>
8734
        <member name="T:Newtonsoft.Json.WriteState">
8735
            <summary>
8736
            Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
8737
            </summary>
8738
        </member>
8739
        <member name="F:Newtonsoft.Json.WriteState.Error">
8740
            <summary>
8741
            An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
8742
            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.
8743
            Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown. 
8744
            </summary>
8745
        </member>
8746
        <member name="F:Newtonsoft.Json.WriteState.Closed">
8747
            <summary>
8748
            The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called. 
8749
            </summary>
8750
        </member>
8751
        <member name="F:Newtonsoft.Json.WriteState.Object">
8752
            <summary>
8753
            An object is being written. 
8754
            </summary>
8755
        </member>
8756
        <member name="F:Newtonsoft.Json.WriteState.Array">
8757
            <summary>
8758
            A array is being written.
8759
            </summary>
8760
        </member>
8761
        <member name="F:Newtonsoft.Json.WriteState.Constructor">
8762
            <summary>
8763
            A constructor is being written.
8764
            </summary>
8765
        </member>
8766
        <member name="F:Newtonsoft.Json.WriteState.Property">
8767
            <summary>
8768
            A property is being written.
8769
            </summary>
8770
        </member>
8771
        <member name="F:Newtonsoft.Json.WriteState.Start">
8772
            <summary>
8773
            A write method has not been called.
8774
            </summary>
8775
        </member>
8776
    </members>
8777
</doc>