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