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.Skip">
76
            <summary>
77
            Skips the children of the current token.
78
            </summary>
79
        </member>
80
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
81
            <summary>
82
            Sets the current token.
83
            </summary>
84
            <param name="newToken">The new token.</param>
85
        </member>
86
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
87
            <summary>
88
            Sets the current token and value.
89
            </summary>
90
            <param name="newToken">The new token.</param>
91
            <param name="value">The value.</param>
92
        </member>
93
        <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
94
            <summary>
95
            Sets the state based on current token type.
96
            </summary>
97
        </member>
98
        <member name="M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose">
99
            <summary>
100
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
101
            </summary>
102
        </member>
103
        <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
104
            <summary>
105
            Releases unmanaged and - optionally - managed resources
106
            </summary>
107
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
108
        </member>
109
        <member name="M:Newtonsoft.Json.JsonReader.Close">
110
            <summary>
111
            Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed. 
112
            </summary>
113
        </member>
114
        <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
115
            <summary>
116
            Gets the current reader state.
117
            </summary>
118
            <value>The current reader state.</value>
119
        </member>
120
        <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
121
            <summary>
122
            Gets or sets a value indicating whether the underlying stream or
123
            <see cref="T:System.IO.TextReader"/> should be closed when the reader is closed.
124
            </summary>
125
            <value>
126
            true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
127
            the reader is closed; otherwise false. The default is true.
128
            </value>
129
        </member>
130
        <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">
131
            <summary>
132
            Gets or sets a value indicating whether multiple pieces of JSON content can
133
            be read from a continuous stream without erroring.
134
            </summary>
135
            <value>
136
            true to support reading multiple pieces of JSON content; otherwise false. The default is false.
137
            </value>
138
        </member>
139
        <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
140
            <summary>
141
            Gets the quotation mark character used to enclose the value of a string.
142
            </summary>
143
        </member>
144
        <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
145
            <summary>
146
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when reading JSON.
147
            </summary>
148
        </member>
149
        <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
150
            <summary>
151
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
152
            </summary>
153
        </member>
154
        <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
155
            <summary>
156
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
157
            </summary>
158
        </member>
159
        <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
160
            <summary>
161
            Get or set how custom date formatted strings are parsed when reading JSON.
162
            </summary>
163
        </member>
164
        <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
165
            <summary>
166
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
167
            </summary>
168
        </member>
169
        <member name="P:Newtonsoft.Json.JsonReader.TokenType">
170
            <summary>
171
            Gets the type of the current JSON token. 
172
            </summary>
173
        </member>
174
        <member name="P:Newtonsoft.Json.JsonReader.Value">
175
            <summary>
176
            Gets the text value of the current JSON token.
177
            </summary>
178
        </member>
179
        <member name="P:Newtonsoft.Json.JsonReader.ValueType">
180
            <summary>
181
            Gets The Common Language Runtime (CLR) type for the current JSON token.
182
            </summary>
183
        </member>
184
        <member name="P:Newtonsoft.Json.JsonReader.Depth">
185
            <summary>
186
            Gets the depth of the current token in the JSON document.
187
            </summary>
188
            <value>The depth of the current token in the JSON document.</value>
189
        </member>
190
        <member name="P:Newtonsoft.Json.JsonReader.Path">
191
            <summary>
192
            Gets the path of the current JSON token. 
193
            </summary>
194
        </member>
195
        <member name="P:Newtonsoft.Json.JsonReader.Culture">
196
            <summary>
197
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
198
            </summary>
199
        </member>
200
        <member name="T:Newtonsoft.Json.JsonReader.State">
201
            <summary>
202
            Specifies the state of the reader.
203
            </summary>
204
        </member>
205
        <member name="F:Newtonsoft.Json.JsonReader.State.Start">
206
            <summary>
207
            The Read method has not been called.
208
            </summary>
209
        </member>
210
        <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
211
            <summary>
212
            The end of the file has been reached successfully.
213
            </summary>
214
        </member>
215
        <member name="F:Newtonsoft.Json.JsonReader.State.Property">
216
            <summary>
217
            Reader is at a property.
218
            </summary>
219
        </member>
220
        <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
221
            <summary>
222
            Reader is at the start of an object.
223
            </summary>
224
        </member>
225
        <member name="F:Newtonsoft.Json.JsonReader.State.Object">
226
            <summary>
227
            Reader is in an object.
228
            </summary>
229
        </member>
230
        <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
231
            <summary>
232
            Reader is at the start of an array.
233
            </summary>
234
        </member>
235
        <member name="F:Newtonsoft.Json.JsonReader.State.Array">
236
            <summary>
237
            Reader is in an array.
238
            </summary>
239
        </member>
240
        <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
241
            <summary>
242
            The Close method has been called.
243
            </summary>
244
        </member>
245
        <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
246
            <summary>
247
            Reader has just read a value.
248
            </summary>
249
        </member>
250
        <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
251
            <summary>
252
            Reader is at the start of a constructor.
253
            </summary>
254
        </member>
255
        <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
256
            <summary>
257
            Reader in a constructor.
258
            </summary>
259
        </member>
260
        <member name="F:Newtonsoft.Json.JsonReader.State.Error">
261
            <summary>
262
            An error occurred that prevents the read operation from continuing.
263
            </summary>
264
        </member>
265
        <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
266
            <summary>
267
            The end of the file has been reached successfully.
268
            </summary>
269
        </member>
270
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
271
            <summary>
272
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
273
            </summary>
274
            <param name="stream">The stream.</param>
275
        </member>
276
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
277
            <summary>
278
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
279
            </summary>
280
            <param name="reader">The reader.</param>
281
        </member>
282
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
283
            <summary>
284
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
285
            </summary>
286
            <param name="stream">The stream.</param>
287
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
288
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
289
        </member>
290
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
291
            <summary>
292
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
293
            </summary>
294
            <param name="reader">The reader.</param>
295
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
296
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
297
        </member>
298
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
299
            <summary>
300
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
301
            </summary>
302
            <returns>
303
            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.
304
            </returns>
305
        </member>
306
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal">
307
            <summary>
308
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
309
            </summary>
310
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
311
        </member>
312
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
313
            <summary>
314
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
315
            </summary>
316
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
317
        </member>
318
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsString">
319
            <summary>
320
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
321
            </summary>
322
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
323
        </member>
324
        <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime">
325
            <summary>
326
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
327
            </summary>
328
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
329
        </member>
330
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
331
            <summary>
332
            Reads the next JSON token from the stream.
333
            </summary>
334
            <returns>
335
            true if the next token was read successfully; false if there are no more tokens to read.
336
            </returns>
337
        </member>
338
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
339
            <summary>
340
            Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed.
341
            </summary>
342
        </member>
343
        <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
344
            <summary>
345
            Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.
346
            </summary>
347
            <value>
348
            	<c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
349
            </value>
350
        </member>
351
        <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
352
            <summary>
353
            Gets or sets a value indicating whether the root object will be read as a JSON array.
354
            </summary>
355
            <value>
356
            	<c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
357
            </value>
358
        </member>
359
        <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
360
            <summary>
361
            Gets or sets the <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.
362
            </summary>
363
            <value>The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
364
        </member>
365
        <member name="T:Newtonsoft.Json.Bson.BsonWriter">
366
            <summary>
367
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
368
            </summary>
369
        </member>
370
        <member name="T:Newtonsoft.Json.JsonWriter">
371
            <summary>
372
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
373
            </summary>
374
        </member>
375
        <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
376
            <summary>
377
            Creates an instance of the <c>JsonWriter</c> class. 
378
            </summary>
379
        </member>
380
        <member name="M:Newtonsoft.Json.JsonWriter.Flush">
381
            <summary>
382
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
383
            </summary>
384
        </member>
385
        <member name="M:Newtonsoft.Json.JsonWriter.Close">
386
            <summary>
387
            Closes this stream and the underlying stream.
388
            </summary>
389
        </member>
390
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
391
            <summary>
392
            Writes the beginning of a Json object.
393
            </summary>
394
        </member>
395
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
396
            <summary>
397
            Writes the end of a Json object.
398
            </summary>
399
        </member>
400
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
401
            <summary>
402
            Writes the beginning of a Json array.
403
            </summary>
404
        </member>
405
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
406
            <summary>
407
            Writes the end of an array.
408
            </summary>
409
        </member>
410
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
411
            <summary>
412
            Writes the start of a constructor with the given name.
413
            </summary>
414
            <param name="name">The name of the constructor.</param>
415
        </member>
416
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
417
            <summary>
418
            Writes the end constructor.
419
            </summary>
420
        </member>
421
        <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
422
            <summary>
423
            Writes the property name of a name/value pair on a JSON object.
424
            </summary>
425
            <param name="name">The name of the property.</param>
426
        </member>
427
        <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">
428
            <summary>
429
            Writes the property name of a name/value pair on a JSON object.
430
            </summary>
431
            <param name="name">The name of the property.</param>
432
            <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
433
        </member>
434
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
435
            <summary>
436
            Writes the end of the current Json object or array.
437
            </summary>
438
        </member>
439
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
440
            <summary>
441
            Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.
442
            </summary>
443
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
444
        </member>
445
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">
446
            <summary>
447
            Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
448
            </summary>
449
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
450
            <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
451
        </member>
452
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken,System.Object)">
453
            <summary>
454
            Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.
455
            </summary>
456
            <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
457
            <param name="value">
458
            The value to write.
459
            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"/>.
460
            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>
461
        </member>
462
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken)">
463
            <summary>
464
            Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token.
465
            </summary>
466
            <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
467
        </member>
468
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
469
            <summary>
470
            Writes the specified end token.
471
            </summary>
472
            <param name="token">The end token to write.</param>
473
        </member>
474
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
475
            <summary>
476
            Writes indent characters.
477
            </summary>
478
        </member>
479
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
480
            <summary>
481
            Writes the JSON value delimiter.
482
            </summary>
483
        </member>
484
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
485
            <summary>
486
            Writes an indent space.
487
            </summary>
488
        </member>
489
        <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
490
            <summary>
491
            Writes a null value.
492
            </summary>
493
        </member>
494
        <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
495
            <summary>
496
            Writes an undefined value.
497
            </summary>
498
        </member>
499
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
500
            <summary>
501
            Writes raw JSON without changing the writer's state.
502
            </summary>
503
            <param name="json">The raw JSON to write.</param>
504
        </member>
505
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
506
            <summary>
507
            Writes raw JSON where a value is expected and updates the writer's state.
508
            </summary>
509
            <param name="json">The raw JSON to write.</param>
510
        </member>
511
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
512
            <summary>
513
            Writes a <see cref="T:System.String"/> value.
514
            </summary>
515
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
516
        </member>
517
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
518
            <summary>
519
            Writes a <see cref="T:System.Int32"/> value.
520
            </summary>
521
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
522
        </member>
523
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
524
            <summary>
525
            Writes a <see cref="T:System.UInt32"/> value.
526
            </summary>
527
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
528
        </member>
529
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
530
            <summary>
531
            Writes a <see cref="T:System.Int64"/> value.
532
            </summary>
533
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
534
        </member>
535
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
536
            <summary>
537
            Writes a <see cref="T:System.UInt64"/> value.
538
            </summary>
539
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
540
        </member>
541
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
542
            <summary>
543
            Writes a <see cref="T:System.Single"/> value.
544
            </summary>
545
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
546
        </member>
547
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
548
            <summary>
549
            Writes a <see cref="T:System.Double"/> value.
550
            </summary>
551
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
552
        </member>
553
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
554
            <summary>
555
            Writes a <see cref="T:System.Boolean"/> value.
556
            </summary>
557
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
558
        </member>
559
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
560
            <summary>
561
            Writes a <see cref="T:System.Int16"/> value.
562
            </summary>
563
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
564
        </member>
565
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
566
            <summary>
567
            Writes a <see cref="T:System.UInt16"/> value.
568
            </summary>
569
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
570
        </member>
571
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
572
            <summary>
573
            Writes a <see cref="T:System.Char"/> value.
574
            </summary>
575
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
576
        </member>
577
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
578
            <summary>
579
            Writes a <see cref="T:System.Byte"/> value.
580
            </summary>
581
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
582
        </member>
583
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
584
            <summary>
585
            Writes a <see cref="T:System.SByte"/> value.
586
            </summary>
587
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
588
        </member>
589
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
590
            <summary>
591
            Writes a <see cref="T:System.Decimal"/> value.
592
            </summary>
593
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
594
        </member>
595
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
596
            <summary>
597
            Writes a <see cref="T:System.DateTime"/> value.
598
            </summary>
599
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
600
        </member>
601
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
602
            <summary>
603
            Writes a <see cref="T:System.Guid"/> value.
604
            </summary>
605
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
606
        </member>
607
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
608
            <summary>
609
            Writes a <see cref="T:System.TimeSpan"/> value.
610
            </summary>
611
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
612
        </member>
613
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
614
            <summary>
615
            Writes a <see cref="T:System.Nullable`1"/> value.
616
            </summary>
617
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
618
        </member>
619
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
620
            <summary>
621
            Writes a <see cref="T:System.Nullable`1"/> value.
622
            </summary>
623
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
624
        </member>
625
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
626
            <summary>
627
            Writes a <see cref="T:System.Nullable`1"/> value.
628
            </summary>
629
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
630
        </member>
631
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
632
            <summary>
633
            Writes a <see cref="T:System.Nullable`1"/> value.
634
            </summary>
635
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
636
        </member>
637
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
638
            <summary>
639
            Writes a <see cref="T:System.Nullable`1"/> value.
640
            </summary>
641
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
642
        </member>
643
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
644
            <summary>
645
            Writes a <see cref="T:System.Nullable`1"/> value.
646
            </summary>
647
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
648
        </member>
649
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
650
            <summary>
651
            Writes a <see cref="T:System.Nullable`1"/> value.
652
            </summary>
653
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
654
        </member>
655
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
656
            <summary>
657
            Writes a <see cref="T:System.Nullable`1"/> value.
658
            </summary>
659
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
660
        </member>
661
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
662
            <summary>
663
            Writes a <see cref="T:System.Nullable`1"/> value.
664
            </summary>
665
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
666
        </member>
667
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
668
            <summary>
669
            Writes a <see cref="T:System.Nullable`1"/> value.
670
            </summary>
671
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
672
        </member>
673
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
674
            <summary>
675
            Writes a <see cref="T:System.Nullable`1"/> value.
676
            </summary>
677
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
678
        </member>
679
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
680
            <summary>
681
            Writes a <see cref="T:System.Nullable`1"/> value.
682
            </summary>
683
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
684
        </member>
685
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
686
            <summary>
687
            Writes a <see cref="T:System.Nullable`1"/> value.
688
            </summary>
689
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
690
        </member>
691
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
692
            <summary>
693
            Writes a <see cref="T:System.Nullable`1"/> value.
694
            </summary>
695
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
696
        </member>
697
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
698
            <summary>
699
            Writes a <see cref="T:System.Nullable`1"/> value.
700
            </summary>
701
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
702
        </member>
703
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
704
            <summary>
705
            Writes a <see cref="T:System.Nullable`1"/> value.
706
            </summary>
707
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
708
        </member>
709
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
710
            <summary>
711
            Writes a <see cref="T:System.Byte"/>[] value.
712
            </summary>
713
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
714
        </member>
715
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
716
            <summary>
717
            Writes a <see cref="T:System.Uri"/> value.
718
            </summary>
719
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
720
        </member>
721
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
722
            <summary>
723
            Writes a <see cref="T:System.Object"/> value.
724
            An error will raised if the value cannot be written as a single JSON token.
725
            </summary>
726
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
727
        </member>
728
        <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
729
            <summary>
730
            Writes out a comment <code>/*...*/</code> containing the specified text. 
731
            </summary>
732
            <param name="text">Text to place inside the comment.</param>
733
        </member>
734
        <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
735
            <summary>
736
            Writes out the given white space.
737
            </summary>
738
            <param name="ws">The string of white space characters.</param>
739
        </member>
740
        <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">
741
            <summary>
742
            Sets the state of the JsonWriter,
743
            </summary>
744
            <param name="token">The JsonToken being written.</param>
745
            <param name="value">The value being written.</param>
746
        </member>
747
        <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
748
            <summary>
749
            Gets or sets a value indicating whether the underlying stream or
750
            <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed.
751
            </summary>
752
            <value>
753
            true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
754
            the writer is closed; otherwise false. The default is true.
755
            </value>
756
        </member>
757
        <member name="P:Newtonsoft.Json.JsonWriter.Top">
758
            <summary>
759
            Gets the top.
760
            </summary>
761
            <value>The top.</value>
762
        </member>
763
        <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
764
            <summary>
765
            Gets the state of the writer.
766
            </summary>
767
        </member>
768
        <member name="P:Newtonsoft.Json.JsonWriter.Path">
769
            <summary>
770
            Gets the path of the writer. 
771
            </summary>
772
        </member>
773
        <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
774
            <summary>
775
            Indicates how JSON text output is formatted.
776
            </summary>
777
        </member>
778
        <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
779
            <summary>
780
            Get or set how dates are written to JSON text.
781
            </summary>
782
        </member>
783
        <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
784
            <summary>
785
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when writing JSON text.
786
            </summary>
787
        </member>
788
        <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
789
            <summary>
790
            Get or set how strings are escaped when writing JSON text.
791
            </summary>
792
        </member>
793
        <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
794
            <summary>
795
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
796
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
797
            are written to JSON text.
798
            </summary>
799
        </member>
800
        <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
801
            <summary>
802
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
803
            </summary>
804
        </member>
805
        <member name="P:Newtonsoft.Json.JsonWriter.Culture">
806
            <summary>
807
            Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
808
            </summary>
809
        </member>
810
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
811
            <summary>
812
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
813
            </summary>
814
            <param name="stream">The stream.</param>
815
        </member>
816
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
817
            <summary>
818
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
819
            </summary>
820
            <param name="writer">The writer.</param>
821
        </member>
822
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
823
            <summary>
824
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
825
            </summary>
826
        </member>
827
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
828
            <summary>
829
            Writes the end.
830
            </summary>
831
            <param name="token">The token.</param>
832
        </member>
833
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
834
            <summary>
835
            Writes out a comment <code>/*...*/</code> containing the specified text.
836
            </summary>
837
            <param name="text">Text to place inside the comment.</param>
838
        </member>
839
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
840
            <summary>
841
            Writes the start of a constructor with the given name.
842
            </summary>
843
            <param name="name">The name of the constructor.</param>
844
        </member>
845
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
846
            <summary>
847
            Writes raw JSON.
848
            </summary>
849
            <param name="json">The raw JSON to write.</param>
850
        </member>
851
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
852
            <summary>
853
            Writes raw JSON where a value is expected and updates the writer's state.
854
            </summary>
855
            <param name="json">The raw JSON to write.</param>
856
        </member>
857
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
858
            <summary>
859
            Writes the beginning of a Json array.
860
            </summary>
861
        </member>
862
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
863
            <summary>
864
            Writes the beginning of a Json object.
865
            </summary>
866
        </member>
867
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
868
            <summary>
869
            Writes the property name of a name/value pair on a Json object.
870
            </summary>
871
            <param name="name">The name of the property.</param>
872
        </member>
873
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
874
            <summary>
875
            Closes this stream and the underlying stream.
876
            </summary>
877
        </member>
878
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">
879
            <summary>
880
            Writes a <see cref="T:System.Object"/> value.
881
            An error will raised if the value cannot be written as a single JSON token.
882
            </summary>
883
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
884
        </member>
885
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
886
            <summary>
887
            Writes a null value.
888
            </summary>
889
        </member>
890
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
891
            <summary>
892
            Writes an undefined value.
893
            </summary>
894
        </member>
895
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
896
            <summary>
897
            Writes a <see cref="T:System.String"/> value.
898
            </summary>
899
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
900
        </member>
901
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
902
            <summary>
903
            Writes a <see cref="T:System.Int32"/> value.
904
            </summary>
905
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
906
        </member>
907
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
908
            <summary>
909
            Writes a <see cref="T:System.UInt32"/> value.
910
            </summary>
911
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
912
        </member>
913
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
914
            <summary>
915
            Writes a <see cref="T:System.Int64"/> value.
916
            </summary>
917
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
918
        </member>
919
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
920
            <summary>
921
            Writes a <see cref="T:System.UInt64"/> value.
922
            </summary>
923
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
924
        </member>
925
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
926
            <summary>
927
            Writes a <see cref="T:System.Single"/> value.
928
            </summary>
929
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
930
        </member>
931
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
932
            <summary>
933
            Writes a <see cref="T:System.Double"/> value.
934
            </summary>
935
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
936
        </member>
937
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
938
            <summary>
939
            Writes a <see cref="T:System.Boolean"/> value.
940
            </summary>
941
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
942
        </member>
943
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
944
            <summary>
945
            Writes a <see cref="T:System.Int16"/> value.
946
            </summary>
947
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
948
        </member>
949
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
950
            <summary>
951
            Writes a <see cref="T:System.UInt16"/> value.
952
            </summary>
953
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
954
        </member>
955
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
956
            <summary>
957
            Writes a <see cref="T:System.Char"/> value.
958
            </summary>
959
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
960
        </member>
961
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
962
            <summary>
963
            Writes a <see cref="T:System.Byte"/> value.
964
            </summary>
965
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
966
        </member>
967
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
968
            <summary>
969
            Writes a <see cref="T:System.SByte"/> value.
970
            </summary>
971
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
972
        </member>
973
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
974
            <summary>
975
            Writes a <see cref="T:System.Decimal"/> value.
976
            </summary>
977
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
978
        </member>
979
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
980
            <summary>
981
            Writes a <see cref="T:System.DateTime"/> value.
982
            </summary>
983
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
984
        </member>
985
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
986
            <summary>
987
            Writes a <see cref="T:System.Byte"/>[] value.
988
            </summary>
989
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
990
        </member>
991
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
992
            <summary>
993
            Writes a <see cref="T:System.Guid"/> value.
994
            </summary>
995
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
996
        </member>
997
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
998
            <summary>
999
            Writes a <see cref="T:System.TimeSpan"/> value.
1000
            </summary>
1001
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
1002
        </member>
1003
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
1004
            <summary>
1005
            Writes a <see cref="T:System.Uri"/> value.
1006
            </summary>
1007
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
1008
        </member>
1009
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
1010
            <summary>
1011
            Writes a <see cref="T:System.Byte"/>[] value that represents a BSON object id.
1012
            </summary>
1013
            <param name="value">The Object ID value to write.</param>
1014
        </member>
1015
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
1016
            <summary>
1017
            Writes a BSON regex.
1018
            </summary>
1019
            <param name="pattern">The regex pattern.</param>
1020
            <param name="options">The regex options.</param>
1021
        </member>
1022
        <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
1023
            <summary>
1024
            Gets or sets the <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.
1025
            When set to <see cref="F:System.DateTimeKind.Unspecified"/> no conversion will occur.
1026
            </summary>
1027
            <value>The <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
1028
        </member>
1029
        <member name="T:Newtonsoft.Json.ConstructorHandling">
1030
            <summary>
1031
            Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1032
            </summary>
1033
        </member>
1034
        <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
1035
            <summary>
1036
            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.
1037
            </summary>
1038
        </member>
1039
        <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
1040
            <summary>
1041
            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.
1042
            </summary>
1043
        </member>
1044
        <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
1045
            <summary>
1046
            Converts a binary value to and from a base 64 string value.
1047
            </summary>
1048
        </member>
1049
        <member name="T:Newtonsoft.Json.JsonConverter">
1050
            <summary>
1051
            Converts an object to and from JSON.
1052
            </summary>
1053
        </member>
1054
        <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1055
            <summary>
1056
            Writes the JSON representation of the object.
1057
            </summary>
1058
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1059
            <param name="value">The value.</param>
1060
            <param name="serializer">The calling serializer.</param>
1061
        </member>
1062
        <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1063
            <summary>
1064
            Reads the JSON representation of the object.
1065
            </summary>
1066
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1067
            <param name="objectType">Type of the object.</param>
1068
            <param name="existingValue">The existing value of object being read.</param>
1069
            <param name="serializer">The calling serializer.</param>
1070
            <returns>The object value.</returns>
1071
        </member>
1072
        <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
1073
            <summary>
1074
            Determines whether this instance can convert the specified object type.
1075
            </summary>
1076
            <param name="objectType">Type of the object.</param>
1077
            <returns>
1078
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1079
            </returns>
1080
        </member>
1081
        <member name="M:Newtonsoft.Json.JsonConverter.GetSchema">
1082
            <summary>
1083
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.
1084
            </summary>
1085
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns>
1086
        </member>
1087
        <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
1088
            <summary>
1089
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
1090
            </summary>
1091
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
1092
        </member>
1093
        <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
1094
            <summary>
1095
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1096
            </summary>
1097
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
1098
        </member>
1099
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1100
            <summary>
1101
            Writes the JSON representation of the object.
1102
            </summary>
1103
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1104
            <param name="value">The value.</param>
1105
            <param name="serializer">The calling serializer.</param>
1106
        </member>
1107
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1108
            <summary>
1109
            Reads the JSON representation of the object.
1110
            </summary>
1111
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1112
            <param name="objectType">Type of the object.</param>
1113
            <param name="existingValue">The existing value of object being read.</param>
1114
            <param name="serializer">The calling serializer.</param>
1115
            <returns>The object value.</returns>
1116
        </member>
1117
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
1118
            <summary>
1119
            Determines whether this instance can convert the specified object type.
1120
            </summary>
1121
            <param name="objectType">Type of the object.</param>
1122
            <returns>
1123
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1124
            </returns>
1125
        </member>
1126
        <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
1127
            <summary>
1128
            Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
1129
            </summary>
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.DataSetConverter">
1207
            <summary>
1208
            Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.
1209
            </summary>
1210
        </member>
1211
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1212
            <summary>
1213
            Writes the JSON representation of the object.
1214
            </summary>
1215
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1216
            <param name="value">The value.</param>
1217
            <param name="serializer">The calling serializer.</param>
1218
        </member>
1219
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1220
            <summary>
1221
            Reads the JSON representation of the object.
1222
            </summary>
1223
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1224
            <param name="objectType">Type of the object.</param>
1225
            <param name="existingValue">The existing value of object being read.</param>
1226
            <param name="serializer">The calling serializer.</param>
1227
            <returns>The object value.</returns>
1228
        </member>
1229
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
1230
            <summary>
1231
            Determines whether this instance can convert the specified value type.
1232
            </summary>
1233
            <param name="valueType">Type of the value.</param>
1234
            <returns>
1235
            	<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1236
            </returns>
1237
        </member>
1238
        <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
1239
            <summary>
1240
            Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
1241
            </summary>
1242
        </member>
1243
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1244
            <summary>
1245
            Writes the JSON representation of the object.
1246
            </summary>
1247
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1248
            <param name="value">The value.</param>
1249
            <param name="serializer">The calling serializer.</param>
1250
        </member>
1251
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1252
            <summary>
1253
            Reads the JSON representation of the object.
1254
            </summary>
1255
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1256
            <param name="objectType">Type of the object.</param>
1257
            <param name="existingValue">The existing value of object being read.</param>
1258
            <param name="serializer">The calling serializer.</param>
1259
            <returns>The object value.</returns>
1260
        </member>
1261
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
1262
            <summary>
1263
            Determines whether this instance can convert the specified value type.
1264
            </summary>
1265
            <param name="valueType">Type of the value.</param>
1266
            <returns>
1267
            	<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1268
            </returns>
1269
        </member>
1270
        <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
1271
            <summary>
1272
            Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
1273
            </summary>
1274
        </member>
1275
        <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">
1276
            <summary>
1277
            Determines whether this instance can convert the specified object type.
1278
            </summary>
1279
            <param name="objectType">Type of the object.</param>
1280
            <returns>
1281
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1282
            </returns>
1283
        </member>
1284
        <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
1285
            <summary>
1286
            Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
1287
            </summary>
1288
        </member>
1289
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1290
            <summary>
1291
            Writes the JSON representation of the object.
1292
            </summary>
1293
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1294
            <param name="value">The value.</param>
1295
            <param name="serializer">The calling serializer.</param>
1296
        </member>
1297
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1298
            <summary>
1299
            Reads the JSON representation of the object.
1300
            </summary>
1301
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1302
            <param name="objectType">Type of the object.</param>
1303
            <param name="existingValue">The existing value of object being read.</param>
1304
            <param name="serializer">The calling serializer.</param>
1305
            <returns>The object value.</returns>
1306
        </member>
1307
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
1308
            <summary>
1309
            Determines whether this instance can convert the specified object type.
1310
            </summary>
1311
            <param name="objectType">Type of the object.</param>
1312
            <returns>
1313
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1314
            </returns>
1315
        </member>
1316
        <member name="T:Newtonsoft.Json.Converters.RegexConverter">
1317
            <summary>
1318
            Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
1319
            </summary>
1320
        </member>
1321
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1322
            <summary>
1323
            Writes the JSON representation of the object.
1324
            </summary>
1325
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1326
            <param name="value">The value.</param>
1327
            <param name="serializer">The calling serializer.</param>
1328
        </member>
1329
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1330
            <summary>
1331
            Reads the JSON representation of the object.
1332
            </summary>
1333
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1334
            <param name="objectType">Type of the object.</param>
1335
            <param name="existingValue">The existing value of object being read.</param>
1336
            <param name="serializer">The calling serializer.</param>
1337
            <returns>The object value.</returns>
1338
        </member>
1339
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
1340
            <summary>
1341
            Determines whether this instance can convert the specified object type.
1342
            </summary>
1343
            <param name="objectType">Type of the object.</param>
1344
            <returns>
1345
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1346
            </returns>
1347
        </member>
1348
        <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
1349
            <summary>
1350
            Converts an <see cref="T:System.Enum"/> to and from its name string value.
1351
            </summary>
1352
        </member>
1353
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
1354
            <summary>
1355
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
1356
            </summary>
1357
        </member>
1358
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1359
            <summary>
1360
            Writes the JSON representation of the object.
1361
            </summary>
1362
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1363
            <param name="value">The value.</param>
1364
            <param name="serializer">The calling serializer.</param>
1365
        </member>
1366
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1367
            <summary>
1368
            Reads the JSON representation of the object.
1369
            </summary>
1370
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1371
            <param name="objectType">Type of the object.</param>
1372
            <param name="existingValue">The existing value of object being read.</param>
1373
            <param name="serializer">The calling serializer.</param>
1374
            <returns>The object value.</returns>
1375
        </member>
1376
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
1377
            <summary>
1378
            Determines whether this instance can convert the specified object type.
1379
            </summary>
1380
            <param name="objectType">Type of the object.</param>
1381
            <returns>
1382
            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1383
            </returns>
1384
        </member>
1385
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
1386
            <summary>
1387
            Gets or sets a value indicating whether the written enum text should be camel case.
1388
            </summary>
1389
            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
1390
        </member>
1391
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
1392
            <summary>
1393
            Gets or sets a value indicating whether integer values are allowed.
1394
            </summary>
1395
            <value><c>true</c> if integers are allowed; otherwise, <c>false</c>.</value>
1396
        </member>
1397
        <member name="T:Newtonsoft.Json.Converters.VersionConverter">
1398
            <summary>
1399
            Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4").
1400
            </summary>
1401
        </member>
1402
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1403
            <summary>
1404
            Writes the JSON representation of the object.
1405
            </summary>
1406
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1407
            <param name="value">The value.</param>
1408
            <param name="serializer">The calling serializer.</param>
1409
        </member>
1410
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1411
            <summary>
1412
            Reads the JSON representation of the object.
1413
            </summary>
1414
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1415
            <param name="objectType">Type of the object.</param>
1416
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
1417
            <param name="serializer">The calling serializer.</param>
1418
            <returns>The object value.</returns>
1419
        </member>
1420
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
1421
            <summary>
1422
            Determines whether this instance can convert the specified object type.
1423
            </summary>
1424
            <param name="objectType">Type of the object.</param>
1425
            <returns>
1426
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1427
            </returns>
1428
        </member>
1429
        <member name="T:Newtonsoft.Json.DateFormatHandling">
1430
            <summary>
1431
            Specifies how dates are formatted when writing JSON text.
1432
            </summary>
1433
        </member>
1434
        <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
1435
            <summary>
1436
            Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
1437
            </summary>
1438
        </member>
1439
        <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
1440
            <summary>
1441
            Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
1442
            </summary>
1443
        </member>
1444
        <member name="T:Newtonsoft.Json.DateParseHandling">
1445
            <summary>
1446
            Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
1447
            </summary>
1448
        </member>
1449
        <member name="F:Newtonsoft.Json.DateParseHandling.None">
1450
            <summary>
1451
            Date formatted strings are not parsed to a date type and are read as strings.
1452
            </summary>
1453
        </member>
1454
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
1455
            <summary>
1456
            Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.
1457
            </summary>
1458
        </member>
1459
        <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
1460
            <summary>
1461
            Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
1462
            </summary>
1463
        </member>
1464
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
1465
            <summary>
1466
            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.
1467
            </summary>
1468
        </member>
1469
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
1470
            <summary>
1471
            Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
1472
            </summary>
1473
        </member>
1474
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
1475
            <summary>
1476
            Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
1477
            If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
1478
            </summary>
1479
        </member>
1480
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
1481
            <summary>
1482
            Time zone information should be preserved when converting.
1483
            </summary>
1484
        </member>
1485
        <member name="T:Newtonsoft.Json.FloatFormatHandling">
1486
            <summary>
1487
            Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
1488
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1489
            </summary>
1490
        </member>
1491
        <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
1492
            <summary>
1493
            Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".
1494
            </summary>
1495
        </member>
1496
        <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
1497
            <summary>
1498
            Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity.
1499
            Note that this will produce non-valid JSON.
1500
            </summary>
1501
        </member>
1502
        <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
1503
            <summary>
1504
            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.
1505
            </summary>
1506
        </member>
1507
        <member name="T:Newtonsoft.Json.FloatParseHandling">
1508
            <summary>
1509
            Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
1510
            </summary>
1511
        </member>
1512
        <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
1513
            <summary>
1514
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
1515
            </summary>
1516
        </member>
1517
        <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
1518
            <summary>
1519
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
1520
            </summary>
1521
        </member>
1522
        <member name="T:Newtonsoft.Json.Formatting">
1523
            <summary>
1524
            Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
1525
            </summary>
1526
        </member>
1527
        <member name="F:Newtonsoft.Json.Formatting.None">
1528
            <summary>
1529
            No special formatting is applied. This is the default.
1530
            </summary>
1531
        </member>
1532
        <member name="F:Newtonsoft.Json.Formatting.Indented">
1533
            <summary>
1534
            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.
1535
            </summary>
1536
        </member>
1537
        <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1538
            <summary>
1539
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1540
            </summary>
1541
        </member>
1542
        <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
1543
            <summary>
1544
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
1545
            </summary>
1546
        </member>
1547
        <member name="T:Newtonsoft.Json.JsonContainerAttribute">
1548
            <summary>
1549
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
1550
            </summary>
1551
        </member>
1552
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
1553
            <summary>
1554
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
1555
            </summary>
1556
        </member>
1557
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
1558
            <summary>
1559
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
1560
            </summary>
1561
            <param name="id">The container Id.</param>
1562
        </member>
1563
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
1564
            <summary>
1565
            Gets or sets the id.
1566
            </summary>
1567
            <value>The id.</value>
1568
        </member>
1569
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
1570
            <summary>
1571
            Gets or sets the title.
1572
            </summary>
1573
            <value>The title.</value>
1574
        </member>
1575
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
1576
            <summary>
1577
            Gets or sets the description.
1578
            </summary>
1579
            <value>The description.</value>
1580
        </member>
1581
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
1582
            <summary>
1583
            Gets the collection's items converter.
1584
            </summary>
1585
            <value>The collection's items converter.</value>
1586
        </member>
1587
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters">
1588
            <summary>
1589
            The parameter list to use when constructing the JsonConverter described by ItemConverterType.
1590
            If null, the default constructor is used.
1591
            When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
1592
            order, and type of these parameters.
1593
            </summary>
1594
            <example>
1595
            [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
1596
            </example>
1597
        </member>
1598
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
1599
            <summary>
1600
            Gets or sets a value that indicates whether to preserve object references.
1601
            </summary>
1602
            <value>
1603
            	<c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
1604
            </value>
1605
        </member>
1606
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
1607
            <summary>
1608
            Gets or sets a value that indicates whether to preserve collection's items references.
1609
            </summary>
1610
            <value>
1611
            	<c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
1612
            </value>
1613
        </member>
1614
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
1615
            <summary>
1616
            Gets or sets the reference loop handling used when serializing the collection's items.
1617
            </summary>
1618
            <value>The reference loop handling.</value>
1619
        </member>
1620
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
1621
            <summary>
1622
            Gets or sets the type name handling used when serializing the collection's items.
1623
            </summary>
1624
            <value>The type name handling.</value>
1625
        </member>
1626
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
1627
            <summary>
1628
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
1629
            </summary>
1630
        </member>
1631
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
1632
            <summary>
1633
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
1634
            </summary>
1635
            <param name="id">The container Id.</param>
1636
        </member>
1637
        <member name="T:Newtonsoft.Json.JsonException">
1638
            <summary>
1639
            The exception thrown when an error occurs during Json serialization or deserialization.
1640
            </summary>
1641
        </member>
1642
        <member name="M:Newtonsoft.Json.JsonException.#ctor">
1643
            <summary>
1644
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1645
            </summary>
1646
        </member>
1647
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
1648
            <summary>
1649
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1650
            with a specified error message.
1651
            </summary>
1652
            <param name="message">The error message that explains the reason for the exception.</param>
1653
        </member>
1654
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
1655
            <summary>
1656
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1657
            with a specified error message and a reference to the inner exception that is the cause of this exception.
1658
            </summary>
1659
            <param name="message">The error message that explains the reason for the exception.</param>
1660
            <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>
1661
        </member>
1662
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1663
            <summary>
1664
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1665
            </summary>
1666
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
1667
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
1668
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
1669
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
1670
        </member>
1671
        <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
1672
            <summary>
1673
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection
1674
            and write values during serialization.
1675
            </summary>
1676
        </member>
1677
        <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
1678
            <summary>
1679
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.
1680
            </summary>
1681
        </member>
1682
        <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
1683
            <summary>
1684
            Gets or sets a value that indicates whether to write extension data when serializing the object.
1685
            </summary>
1686
            <value>
1687
            	<c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1688
            </value>
1689
        </member>
1690
        <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
1691
            <summary>
1692
            Gets or sets a value that indicates whether to read extension data when deserializing the object.
1693
            </summary>
1694
            <value>
1695
            	<c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1696
            </value>
1697
        </member>
1698
        <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">
1699
            <summary>
1700
            Specifies the settings used when merging JSON.
1701
            </summary>
1702
        </member>
1703
        <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">
1704
            <summary>
1705
            Gets or sets the method used when merging JSON arrays.
1706
            </summary>
1707
            <value>The method used when merging JSON arrays.</value>
1708
        </member>
1709
        <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
1710
            <summary>
1711
            Specifies how JSON arrays are merged together.
1712
            </summary>
1713
        </member>
1714
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">
1715
            <summary>Concatenate arrays.</summary>
1716
        </member>
1717
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">
1718
            <summary>Union arrays, skipping items that already exist.</summary>
1719
        </member>
1720
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">
1721
            <summary>Replace all array items.</summary>
1722
        </member>
1723
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">
1724
            <summary>Merge array items together, matched by index.</summary>
1725
        </member>
1726
        <member name="T:Newtonsoft.Json.MetadataPropertyHandling">
1727
            <summary>
1728
            Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1729
            </summary>
1730
        </member>
1731
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">
1732
            <summary>
1733
            Read metadata properties located at the start of a JSON object.
1734
            </summary>
1735
        </member>
1736
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">
1737
            <summary>
1738
            Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
1739
            </summary>
1740
        </member>
1741
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">
1742
            <summary>
1743
            Do not try to read metadata properties.
1744
            </summary>
1745
        </member>
1746
        <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">
1747
            <summary>
1748
            Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.
1749
            </summary>
1750
        </member>
1751
        <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
1752
            <summary>
1753
            Represents a trace writer.
1754
            </summary>
1755
        </member>
1756
        <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1757
            <summary>
1758
            Writes the specified trace level, message and optional exception.
1759
            </summary>
1760
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1761
            <param name="message">The trace message.</param>
1762
            <param name="ex">The trace exception. This parameter is optional.</param>
1763
        </member>
1764
        <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
1765
            <summary>
1766
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1767
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1768
            <code>Warning</code> and <code>Error</code> messages.
1769
            </summary>
1770
            <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>
1771
        </member>
1772
        <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1773
            <summary>
1774
            Writes the specified trace level, message and optional exception.
1775
            </summary>
1776
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1777
            <param name="message">The trace message.</param>
1778
            <param name="ex">The trace exception. This parameter is optional.</param>
1779
        </member>
1780
        <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">
1781
            <summary>
1782
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1783
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1784
            <code>Warning</code> and <code>Error</code> messages.
1785
            </summary>
1786
            <value>
1787
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1788
            </value>
1789
        </member>
1790
        <member name="T:Newtonsoft.Json.Serialization.IAttributeProvider">
1791
            <summary>
1792
            Provides methods to get attributes.
1793
            </summary>
1794
        </member>
1795
        <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Boolean)">
1796
            <summary>
1797
            Returns a collection of all of the attributes, or an empty collection if there are no attributes.
1798
            </summary>
1799
            <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
1800
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
1801
        </member>
1802
        <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Type,System.Boolean)">
1803
            <summary>
1804
            Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
1805
            </summary>
1806
            <param name="attributeType">The type of the attributes.</param>
1807
            <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
1808
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
1809
        </member>
1810
        <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
1811
            <summary>
1812
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1813
            </summary>
1814
        </member>
1815
        <member name="T:Newtonsoft.Json.Serialization.JsonContract">
1816
            <summary>
1817
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1818
            </summary>
1819
        </member>
1820
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
1821
            <summary>
1822
            Gets the underlying type for the contract.
1823
            </summary>
1824
            <value>The underlying type for the contract.</value>
1825
        </member>
1826
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
1827
            <summary>
1828
            Gets or sets the type created during deserialization.
1829
            </summary>
1830
            <value>The type created during deserialization.</value>
1831
        </member>
1832
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
1833
            <summary>
1834
            Gets or sets whether this type contract is serialized as a reference.
1835
            </summary>
1836
            <value>Whether this type contract is serialized as a reference.</value>
1837
        </member>
1838
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
1839
            <summary>
1840
            Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for this contract.
1841
            </summary>
1842
            <value>The converter.</value>
1843
        </member>
1844
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">
1845
            <summary>
1846
            Gets or sets all methods called immediately after deserialization of the object.
1847
            </summary>
1848
            <value>The methods called immediately after deserialization of the object.</value>
1849
        </member>
1850
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">
1851
            <summary>
1852
            Gets or sets all methods called during deserialization of the object.
1853
            </summary>
1854
            <value>The methods called during deserialization of the object.</value>
1855
        </member>
1856
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">
1857
            <summary>
1858
            Gets or sets all methods called after serialization of the object graph.
1859
            </summary>
1860
            <value>The methods called after serialization of the object graph.</value>
1861
        </member>
1862
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">
1863
            <summary>
1864
            Gets or sets all methods called before serialization of the object.
1865
            </summary>
1866
            <value>The methods called before serialization of the object.</value>
1867
        </member>
1868
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">
1869
            <summary>
1870
            Gets or sets all method called when an error is thrown during the serialization of the object.
1871
            </summary>
1872
            <value>The methods called when an error is thrown during the serialization of the object.</value>
1873
        </member>
1874
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized">
1875
            <summary>
1876
            Gets or sets the method called immediately after deserialization of the object.
1877
            </summary>
1878
            <value>The method called immediately after deserialization of the object.</value>
1879
        </member>
1880
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing">
1881
            <summary>
1882
            Gets or sets the method called during deserialization of the object.
1883
            </summary>
1884
            <value>The method called during deserialization of the object.</value>
1885
        </member>
1886
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized">
1887
            <summary>
1888
            Gets or sets the method called after serialization of the object graph.
1889
            </summary>
1890
            <value>The method called after serialization of the object graph.</value>
1891
        </member>
1892
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing">
1893
            <summary>
1894
            Gets or sets the method called before serialization of the object.
1895
            </summary>
1896
            <value>The method called before serialization of the object.</value>
1897
        </member>
1898
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError">
1899
            <summary>
1900
            Gets or sets the method called when an error is thrown during the serialization of the object.
1901
            </summary>
1902
            <value>The method called when an error is thrown during the serialization of the object.</value>
1903
        </member>
1904
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
1905
            <summary>
1906
            Gets or sets the default creator method used to create the object.
1907
            </summary>
1908
            <value>The default creator method used to create the object.</value>
1909
        </member>
1910
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
1911
            <summary>
1912
            Gets or sets a value indicating whether the default creator is non public.
1913
            </summary>
1914
            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
1915
        </member>
1916
        <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
1917
            <summary>
1918
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
1919
            </summary>
1920
            <param name="underlyingType">The underlying type for the contract.</param>
1921
        </member>
1922
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
1923
            <summary>
1924
            Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1925
            </summary>
1926
            <value>The converter.</value>
1927
        </member>
1928
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
1929
            <summary>
1930
            Gets or sets a value indicating whether the collection items preserve object references.
1931
            </summary>
1932
            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
1933
        </member>
1934
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
1935
            <summary>
1936
            Gets or sets the collection item reference loop handling.
1937
            </summary>
1938
            <value>The reference loop handling.</value>
1939
        </member>
1940
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
1941
            <summary>
1942
            Gets or sets the collection item type name handling.
1943
            </summary>
1944
            <value>The type name handling.</value>
1945
        </member>
1946
        <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
1947
            <summary>
1948
            Represents a trace writer that writes to memory. When the trace message limit is
1949
            reached then old trace messages will be removed as new messages are added.
1950
            </summary>
1951
        </member>
1952
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
1953
            <summary>
1954
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.
1955
            </summary>
1956
        </member>
1957
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
1958
            <summary>
1959
            Writes the specified trace level, message and optional exception.
1960
            </summary>
1961
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1962
            <param name="message">The trace message.</param>
1963
            <param name="ex">The trace exception. This parameter is optional.</param>
1964
        </member>
1965
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
1966
            <summary>
1967
            Returns an enumeration of the most recent trace messages.
1968
            </summary>
1969
            <returns>An enumeration of the most recent trace messages.</returns>
1970
        </member>
1971
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
1972
            <summary>
1973
            Returns a <see cref="T:System.String"/> of the most recent trace messages.
1974
            </summary>
1975
            <returns>
1976
            A <see cref="T:System.String"/> of the most recent trace messages.
1977
            </returns>
1978
        </member>
1979
        <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
1980
            <summary>
1981
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1982
            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1983
            <code>Warning</code> and <code>Error</code> messages.
1984
            </summary>
1985
            <value>
1986
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1987
            </value>
1988
        </member>
1989
        <member name="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider">
1990
            <summary>
1991
            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"/>.
1992
            </summary>
1993
        </member>
1994
        <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.#ctor(System.Object)">
1995
            <summary>
1996
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider"/> class.
1997
            </summary>
1998
        </member>
1999
        <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Boolean)">
2000
            <summary>
2001
            Returns a collection of all of the attributes, or an empty collection if there are no attributes.
2002
            </summary>
2003
            <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
2004
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
2005
        </member>
2006
        <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Type,System.Boolean)">
2007
            <summary>
2008
            Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
2009
            </summary>
2010
            <param name="attributeType">The type of the attributes.</param>
2011
            <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
2012
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
2013
        </member>
2014
        <member name="T:Newtonsoft.Json.IJsonLineInfo">
2015
            <summary>
2016
            Provides an interface to enable a class to return line and position information.
2017
            </summary>
2018
        </member>
2019
        <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
2020
            <summary>
2021
            Gets a value indicating whether the class can return line information.
2022
            </summary>
2023
            <returns>
2024
            	<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
2025
            </returns>
2026
        </member>
2027
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
2028
            <summary>
2029
            Gets the current line number.
2030
            </summary>
2031
            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>
2032
        </member>
2033
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
2034
            <summary>
2035
            Gets the current line position.
2036
            </summary>
2037
            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>
2038
        </member>
2039
        <member name="T:Newtonsoft.Json.StringEscapeHandling">
2040
            <summary>
2041
            Specifies how strings are escaped when writing JSON text.
2042
            </summary>
2043
        </member>
2044
        <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
2045
            <summary>
2046
            Only control characters (e.g. newline) are escaped.
2047
            </summary>
2048
        </member>
2049
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
2050
            <summary>
2051
            All non-ASCII and control characters (e.g. newline) are escaped.
2052
            </summary>
2053
        </member>
2054
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
2055
            <summary>
2056
            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.
2057
            </summary>
2058
        </member>
2059
        <member name="T:Newtonsoft.Json.Utilities.LinqBridge.Enumerable">
2060
            <summary>
2061
            Provides a set of static (Shared in Visual Basic) methods for 
2062
            querying objects that implement <see cref="T:System.Collections.Generic.IEnumerable`1"/>.
2063
            </summary>
2064
        </member>
2065
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.AsEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
2066
            <summary>
2067
            Returns the input typed as <see cref="T:System.Collections.Generic.IEnumerable`1"/>.
2068
            </summary>
2069
        </member>
2070
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Empty``1">
2071
            <summary>
2072
            Returns an empty <see cref="T:System.Collections.Generic.IEnumerable`1"/> that has the 
2073
            specified type argument.
2074
            </summary>
2075
        </member>
2076
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Cast``1(System.Collections.IEnumerable)">
2077
            <summary>
2078
            Converts the elements of an <see cref="T:System.Collections.IEnumerable"/> to the 
2079
            specified type.
2080
            </summary>
2081
        </member>
2082
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OfType``1(System.Collections.IEnumerable)">
2083
            <summary>
2084
            Filters the elements of an <see cref="T:System.Collections.IEnumerable"/> based on a specified type.
2085
            </summary>
2086
        </member>
2087
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Range(System.Int32,System.Int32)">
2088
            <summary>
2089
            Generates a sequence of integral numbers within a specified range.
2090
            </summary>
2091
            <param name="start">The value of the first integer in the sequence.</param>
2092
            <param name="count">The number of sequential integers to generate.</param>
2093
        </member>
2094
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Repeat``1(``0,System.Int32)">
2095
            <summary>
2096
            Generates a sequence that contains one repeated value.
2097
            </summary>
2098
        </member>
2099
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Where``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2100
            <summary>
2101
            Filters a sequence of values based on a predicate.
2102
            </summary>
2103
        </member>
2104
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Where``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Boolean})">
2105
            <summary>
2106
            Filters a sequence of values based on a predicate. 
2107
            Each element's index is used in the logic of the predicate function.
2108
            </summary>
2109
        </member>
2110
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Select``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2111
            <summary>
2112
            Projects each element of a sequence into a new form.
2113
            </summary>
2114
        </member>
2115
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Select``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,``1})">
2116
            <summary>
2117
            Projects each element of a sequence into a new form by 
2118
            incorporating the element's index.
2119
            </summary>
2120
        </member>
2121
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SelectMany``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Collections.Generic.IEnumerable{``1}})">
2122
            <summary>
2123
            Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1"/> 
2124
            and flattens the resulting sequences into one sequence.
2125
            </summary>
2126
        </member>
2127
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SelectMany``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}})">
2128
            <summary>
2129
            Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1"/>, 
2130
            and flattens the resulting sequences into one sequence. The 
2131
            index of each source element is used in the projected form of 
2132
            that element.
2133
            </summary>
2134
        </member>
2135
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SelectMany``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Collections.Generic.IEnumerable{``1}},Newtonsoft.Json.Serialization.Func{``0,``1,``2})">
2136
            <summary>
2137
            Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1"/>, 
2138
            flattens the resulting sequences into one sequence, and invokes 
2139
            a result selector function on each element therein.
2140
            </summary>
2141
        </member>
2142
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SelectMany``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}},Newtonsoft.Json.Serialization.Func{``0,``1,``2})">
2143
            <summary>
2144
            Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1"/>, 
2145
            flattens the resulting sequences into one sequence, and invokes 
2146
            a result selector function on each element therein. The index of 
2147
            each source element is used in the intermediate projected form 
2148
            of that element.
2149
            </summary>
2150
        </member>
2151
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.TakeWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2152
            <summary>
2153
            Returns elements from a sequence as long as a specified condition is true.
2154
            </summary>
2155
        </member>
2156
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.TakeWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Boolean})">
2157
            <summary>
2158
            Returns elements from a sequence as long as a specified condition is true.
2159
            The element's index is used in the logic of the predicate function.
2160
            </summary>
2161
        </member>
2162
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.FirstImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0})">
2163
            <summary>
2164
            Base implementation of First operator.
2165
            </summary>
2166
        </member>
2167
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.First``1(System.Collections.Generic.IEnumerable{``0})">
2168
            <summary>
2169
            Returns the first element of a sequence.
2170
            </summary>
2171
        </member>
2172
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.First``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2173
            <summary>
2174
            Returns the first element in a sequence that satisfies a specified condition.
2175
            </summary>
2176
        </member>
2177
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0})">
2178
            <summary>
2179
            Returns the first element of a sequence, or a default value if 
2180
            the sequence contains no elements.
2181
            </summary>
2182
        </member>
2183
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2184
            <summary>
2185
            Returns the first element of the sequence that satisfies a 
2186
            condition or a default value if no such element is found.
2187
            </summary>
2188
        </member>
2189
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LastImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0})">
2190
            <summary>
2191
            Base implementation of Last operator.
2192
            </summary>
2193
        </member>
2194
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Last``1(System.Collections.Generic.IEnumerable{``0})">
2195
            <summary>
2196
            Returns the last element of a sequence.
2197
            </summary>
2198
        </member>
2199
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Last``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2200
            <summary>
2201
            Returns the last element of a sequence that satisfies a 
2202
            specified condition.
2203
            </summary>
2204
        </member>
2205
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0})">
2206
            <summary>
2207
            Returns the last element of a sequence, or a default value if 
2208
            the sequence contains no elements.
2209
            </summary>
2210
        </member>
2211
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2212
            <summary>
2213
            Returns the last element of a sequence that satisfies a 
2214
            condition or a default value if no such element is found.
2215
            </summary>
2216
        </member>
2217
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SingleImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0})">
2218
            <summary>
2219
            Base implementation of Single operator.
2220
            </summary>
2221
        </member>
2222
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Single``1(System.Collections.Generic.IEnumerable{``0})">
2223
            <summary>
2224
            Returns the only element of a sequence, and throws an exception 
2225
            if there is not exactly one element in the sequence.
2226
            </summary>
2227
        </member>
2228
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Single``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2229
            <summary>
2230
            Returns the only element of a sequence that satisfies a 
2231
            specified condition, and throws an exception if more than one 
2232
            such element exists.
2233
            </summary>
2234
        </member>
2235
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0})">
2236
            <summary>
2237
            Returns the only element of a sequence, or a default value if 
2238
            the sequence is empty; this method throws an exception if there 
2239
            is more than one element in the sequence.
2240
            </summary>
2241
        </member>
2242
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2243
            <summary>
2244
            Returns the only element of a sequence that satisfies a 
2245
            specified condition or a default value if no such element 
2246
            exists; this method throws an exception if more than one element 
2247
            satisfies the condition.
2248
            </summary>
2249
        </member>
2250
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ElementAt``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
2251
            <summary>
2252
            Returns the element at a specified index in a sequence.
2253
            </summary>
2254
        </member>
2255
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ElementAtOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
2256
            <summary>
2257
            Returns the element at a specified index in a sequence or a 
2258
            default value if the index is out of range.
2259
            </summary>
2260
        </member>
2261
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Reverse``1(System.Collections.Generic.IEnumerable{``0})">
2262
            <summary>
2263
            Inverts the order of the elements in a sequence.
2264
            </summary>
2265
        </member>
2266
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Take``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
2267
            <summary>
2268
            Returns a specified number of contiguous elements from the start 
2269
            of a sequence.
2270
            </summary>
2271
        </member>
2272
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Skip``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
2273
            <summary>
2274
            Bypasses a specified number of elements in a sequence and then 
2275
            returns the remaining elements.
2276
            </summary>
2277
        </member>
2278
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SkipWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2279
            <summary>
2280
            Bypasses elements in a sequence as long as a specified condition 
2281
            is true and then returns the remaining elements.
2282
            </summary>
2283
        </member>
2284
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SkipWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Boolean})">
2285
            <summary>
2286
            Bypasses elements in a sequence as long as a specified condition 
2287
            is true and then returns the remaining elements. The element's 
2288
            index is used in the logic of the predicate function.
2289
            </summary>
2290
        </member>
2291
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Count``1(System.Collections.Generic.IEnumerable{``0})">
2292
            <summary>
2293
            Returns the number of elements in a sequence.
2294
            </summary>
2295
        </member>
2296
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Count``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2297
            <summary>
2298
            Returns a number that represents how many elements in the 
2299
            specified sequence satisfy a condition.
2300
            </summary>
2301
        </member>
2302
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LongCount``1(System.Collections.Generic.IEnumerable{``0})">
2303
            <summary>
2304
            Returns an <see cref="T:System.Int64"/> that represents the total number 
2305
            of elements in a sequence.
2306
            </summary>
2307
        </member>
2308
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LongCount``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2309
            <summary>
2310
            Returns an <see cref="T:System.Int64"/> that represents how many elements 
2311
            in a sequence satisfy a condition.
2312
            </summary>
2313
        </member>
2314
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Concat``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
2315
            <summary>
2316
            Concatenates two sequences.
2317
            </summary>
2318
        </member>
2319
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToList``1(System.Collections.Generic.IEnumerable{``0})">
2320
            <summary>
2321
            Creates a <see cref="T:System.Collections.Generic.List`1"/> from an <see cref="T:System.Collections.Generic.IEnumerable`1"/>.
2322
            </summary>
2323
        </member>
2324
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToArray``1(System.Collections.Generic.IEnumerable{``0})">
2325
            <summary>
2326
            Creates an array from an <see cref="T:System.Collections.Generic.IEnumerable`1"/>.
2327
            </summary>
2328
        </member>
2329
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Distinct``1(System.Collections.Generic.IEnumerable{``0})">
2330
            <summary>
2331
            Returns distinct elements from a sequence by using the default 
2332
            equality comparer to compare values.
2333
            </summary>
2334
        </member>
2335
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Distinct``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
2336
            <summary>
2337
            Returns distinct elements from a sequence by using a specified 
2338
            <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> to compare values.
2339
            </summary>
2340
        </member>
2341
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2342
            <summary>
2343
            Creates a <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/> from an 
2344
            <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key 
2345
            selector function.
2346
            </summary>
2347
        </member>
2348
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
2349
            <summary>
2350
            Creates a <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/> from an 
2351
            <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key 
2352
            selector function and a key comparer.
2353
            </summary>
2354
        </member>
2355
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2})">
2356
            <summary>
2357
            Creates a <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/> from an 
2358
            <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to specified key 
2359
            and element selector functions.
2360
            </summary>
2361
        </member>
2362
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">
2363
            <summary>
2364
            Creates a <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/> from an 
2365
            <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key 
2366
            selector function, a comparer and an element selector function.
2367
            </summary>
2368
        </member>
2369
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2370
            <summary>
2371
            Groups the elements of a sequence according to a specified key 
2372
            selector function.
2373
            </summary>
2374
        </member>
2375
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
2376
            <summary>
2377
            Groups the elements of a sequence according to a specified key 
2378
            selector function and compares the keys by using a specified 
2379
            comparer.
2380
            </summary>
2381
        </member>
2382
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2})">
2383
            <summary>
2384
            Groups the elements of a sequence according to a specified key 
2385
            selector function and projects the elements for each group by 
2386
            using a specified function.
2387
            </summary>
2388
        </member>
2389
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">
2390
            <summary>
2391
            Groups the elements of a sequence according to a specified key 
2392
            selector function and creates a result value from each group and 
2393
            its key.
2394
            </summary>
2395
        </member>
2396
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``1,System.Collections.Generic.IEnumerable{``0},``2})">
2397
            <summary>
2398
            Groups the elements of a sequence according to a key selector 
2399
            function. The keys are compared by using a comparer and each 
2400
            group's elements are projected by using a specified function.
2401
            </summary>
2402
        </member>
2403
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``1,System.Collections.Generic.IEnumerable{``0},``2},System.Collections.Generic.IEqualityComparer{``1})">
2404
            <summary>
2405
            Groups the elements of a sequence according to a specified key 
2406
            selector function and creates a result value from each group and 
2407
            its key. The elements of each group are projected by using a 
2408
            specified function.
2409
            </summary>
2410
        </member>
2411
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``4(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,System.Collections.Generic.IEnumerable{``2},``3})">
2412
            <summary>
2413
            Groups the elements of a sequence according to a specified key 
2414
            selector function and creates a result value from each group and 
2415
            its key. The keys are compared by using a specified comparer.
2416
            </summary>
2417
        </member>
2418
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``4(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,System.Collections.Generic.IEnumerable{``2},``3},System.Collections.Generic.IEqualityComparer{``1})">
2419
            <summary>
2420
            Groups the elements of a sequence according to a specified key 
2421
            selector function and creates a result value from each group and 
2422
            its key. Key values are compared by using a specified comparer, 
2423
            and the elements of each group are projected by using a 
2424
            specified function.
2425
            </summary>
2426
        </member>
2427
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Aggregate``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``0,``0})">
2428
            <summary>
2429
            Applies an accumulator function over a sequence.
2430
            </summary>
2431
        </member>
2432
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Aggregate``2(System.Collections.Generic.IEnumerable{``0},``1,Newtonsoft.Json.Serialization.Func{``1,``0,``1})">
2433
            <summary>
2434
            Applies an accumulator function over a sequence. The specified 
2435
            seed value is used as the initial accumulator value.
2436
            </summary>
2437
        </member>
2438
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Aggregate``3(System.Collections.Generic.IEnumerable{``0},``1,Newtonsoft.Json.Serialization.Func{``1,``0,``1},Newtonsoft.Json.Serialization.Func{``1,``2})">
2439
            <summary>
2440
            Applies an accumulator function over a sequence. The specified 
2441
            seed value is used as the initial accumulator value, and the 
2442
            specified function is used to select the result value.
2443
            </summary>
2444
        </member>
2445
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Union``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
2446
            <summary>
2447
            Produces the set union of two sequences by using the default 
2448
            equality comparer.
2449
            </summary>
2450
        </member>
2451
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Union``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
2452
            <summary>
2453
            Produces the set union of two sequences by using a specified 
2454
            <see cref="T:System.Collections.Generic.IEqualityComparer`1"/>.
2455
            </summary>
2456
        </member>
2457
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.DefaultIfEmpty``1(System.Collections.Generic.IEnumerable{``0})">
2458
            <summary>
2459
            Returns the elements of the specified sequence or the type 
2460
            parameter's default value in a singleton collection if the 
2461
            sequence is empty.
2462
            </summary>
2463
        </member>
2464
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.DefaultIfEmpty``1(System.Collections.Generic.IEnumerable{``0},``0)">
2465
            <summary>
2466
            Returns the elements of the specified sequence or the specified 
2467
            value in a singleton collection if the sequence is empty.
2468
            </summary>
2469
        </member>
2470
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.All``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2471
            <summary>
2472
            Determines whether all elements of a sequence satisfy a condition.
2473
            </summary>
2474
        </member>
2475
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Any``1(System.Collections.Generic.IEnumerable{``0})">
2476
            <summary>
2477
            Determines whether a sequence contains any elements.
2478
            </summary>
2479
        </member>
2480
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Any``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
2481
            <summary>
2482
            Determines whether any element of a sequence satisfies a 
2483
            condition.
2484
            </summary>
2485
        </member>
2486
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Contains``1(System.Collections.Generic.IEnumerable{``0},``0)">
2487
            <summary>
2488
            Determines whether a sequence contains a specified element by 
2489
            using the default equality comparer.
2490
            </summary>
2491
        </member>
2492
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Contains``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
2493
            <summary>
2494
            Determines whether a sequence contains a specified element by 
2495
            using a specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/>.
2496
            </summary>
2497
        </member>
2498
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SequenceEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
2499
            <summary>
2500
            Determines whether two sequences are equal by comparing the 
2501
            elements by using the default equality comparer for their type.
2502
            </summary>
2503
        </member>
2504
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SequenceEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
2505
            <summary>
2506
            Determines whether two sequences are equal by comparing their 
2507
            elements by using a specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/>.
2508
            </summary>
2509
        </member>
2510
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.MinMaxImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``0,System.Boolean})">
2511
            <summary>
2512
            Base implementation for Min/Max operator.
2513
            </summary>
2514
        </member>
2515
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.MinMaxImpl``1(System.Collections.Generic.IEnumerable{System.Nullable{``0}},System.Nullable{``0},Newtonsoft.Json.Serialization.Func{System.Nullable{``0},System.Nullable{``0},System.Boolean})">
2516
            <summary>
2517
            Base implementation for Min/Max operator for nullable types.
2518
            </summary>
2519
        </member>
2520
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0})">
2521
            <summary>
2522
            Returns the minimum value in a generic sequence.
2523
            </summary>
2524
        </member>
2525
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2526
            <summary>
2527
            Invokes a transform function on each element of a generic 
2528
            sequence and returns the minimum resulting value.
2529
            </summary>
2530
        </member>
2531
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0})">
2532
            <summary>
2533
            Returns the maximum value in a generic sequence.
2534
            </summary>
2535
        </member>
2536
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2537
            <summary>
2538
            Invokes a transform function on each element of a generic 
2539
            sequence and returns the maximum resulting value.
2540
            </summary>
2541
        </member>
2542
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Renumerable``1(System.Collections.Generic.IEnumerator{``0})">
2543
            <summary>
2544
            Makes an enumerator seen as enumerable once more.
2545
            </summary>
2546
            <remarks>
2547
            The supplied enumerator must have been started. The first element
2548
            returned is the element the enumerator was on when passed in.
2549
            DO NOT use this method if the caller must be a generator. It is
2550
            mostly safe among aggregate operations.
2551
            </remarks>
2552
        </member>
2553
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2554
            <summary>
2555
            Sorts the elements of a sequence in ascending order according to a key.
2556
            </summary>
2557
        </member>
2558
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
2559
            <summary>
2560
            Sorts the elements of a sequence in ascending order by using a 
2561
            specified comparer.
2562
            </summary>
2563
        </member>
2564
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderByDescending``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2565
            <summary>
2566
            Sorts the elements of a sequence in descending order according to a key.
2567
            </summary>
2568
        </member>
2569
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderByDescending``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
2570
            <summary>
2571
             Sorts the elements of a sequence in descending order by using a 
2572
            specified comparer. 
2573
            </summary>
2574
        </member>
2575
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenBy``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2576
            <summary>
2577
            Performs a subsequent ordering of the elements in a sequence in 
2578
            ascending order according to a key.
2579
            </summary>
2580
        </member>
2581
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenBy``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
2582
            <summary>
2583
            Performs a subsequent ordering of the elements in a sequence in 
2584
            ascending order by using a specified comparer.
2585
            </summary>
2586
        </member>
2587
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenByDescending``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2588
            <summary>
2589
            Performs a subsequent ordering of the elements in a sequence in 
2590
            descending order, according to a key.
2591
            </summary>
2592
        </member>
2593
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenByDescending``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
2594
            <summary>
2595
            Performs a subsequent ordering of the elements in a sequence in 
2596
            descending order by using a specified comparer.
2597
            </summary>
2598
        </member>
2599
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.IntersectExceptImpl``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0},System.Boolean)">
2600
            <summary>
2601
            Base implementation for Intersect and Except operators.
2602
            </summary>
2603
        </member>
2604
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Intersect``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
2605
            <summary>
2606
            Produces the set intersection of two sequences by using the 
2607
            default equality comparer to compare values.
2608
            </summary>
2609
        </member>
2610
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Intersect``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
2611
            <summary>
2612
            Produces the set intersection of two sequences by using the 
2613
            specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> to compare values.
2614
            </summary>
2615
        </member>
2616
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Except``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
2617
            <summary>
2618
            Produces the set difference of two sequences by using the 
2619
            default equality comparer to compare values.
2620
            </summary>
2621
        </member>
2622
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Except``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
2623
            <summary>
2624
            Produces the set difference of two sequences by using the 
2625
            specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> to compare values.
2626
            </summary>
2627
        </member>
2628
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
2629
            <summary>
2630
            Creates a <see cref="T:System.Collections.Generic.Dictionary`2"/> from an 
2631
            <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key 
2632
            selector function.
2633
            </summary>
2634
        </member>
2635
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
2636
            <summary>
2637
            Creates a <see cref="T:System.Collections.Generic.Dictionary`2"/> from an 
2638
            <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key 
2639
            selector function and key comparer.
2640
            </summary>
2641
        </member>
2642
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2})">
2643
            <summary>
2644
            Creates a <see cref="T:System.Collections.Generic.Dictionary`2"/> from an 
2645
            <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to specified key 
2646
            selector and element selector functions.
2647
            </summary>
2648
        </member>
2649
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">
2650
            <summary>
2651
            Creates a <see cref="T:System.Collections.Generic.Dictionary`2"/> from an 
2652
            <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key 
2653
            selector function, a comparer, and an element selector function.
2654
            </summary>
2655
        </member>
2656
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Join``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,``2},Newtonsoft.Json.Serialization.Func{``0,``1,``3})">
2657
            <summary>
2658
            Correlates the elements of two sequences based on matching keys. 
2659
            The default equality comparer is used to compare keys.
2660
            </summary>
2661
        </member>
2662
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Join``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,``2},Newtonsoft.Json.Serialization.Func{``0,``1,``3},System.Collections.Generic.IEqualityComparer{``2})">
2663
            <summary>
2664
            Correlates the elements of two sequences based on matching keys. 
2665
            The default equality comparer is used to compare keys. A 
2666
            specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> is used to compare keys.
2667
            </summary>
2668
        </member>
2669
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,``2},Newtonsoft.Json.Serialization.Func{``0,System.Collections.Generic.IEnumerable{``1},``3})">
2670
            <summary>
2671
            Correlates the elements of two sequences based on equality of 
2672
            keys and groups the results. The default equality comparer is 
2673
            used to compare keys.
2674
            </summary>
2675
        </member>
2676
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,``2},Newtonsoft.Json.Serialization.Func{``0,System.Collections.Generic.IEnumerable{``1},``3},System.Collections.Generic.IEqualityComparer{``2})">
2677
            <summary>
2678
            Correlates the elements of two sequences based on equality of 
2679
            keys and groups the results. The default equality comparer is 
2680
            used to compare keys. A specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> 
2681
            is used to compare keys.
2682
            </summary>
2683
        </member>
2684
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Int32})">
2685
            <summary>
2686
            Computes the sum of a sequence of nullable <see cref="T:System.Int32"/> values.
2687
            </summary>
2688
        </member>
2689
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32})">
2690
            <summary>
2691
            Computes the sum of a sequence of nullable <see cref="T:System.Int32"/> 
2692
            values that are obtained by invoking a transform function on 
2693
            each element of the input sequence.
2694
            </summary>
2695
        </member>
2696
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Int32})">
2697
            <summary>
2698
            Computes the average of a sequence of nullable <see cref="T:System.Int32"/> values.
2699
            </summary>
2700
        </member>
2701
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32})">
2702
            <summary>
2703
            Computes the average of a sequence of nullable <see cref="T:System.Int32"/> values 
2704
            that are obtained by invoking a transform function on each 
2705
            element of the input sequence.
2706
            </summary>
2707
        </member>
2708
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
2709
            <summary>
2710
            Computes the sum of a sequence of <see cref="T:System.Int32"/> values.
2711
            </summary>
2712
        </member>
2713
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})">
2714
            <summary>
2715
            Computes the sum of a sequence of <see cref="T:System.Int32"/> 
2716
            values that are obtained by invoking a transform function on 
2717
            each element of the input sequence.
2718
            </summary>
2719
        </member>
2720
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
2721
            <summary>
2722
            Computes the average of a sequence of <see cref="T:System.Int32"/> values.
2723
            </summary>
2724
        </member>
2725
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})">
2726
            <summary>
2727
            Computes the average of a sequence of <see cref="T:System.Int32"/> values 
2728
            that are obtained by invoking a transform function on each 
2729
            element of the input sequence.
2730
            </summary>
2731
        </member>
2732
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
2733
            <summary>
2734
            Returns the minimum value in a sequence of nullable 
2735
            <see cref="T:System.Int32"/> values.
2736
            </summary>
2737
        </member>
2738
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})">
2739
            <summary>
2740
            Invokes a transform function on each element of a sequence and 
2741
            returns the minimum nullable <see cref="T:System.Int32"/> value.
2742
            </summary>
2743
        </member>
2744
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
2745
            <summary>
2746
            Returns the maximum value in a sequence of nullable 
2747
            <see cref="T:System.Int32"/> values.
2748
            </summary>
2749
        </member>
2750
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})">
2751
            <summary>
2752
            Invokes a transform function on each element of a sequence and 
2753
            returns the maximum nullable <see cref="T:System.Int32"/> value.
2754
            </summary>
2755
        </member>
2756
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Int64})">
2757
            <summary>
2758
            Computes the sum of a sequence of nullable <see cref="T:System.Int64"/> values.
2759
            </summary>
2760
        </member>
2761
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int64})">
2762
            <summary>
2763
            Computes the sum of a sequence of nullable <see cref="T:System.Int64"/> 
2764
            values that are obtained by invoking a transform function on 
2765
            each element of the input sequence.
2766
            </summary>
2767
        </member>
2768
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Int64})">
2769
            <summary>
2770
            Computes the average of a sequence of nullable <see cref="T:System.Int64"/> values.
2771
            </summary>
2772
        </member>
2773
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int64})">
2774
            <summary>
2775
            Computes the average of a sequence of nullable <see cref="T:System.Int64"/> values 
2776
            that are obtained by invoking a transform function on each 
2777
            element of the input sequence.
2778
            </summary>
2779
        </member>
2780
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">
2781
            <summary>
2782
            Computes the sum of a sequence of <see cref="T:System.Int64"/> values.
2783
            </summary>
2784
        </member>
2785
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})">
2786
            <summary>
2787
            Computes the sum of a sequence of <see cref="T:System.Int64"/> 
2788
            values that are obtained by invoking a transform function on 
2789
            each element of the input sequence.
2790
            </summary>
2791
        </member>
2792
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">
2793
            <summary>
2794
            Computes the average of a sequence of <see cref="T:System.Int64"/> values.
2795
            </summary>
2796
        </member>
2797
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})">
2798
            <summary>
2799
            Computes the average of a sequence of <see cref="T:System.Int64"/> values 
2800
            that are obtained by invoking a transform function on each 
2801
            element of the input sequence.
2802
            </summary>
2803
        </member>
2804
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">
2805
            <summary>
2806
            Returns the minimum value in a sequence of nullable 
2807
            <see cref="T:System.Int64"/> values.
2808
            </summary>
2809
        </member>
2810
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})">
2811
            <summary>
2812
            Invokes a transform function on each element of a sequence and 
2813
            returns the minimum nullable <see cref="T:System.Int64"/> value.
2814
            </summary>
2815
        </member>
2816
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">
2817
            <summary>
2818
            Returns the maximum value in a sequence of nullable 
2819
            <see cref="T:System.Int64"/> values.
2820
            </summary>
2821
        </member>
2822
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})">
2823
            <summary>
2824
            Invokes a transform function on each element of a sequence and 
2825
            returns the maximum nullable <see cref="T:System.Int64"/> value.
2826
            </summary>
2827
        </member>
2828
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Single})">
2829
            <summary>
2830
            Computes the sum of a sequence of nullable <see cref="T:System.Single"/> values.
2831
            </summary>
2832
        </member>
2833
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Single})">
2834
            <summary>
2835
            Computes the sum of a sequence of nullable <see cref="T:System.Single"/> 
2836
            values that are obtained by invoking a transform function on 
2837
            each element of the input sequence.
2838
            </summary>
2839
        </member>
2840
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Single})">
2841
            <summary>
2842
            Computes the average of a sequence of nullable <see cref="T:System.Single"/> values.
2843
            </summary>
2844
        </member>
2845
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Single})">
2846
            <summary>
2847
            Computes the average of a sequence of nullable <see cref="T:System.Single"/> values 
2848
            that are obtained by invoking a transform function on each 
2849
            element of the input sequence.
2850
            </summary>
2851
        </member>
2852
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">
2853
            <summary>
2854
            Computes the sum of a sequence of <see cref="T:System.Single"/> values.
2855
            </summary>
2856
        </member>
2857
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})">
2858
            <summary>
2859
            Computes the sum of a sequence of <see cref="T:System.Single"/> 
2860
            values that are obtained by invoking a transform function on 
2861
            each element of the input sequence.
2862
            </summary>
2863
        </member>
2864
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">
2865
            <summary>
2866
            Computes the average of a sequence of <see cref="T:System.Single"/> values.
2867
            </summary>
2868
        </member>
2869
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})">
2870
            <summary>
2871
            Computes the average of a sequence of <see cref="T:System.Single"/> values 
2872
            that are obtained by invoking a transform function on each 
2873
            element of the input sequence.
2874
            </summary>
2875
        </member>
2876
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">
2877
            <summary>
2878
            Returns the minimum value in a sequence of nullable 
2879
            <see cref="T:System.Single"/> values.
2880
            </summary>
2881
        </member>
2882
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})">
2883
            <summary>
2884
            Invokes a transform function on each element of a sequence and 
2885
            returns the minimum nullable <see cref="T:System.Single"/> value.
2886
            </summary>
2887
        </member>
2888
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">
2889
            <summary>
2890
            Returns the maximum value in a sequence of nullable 
2891
            <see cref="T:System.Single"/> values.
2892
            </summary>
2893
        </member>
2894
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})">
2895
            <summary>
2896
            Invokes a transform function on each element of a sequence and 
2897
            returns the maximum nullable <see cref="T:System.Single"/> value.
2898
            </summary>
2899
        </member>
2900
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Double})">
2901
            <summary>
2902
            Computes the sum of a sequence of nullable <see cref="T:System.Double"/> values.
2903
            </summary>
2904
        </member>
2905
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Double})">
2906
            <summary>
2907
            Computes the sum of a sequence of nullable <see cref="T:System.Double"/> 
2908
            values that are obtained by invoking a transform function on 
2909
            each element of the input sequence.
2910
            </summary>
2911
        </member>
2912
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Double})">
2913
            <summary>
2914
            Computes the average of a sequence of nullable <see cref="T:System.Double"/> values.
2915
            </summary>
2916
        </member>
2917
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Double})">
2918
            <summary>
2919
            Computes the average of a sequence of nullable <see cref="T:System.Double"/> values 
2920
            that are obtained by invoking a transform function on each 
2921
            element of the input sequence.
2922
            </summary>
2923
        </member>
2924
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">
2925
            <summary>
2926
            Computes the sum of a sequence of <see cref="T:System.Double"/> values.
2927
            </summary>
2928
        </member>
2929
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})">
2930
            <summary>
2931
            Computes the sum of a sequence of <see cref="T:System.Double"/> 
2932
            values that are obtained by invoking a transform function on 
2933
            each element of the input sequence.
2934
            </summary>
2935
        </member>
2936
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">
2937
            <summary>
2938
            Computes the average of a sequence of <see cref="T:System.Double"/> values.
2939
            </summary>
2940
        </member>
2941
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})">
2942
            <summary>
2943
            Computes the average of a sequence of <see cref="T:System.Double"/> values 
2944
            that are obtained by invoking a transform function on each 
2945
            element of the input sequence.
2946
            </summary>
2947
        </member>
2948
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">
2949
            <summary>
2950
            Returns the minimum value in a sequence of nullable 
2951
            <see cref="T:System.Double"/> values.
2952
            </summary>
2953
        </member>
2954
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})">
2955
            <summary>
2956
            Invokes a transform function on each element of a sequence and 
2957
            returns the minimum nullable <see cref="T:System.Double"/> value.
2958
            </summary>
2959
        </member>
2960
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">
2961
            <summary>
2962
            Returns the maximum value in a sequence of nullable 
2963
            <see cref="T:System.Double"/> values.
2964
            </summary>
2965
        </member>
2966
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})">
2967
            <summary>
2968
            Invokes a transform function on each element of a sequence and 
2969
            returns the maximum nullable <see cref="T:System.Double"/> value.
2970
            </summary>
2971
        </member>
2972
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Decimal})">
2973
            <summary>
2974
            Computes the sum of a sequence of nullable <see cref="T:System.Decimal"/> values.
2975
            </summary>
2976
        </member>
2977
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Decimal})">
2978
            <summary>
2979
            Computes the sum of a sequence of nullable <see cref="T:System.Decimal"/> 
2980
            values that are obtained by invoking a transform function on 
2981
            each element of the input sequence.
2982
            </summary>
2983
        </member>
2984
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Decimal})">
2985
            <summary>
2986
            Computes the average of a sequence of nullable <see cref="T:System.Decimal"/> values.
2987
            </summary>
2988
        </member>
2989
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Decimal})">
2990
            <summary>
2991
            Computes the average of a sequence of nullable <see cref="T:System.Decimal"/> values 
2992
            that are obtained by invoking a transform function on each 
2993
            element of the input sequence.
2994
            </summary>
2995
        </member>
2996
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">
2997
            <summary>
2998
            Computes the sum of a sequence of <see cref="T:System.Decimal"/> values.
2999
            </summary>
3000
        </member>
3001
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})">
3002
            <summary>
3003
            Computes the sum of a sequence of <see cref="T:System.Decimal"/> 
3004
            values that are obtained by invoking a transform function on 
3005
            each element of the input sequence.
3006
            </summary>
3007
        </member>
3008
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">
3009
            <summary>
3010
            Computes the average of a sequence of <see cref="T:System.Decimal"/> values.
3011
            </summary>
3012
        </member>
3013
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})">
3014
            <summary>
3015
            Computes the average of a sequence of <see cref="T:System.Decimal"/> values 
3016
            that are obtained by invoking a transform function on each 
3017
            element of the input sequence.
3018
            </summary>
3019
        </member>
3020
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">
3021
            <summary>
3022
            Returns the minimum value in a sequence of nullable 
3023
            <see cref="T:System.Decimal"/> values.
3024
            </summary>
3025
        </member>
3026
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})">
3027
            <summary>
3028
            Invokes a transform function on each element of a sequence and 
3029
            returns the minimum nullable <see cref="T:System.Decimal"/> value.
3030
            </summary>
3031
        </member>
3032
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">
3033
            <summary>
3034
            Returns the maximum value in a sequence of nullable 
3035
            <see cref="T:System.Decimal"/> values.
3036
            </summary>
3037
        </member>
3038
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})">
3039
            <summary>
3040
            Invokes a transform function on each element of a sequence and 
3041
            returns the maximum nullable <see cref="T:System.Decimal"/> value.
3042
            </summary>
3043
        </member>
3044
        <member name="T:Newtonsoft.Json.Utilities.LinqBridge.IGrouping`2">
3045
            <summary>
3046
            Represents a collection of objects that have a common key.
3047
            </summary>
3048
        </member>
3049
        <member name="P:Newtonsoft.Json.Utilities.LinqBridge.IGrouping`2.Key">
3050
            <summary>
3051
            Gets the key of the <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.IGrouping`2"/>.
3052
            </summary>
3053
        </member>
3054
        <member name="T:Newtonsoft.Json.Utilities.LinqBridge.ILookup`2">
3055
            <summary>
3056
            Defines an indexer, size property, and Boolean search method for 
3057
            data structures that map keys to <see cref="T:System.Collections.Generic.IEnumerable`1"/> 
3058
            sequences of values.
3059
            </summary>
3060
        </member>
3061
        <member name="T:Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable`1">
3062
            <summary>
3063
            Represents a sorted sequence.
3064
            </summary>
3065
        </member>
3066
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable`1.CreateOrderedEnumerable``1(Newtonsoft.Json.Serialization.Func{`0,``0},System.Collections.Generic.IComparer{``0},System.Boolean)">
3067
            <summary>
3068
            Performs a subsequent ordering on the elements of an 
3069
            <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable`1"/> according to a key.
3070
            </summary>
3071
        </member>
3072
        <member name="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2">
3073
            <summary>
3074
            Represents a collection of keys each mapped to one or more values.
3075
            </summary>
3076
        </member>
3077
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.Contains(`0)">
3078
            <summary>
3079
            Determines whether a specified key is in the <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/>.
3080
            </summary>
3081
        </member>
3082
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.ApplyResultSelector``1(Newtonsoft.Json.Serialization.Func{`0,System.Collections.Generic.IEnumerable{`1},``0})">
3083
            <summary>
3084
            Applies a transform function to each key and its associated 
3085
            values and returns the results.
3086
            </summary>
3087
        </member>
3088
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.GetEnumerator">
3089
            <summary>
3090
            Returns a generic enumerator that iterates through the <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/>.
3091
            </summary>
3092
        </member>
3093
        <member name="P:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.Count">
3094
            <summary>
3095
            Gets the number of key/value collection pairs in the <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/>.
3096
            </summary>
3097
        </member>
3098
        <member name="P:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.Item(`0)">
3099
            <summary>
3100
            Gets the collection of values indexed by the specified key.
3101
            </summary>
3102
        </member>
3103
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.OrderedEnumerable`2.TagPosition(`0,System.Int32)">
3104
            <remarks>
3105
            See <a href="http://code.google.com/p/linqbridge/issues/detail?id=11">issue #11</a>
3106
            for why this method is needed and cannot be expressed as a 
3107
            lambda at the call site.
3108
            </remarks>
3109
        </member>
3110
        <member name="M:Newtonsoft.Json.Utilities.LinqBridge.OrderedEnumerable`2.GetFirst(Newtonsoft.Json.Utilities.LinqBridge.Tuple{`0,System.Int32})">
3111
            <remarks>
3112
            See <a href="http://code.google.com/p/linqbridge/issues/detail?id=11">issue #11</a>
3113
            for why this method is needed and cannot be expressed as a 
3114
            lambda at the call site.
3115
            </remarks>
3116
        </member>
3117
        <member name="T:System.Runtime.CompilerServices.ExtensionAttribute">
3118
            <remarks>
3119
            This attribute allows us to define extension methods without 
3120
            requiring .NET Framework 3.5. For more information, see the section,
3121
            <a href="http://msdn.microsoft.com/en-us/magazine/cc163317.aspx#S7">Extension Methods in .NET Framework 2.0 Apps</a>,
3122
            of <a href="http://msdn.microsoft.com/en-us/magazine/cc163317.aspx">Basic Instincts: Extension Methods</a>
3123
            column in <a href="http://msdn.microsoft.com/msdnmag/">MSDN Magazine</a>, 
3124
            issue <a href="http://msdn.microsoft.com/en-us/magazine/cc135410.aspx">Nov 2007</a>.
3125
            </remarks>
3126
        </member>
3127
        <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
3128
            <summary>
3129
            Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
3130
            </summary>
3131
        </member>
3132
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">
3133
            <summary>
3134
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
3135
            </summary>
3136
            <param name="name">The name.</param>
3137
        </member>
3138
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
3139
            <summary>
3140
            When overridden in a derived class, returns whether resetting an object changes its value.
3141
            </summary>
3142
            <returns>
3143
            true if resetting the component changes its value; otherwise, false.
3144
            </returns>
3145
            <param name="component">The component to test for reset capability. 
3146
                            </param>
3147
        </member>
3148
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
3149
            <summary>
3150
            When overridden in a derived class, gets the current value of the property on a component.
3151
            </summary>
3152
            <returns>
3153
            The value of a property for a given component.
3154
            </returns>
3155
            <param name="component">The component with the property for which to retrieve the value. 
3156
                            </param>
3157
        </member>
3158
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
3159
            <summary>
3160
            When overridden in a derived class, resets the value for this property of the component to the default value.
3161
            </summary>
3162
            <param name="component">The component with the property value that is to be reset to the default value. 
3163
                            </param>
3164
        </member>
3165
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
3166
            <summary>
3167
            When overridden in a derived class, sets the value of the component to a different value.
3168
            </summary>
3169
            <param name="component">The component with the property value that is to be set. 
3170
                            </param><param name="value">The new value. 
3171
                            </param>
3172
        </member>
3173
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
3174
            <summary>
3175
            When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
3176
            </summary>
3177
            <returns>
3178
            true if the property should be persisted; otherwise, false.
3179
            </returns>
3180
            <param name="component">The component with the property to be examined for persistence. 
3181
                            </param>
3182
        </member>
3183
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
3184
            <summary>
3185
            When overridden in a derived class, gets the type of the component this property is bound to.
3186
            </summary>
3187
            <returns>
3188
            A <see cref="T:System.Type"/> that represents the type of component this property is bound to. When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"/> or <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"/> methods are invoked, the object specified might be an instance of this type.
3189
            </returns>
3190
        </member>
3191
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
3192
            <summary>
3193
            When overridden in a derived class, gets a value indicating whether this property is read-only.
3194
            </summary>
3195
            <returns>
3196
            true if the property is read-only; otherwise, false.
3197
            </returns>
3198
        </member>
3199
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
3200
            <summary>
3201
            When overridden in a derived class, gets the type of the property.
3202
            </summary>
3203
            <returns>
3204
            A <see cref="T:System.Type"/> that represents the type of the property.
3205
            </returns>
3206
        </member>
3207
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
3208
            <summary>
3209
            Gets the hash code for the name of the member.
3210
            </summary>
3211
            <value></value>
3212
            <returns>
3213
            The hash code for the name of the member.
3214
            </returns>
3215
        </member>
3216
        <member name="T:Newtonsoft.Json.Linq.JRaw">
3217
            <summary>
3218
            Represents a raw JSON string.
3219
            </summary>
3220
        </member>
3221
        <member name="T:Newtonsoft.Json.Linq.JValue">
3222
            <summary>
3223
            Represents a value in JSON (string, integer, date, etc).
3224
            </summary>
3225
        </member>
3226
        <member name="T:Newtonsoft.Json.Linq.JToken">
3227
            <summary>
3228
            Represents an abstract JSON token.
3229
            </summary>
3230
        </member>
3231
        <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
3232
            <summary>
3233
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
3234
            </summary>
3235
            <typeparam name="T">The type of token</typeparam>
3236
        </member>
3237
        <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
3238
            <summary>
3239
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
3240
            </summary>
3241
            <value></value>
3242
        </member>
3243
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
3244
            <summary>
3245
            Compares the values of two tokens, including the values of all descendant tokens.
3246
            </summary>
3247
            <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
3248
            <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
3249
            <returns>true if the tokens are equal; otherwise false.</returns>
3250
        </member>
3251
        <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
3252
            <summary>
3253
            Adds the specified content immediately after this token.
3254
            </summary>
3255
            <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
3256
        </member>
3257
        <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
3258
            <summary>
3259
            Adds the specified content immediately before this token.
3260
            </summary>
3261
            <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
3262
        </member>
3263
        <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
3264
            <summary>
3265
            Returns a collection of the ancestor tokens of this token.
3266
            </summary>
3267
            <returns>A collection of the ancestor tokens of this token.</returns>
3268
        </member>
3269
        <member name="M:Newtonsoft.Json.Linq.JToken.AncestorsAndSelf">
3270
            <summary>
3271
            Returns a collection of tokens that contain this token, and the ancestors of this token.
3272
            </summary>
3273
            <returns>A collection of tokens that contain this token, and the ancestors of this token.</returns>
3274
        </member>
3275
        <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
3276
            <summary>
3277
            Returns a collection of the sibling tokens after this token, in document order.
3278
            </summary>
3279
            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
3280
        </member>
3281
        <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
3282
            <summary>
3283
            Returns a collection of the sibling tokens before this token, in document order.
3284
            </summary>
3285
            <returns>A collection of the sibling tokens before this token, in document order.</returns>
3286
        </member>
3287
        <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
3288
            <summary>
3289
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
3290
            </summary>
3291
            <typeparam name="T">The type to convert the token to.</typeparam>
3292
            <param name="key">The token key.</param>
3293
            <returns>The converted token value.</returns>
3294
        </member>
3295
        <member name="M:Newtonsoft.Json.Linq.JToken.Children">
3296
            <summary>
3297
            Returns a collection of the child tokens of this token, in document order.
3298
            </summary>
3299
            <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>
3300
        </member>
3301
        <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
3302
            <summary>
3303
            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
3304
            </summary>
3305
            <typeparam name="T">The type to filter the child tokens on.</typeparam>
3306
            <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>
3307
        </member>
3308
        <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
3309
            <summary>
3310
            Returns a collection of the child values of this token, in document order.
3311
            </summary>
3312
            <typeparam name="T">The type to convert the values to.</typeparam>
3313
            <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>
3314
        </member>
3315
        <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
3316
            <summary>
3317
            Removes this token from its parent.
3318
            </summary>
3319
        </member>
3320
        <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
3321
            <summary>
3322
            Replaces this token with the specified token.
3323
            </summary>
3324
            <param name="value">The value.</param>
3325
        </member>
3326
        <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
3327
            <summary>
3328
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3329
            </summary>
3330
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
3331
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
3332
        </member>
3333
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
3334
            <summary>
3335
            Returns the indented JSON for this token.
3336
            </summary>
3337
            <returns>
3338
            The indented JSON for this token.
3339
            </returns>
3340
        </member>
3341
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
3342
            <summary>
3343
            Returns the JSON for this token using the given formatting and converters.
3344
            </summary>
3345
            <param name="formatting">Indicates how the output is formatted.</param>
3346
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
3347
            <returns>The JSON for this token using the given formatting and converters.</returns>
3348
        </member>
3349
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
3350
            <summary>
3351
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
3352
            </summary>
3353
            <param name="value">The value.</param>
3354
            <returns>The result of the conversion.</returns>
3355
        </member>
3356
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
3357
            <summary>
3358
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3359
            </summary>
3360
            <param name="value">The value.</param>
3361
            <returns>The result of the conversion.</returns>
3362
        </member>
3363
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
3364
            <summary>
3365
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>.
3366
            </summary>
3367
            <param name="value">The value.</param>
3368
            <returns>The result of the conversion.</returns>
3369
        </member>
3370
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
3371
            <summary>
3372
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3373
            </summary>
3374
            <param name="value">The value.</param>
3375
            <returns>The result of the conversion.</returns>
3376
        </member>
3377
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
3378
            <summary>
3379
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3380
            </summary>
3381
            <param name="value">The value.</param>
3382
            <returns>The result of the conversion.</returns>
3383
        </member>
3384
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
3385
            <summary>
3386
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3387
            </summary>
3388
            <param name="value">The value.</param>
3389
            <returns>The result of the conversion.</returns>
3390
        </member>
3391
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
3392
            <summary>
3393
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3394
            </summary>
3395
            <param name="value">The value.</param>
3396
            <returns>The result of the conversion.</returns>
3397
        </member>
3398
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
3399
            <summary>
3400
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
3401
            </summary>
3402
            <param name="value">The value.</param>
3403
            <returns>The result of the conversion.</returns>
3404
        </member>
3405
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
3406
            <summary>
3407
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
3408
            </summary>
3409
            <param name="value">The value.</param>
3410
            <returns>The result of the conversion.</returns>
3411
        </member>
3412
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
3413
            <summary>
3414
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
3415
            </summary>
3416
            <param name="value">The value.</param>
3417
            <returns>The result of the conversion.</returns>
3418
        </member>
3419
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
3420
            <summary>
3421
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.
3422
            </summary>
3423
            <param name="value">The value.</param>
3424
            <returns>The result of the conversion.</returns>
3425
        </member>
3426
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
3427
            <summary>
3428
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.
3429
            </summary>
3430
            <param name="value">The value.</param>
3431
            <returns>The result of the conversion.</returns>
3432
        </member>
3433
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">
3434
            <summary>
3435
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.
3436
            </summary>
3437
            <param name="value">The value.</param>
3438
            <returns>The result of the conversion.</returns>
3439
        </member>
3440
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
3441
            <summary>
3442
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3443
            </summary>
3444
            <param name="value">The value.</param>
3445
            <returns>The result of the conversion.</returns>
3446
        </member>
3447
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
3448
            <summary>
3449
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3450
            </summary>
3451
            <param name="value">The value.</param>
3452
            <returns>The result of the conversion.</returns>
3453
        </member>
3454
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
3455
            <summary>
3456
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3457
            </summary>
3458
            <param name="value">The value.</param>
3459
            <returns>The result of the conversion.</returns>
3460
        </member>
3461
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
3462
            <summary>
3463
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3464
            </summary>
3465
            <param name="value">The value.</param>
3466
            <returns>The result of the conversion.</returns>
3467
        </member>
3468
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">
3469
            <summary>
3470
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3471
            </summary>
3472
            <param name="value">The value.</param>
3473
            <returns>The result of the conversion.</returns>
3474
        </member>
3475
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
3476
            <summary>
3477
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>.
3478
            </summary>
3479
            <param name="value">The value.</param>
3480
            <returns>The result of the conversion.</returns>
3481
        </member>
3482
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
3483
            <summary>
3484
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3485
            </summary>
3486
            <param name="value">The value.</param>
3487
            <returns>The result of the conversion.</returns>
3488
        </member>
3489
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
3490
            <summary>
3491
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3492
            </summary>
3493
            <param name="value">The value.</param>
3494
            <returns>The result of the conversion.</returns>
3495
        </member>
3496
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
3497
            <summary>
3498
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
3499
            </summary>
3500
            <param name="value">The value.</param>
3501
            <returns>The result of the conversion.</returns>
3502
        </member>
3503
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
3504
            <summary>
3505
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3506
            </summary>
3507
            <param name="value">The value.</param>
3508
            <returns>The result of the conversion.</returns>
3509
        </member>
3510
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
3511
            <summary>
3512
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
3513
            </summary>
3514
            <param name="value">The value.</param>
3515
            <returns>The result of the conversion.</returns>
3516
        </member>
3517
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
3518
            <summary>
3519
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
3520
            </summary>
3521
            <param name="value">The value.</param>
3522
            <returns>The result of the conversion.</returns>
3523
        </member>
3524
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
3525
            <summary>
3526
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
3527
            </summary>
3528
            <param name="value">The value.</param>
3529
            <returns>The result of the conversion.</returns>
3530
        </member>
3531
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
3532
            <summary>
3533
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
3534
            </summary>
3535
            <param name="value">The value.</param>
3536
            <returns>The result of the conversion.</returns>
3537
        </member>
3538
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
3539
            <summary>
3540
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
3541
            </summary>
3542
            <param name="value">The value.</param>
3543
            <returns>The result of the conversion.</returns>
3544
        </member>
3545
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
3546
            <summary>
3547
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
3548
            </summary>
3549
            <param name="value">The value.</param>
3550
            <returns>The result of the conversion.</returns>
3551
        </member>
3552
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
3553
            <summary>
3554
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>[].
3555
            </summary>
3556
            <param name="value">The value.</param>
3557
            <returns>The result of the conversion.</returns>
3558
        </member>
3559
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
3560
            <summary>
3561
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
3562
            </summary>
3563
            <param name="value">The value.</param>
3564
            <returns>The result of the conversion.</returns>
3565
        </member>
3566
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
3567
            <summary>
3568
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
3569
            </summary>
3570
            <param name="value">The value.</param>
3571
            <returns>The result of the conversion.</returns>
3572
        </member>
3573
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
3574
            <summary>
3575
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
3576
            </summary>
3577
            <param name="value">The value.</param>
3578
            <returns>The result of the conversion.</returns>
3579
        </member>
3580
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
3581
            <summary>
3582
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
3583
            </summary>
3584
            <param name="value">The value.</param>
3585
            <returns>The result of the conversion.</returns>
3586
        </member>
3587
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
3588
            <summary>
3589
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.
3590
            </summary>
3591
            <param name="value">The value.</param>
3592
            <returns>The result of the conversion.</returns>
3593
        </member>
3594
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
3595
            <summary>
3596
            Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3597
            </summary>
3598
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3599
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3600
        </member>
3601
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">
3602
            <summary>
3603
            Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3604
            </summary>
3605
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3606
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3607
        </member>
3608
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">
3609
            <summary>
3610
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3611
            </summary>
3612
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3613
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3614
        </member>
3615
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">
3616
            <summary>
3617
            Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3618
            </summary>
3619
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3620
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3621
        </member>
3622
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">
3623
            <summary>
3624
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3625
            </summary>
3626
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3627
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3628
        </member>
3629
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
3630
            <summary>
3631
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3632
            </summary>
3633
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3634
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3635
        </member>
3636
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
3637
            <summary>
3638
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3639
            </summary>
3640
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3641
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3642
        </member>
3643
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
3644
            <summary>
3645
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3646
            </summary>
3647
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3648
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3649
        </member>
3650
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
3651
            <summary>
3652
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3653
            </summary>
3654
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3655
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3656
        </member>
3657
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
3658
            <summary>
3659
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3660
            </summary>
3661
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3662
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3663
        </member>
3664
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
3665
            <summary>
3666
            Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3667
            </summary>
3668
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3669
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3670
        </member>
3671
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
3672
            <summary>
3673
            Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3674
            </summary>
3675
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3676
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3677
        </member>
3678
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
3679
            <summary>
3680
            Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3681
            </summary>
3682
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3683
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3684
        </member>
3685
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
3686
            <summary>
3687
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3688
            </summary>
3689
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3690
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3691
        </member>
3692
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
3693
            <summary>
3694
            Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3695
            </summary>
3696
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3697
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3698
        </member>
3699
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
3700
            <summary>
3701
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3702
            </summary>
3703
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3704
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3705
        </member>
3706
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
3707
            <summary>
3708
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3709
            </summary>
3710
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3711
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3712
        </member>
3713
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
3714
            <summary>
3715
            Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3716
            </summary>
3717
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3718
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3719
        </member>
3720
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
3721
            <summary>
3722
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3723
            </summary>
3724
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3725
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3726
        </member>
3727
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
3728
            <summary>
3729
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3730
            </summary>
3731
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3732
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3733
        </member>
3734
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
3735
            <summary>
3736
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3737
            </summary>
3738
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3739
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3740
        </member>
3741
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
3742
            <summary>
3743
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3744
            </summary>
3745
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3746
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3747
        </member>
3748
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
3749
            <summary>
3750
            Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3751
            </summary>
3752
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3753
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3754
        </member>
3755
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
3756
            <summary>
3757
            Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3758
            </summary>
3759
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3760
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3761
        </member>
3762
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
3763
            <summary>
3764
            Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3765
            </summary>
3766
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3767
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3768
        </member>
3769
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
3770
            <summary>
3771
            Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3772
            </summary>
3773
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3774
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3775
        </member>
3776
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
3777
            <summary>
3778
            Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3779
            </summary>
3780
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3781
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3782
        </member>
3783
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
3784
            <summary>
3785
            Performs an implicit conversion from <see cref="T:System.Byte"/>[] to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3786
            </summary>
3787
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3788
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3789
        </member>
3790
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
3791
            <summary>
3792
            Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3793
            </summary>
3794
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3795
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3796
        </member>
3797
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
3798
            <summary>
3799
            Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3800
            </summary>
3801
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3802
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3803
        </member>
3804
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
3805
            <summary>
3806
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3807
            </summary>
3808
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3809
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3810
        </member>
3811
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
3812
            <summary>
3813
            Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3814
            </summary>
3815
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3816
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3817
        </member>
3818
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
3819
            <summary>
3820
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3821
            </summary>
3822
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3823
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3824
        </member>
3825
        <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
3826
            <summary>
3827
            Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
3828
            </summary>
3829
            <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
3830
        </member>
3831
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
3832
            <summary>
3833
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
3834
            </summary>
3835
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
3836
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
3837
        </member>
3838
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
3839
            <summary>
3840
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3841
            </summary>
3842
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
3843
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
3844
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
3845
        </member>
3846
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
3847
            <summary>
3848
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3849
            </summary>
3850
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
3851
            <returns>The new object created from the JSON value.</returns>
3852
        </member>
3853
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
3854
            <summary>
3855
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3856
            </summary>
3857
            <param name="objectType">The object type that the token will be deserialized to.</param>
3858
            <returns>The new object created from the JSON value.</returns>
3859
        </member>
3860
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
3861
            <summary>
3862
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3863
            </summary>
3864
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
3865
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
3866
            <returns>The new object created from the JSON value.</returns>
3867
        </member>
3868
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
3869
            <summary>
3870
            Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3871
            </summary>
3872
            <param name="objectType">The object type that the token will be deserialized to.</param>
3873
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
3874
            <returns>The new object created from the JSON value.</returns>
3875
        </member>
3876
        <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
3877
            <summary>
3878
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3879
            </summary>
3880
            <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>
3881
            <returns>
3882
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3883
            that were read from the reader. The runtime type of the token is determined
3884
            by the token type of the first token encountered in the reader.
3885
            </returns>
3886
        </member>
3887
        <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
3888
            <summary>
3889
            Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
3890
            </summary>
3891
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
3892
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
3893
        </member>
3894
        <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
3895
            <summary>
3896
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3897
            </summary>
3898
            <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>
3899
            <returns>
3900
            An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3901
            that were read from the reader. The runtime type of the token is determined
3902
            by the token type of the first token encountered in the reader.
3903
            </returns>
3904
        </member>
3905
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
3906
            <summary>
3907
            Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
3908
            </summary>
3909
            <param name="path">
3910
            A <see cref="T:System.String"/> that contains a JPath expression.
3911
            </param>
3912
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or null.</returns>
3913
        </member>
3914
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
3915
            <summary>
3916
            Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
3917
            </summary>
3918
            <param name="path">
3919
            A <see cref="T:System.String"/> that contains a JPath expression.
3920
            </param>
3921
            <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>
3922
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3923
        </member>
3924
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
3925
            <summary>
3926
            Selects a collection of elements using a JPath expression.
3927
            </summary>
3928
            <param name="path">
3929
            A <see cref="T:System.String"/> that contains a JPath expression.
3930
            </param>
3931
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
3932
        </member>
3933
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">
3934
            <summary>
3935
            Selects a collection of elements using a JPath expression.
3936
            </summary>
3937
            <param name="path">
3938
            A <see cref="T:System.String"/> that contains a JPath expression.
3939
            </param>
3940
            <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>
3941
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
3942
        </member>
3943
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
3944
            <summary>
3945
            Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
3946
            </summary>
3947
            <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3948
        </member>
3949
        <member name="M:Newtonsoft.Json.Linq.JToken.AddAnnotation(System.Object)">
3950
            <summary>
3951
            Adds an object to the annotation list of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3952
            </summary>
3953
            <param name="annotation">The annotation to add.</param>
3954
        </member>
3955
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotation``1">
3956
            <summary>
3957
            Get the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3958
            </summary>
3959
            <typeparam name="T">The type of the annotation to retrieve.</typeparam>
3960
            <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
3961
        </member>
3962
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotation(System.Type)">
3963
            <summary>
3964
            Gets the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3965
            </summary>
3966
            <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotation to retrieve.</param>
3967
            <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
3968
        </member>
3969
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotations``1">
3970
            <summary>
3971
            Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3972
            </summary>
3973
            <typeparam name="T">The type of the annotations to retrieve.</typeparam>
3974
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/>  that contains the annotations for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3975
        </member>
3976
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotations(System.Type)">
3977
            <summary>
3978
            Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3979
            </summary>
3980
            <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotations to retrieve.</param>
3981
            <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>
3982
        </member>
3983
        <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations``1">
3984
            <summary>
3985
            Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3986
            </summary>
3987
            <typeparam name="T">The type of annotations to remove.</typeparam>
3988
        </member>
3989
        <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations(System.Type)">
3990
            <summary>
3991
            Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3992
            </summary>
3993
            <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of annotations to remove.</param>
3994
        </member>
3995
        <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
3996
            <summary>
3997
            Gets a comparer that can compare two tokens for value equality.
3998
            </summary>
3999
            <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
4000
        </member>
4001
        <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
4002
            <summary>
4003
            Gets or sets the parent.
4004
            </summary>
4005
            <value>The parent.</value>
4006
        </member>
4007
        <member name="P:Newtonsoft.Json.Linq.JToken.Root">
4008
            <summary>
4009
            Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4010
            </summary>
4011
            <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
4012
        </member>
4013
        <member name="P:Newtonsoft.Json.Linq.JToken.Type">
4014
            <summary>
4015
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4016
            </summary>
4017
            <value>The type.</value>
4018
        </member>
4019
        <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
4020
            <summary>
4021
            Gets a value indicating whether this token has child tokens.
4022
            </summary>
4023
            <value>
4024
            	<c>true</c> if this token has child values; otherwise, <c>false</c>.
4025
            </value>
4026
        </member>
4027
        <member name="P:Newtonsoft.Json.Linq.JToken.Next">
4028
            <summary>
4029
            Gets the next sibling token of this node.
4030
            </summary>
4031
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
4032
        </member>
4033
        <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
4034
            <summary>
4035
            Gets the previous sibling token of this node.
4036
            </summary>
4037
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
4038
        </member>
4039
        <member name="P:Newtonsoft.Json.Linq.JToken.Path">
4040
            <summary>
4041
            Gets the path of the JSON token. 
4042
            </summary>
4043
        </member>
4044
        <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
4045
            <summary>
4046
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
4047
            </summary>
4048
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
4049
        </member>
4050
        <member name="P:Newtonsoft.Json.Linq.JToken.First">
4051
            <summary>
4052
            Get the first child token of this token.
4053
            </summary>
4054
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
4055
        </member>
4056
        <member name="P:Newtonsoft.Json.Linq.JToken.Last">
4057
            <summary>
4058
            Get the last child token of this token.
4059
            </summary>
4060
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
4061
        </member>
4062
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
4063
            <summary>
4064
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
4065
            </summary>
4066
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
4067
        </member>
4068
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
4069
            <summary>
4070
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4071
            </summary>
4072
            <param name="value">The value.</param>
4073
        </member>
4074
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
4075
            <summary>
4076
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4077
            </summary>
4078
            <param name="value">The value.</param>
4079
        </member>
4080
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
4081
            <summary>
4082
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4083
            </summary>
4084
            <param name="value">The value.</param>
4085
        </member>
4086
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
4087
            <summary>
4088
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4089
            </summary>
4090
            <param name="value">The value.</param>
4091
        </member>
4092
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
4093
            <summary>
4094
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4095
            </summary>
4096
            <param name="value">The value.</param>
4097
        </member>
4098
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
4099
            <summary>
4100
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4101
            </summary>
4102
            <param name="value">The value.</param>
4103
        </member>
4104
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
4105
            <summary>
4106
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4107
            </summary>
4108
            <param name="value">The value.</param>
4109
        </member>
4110
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
4111
            <summary>
4112
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4113
            </summary>
4114
            <param name="value">The value.</param>
4115
        </member>
4116
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
4117
            <summary>
4118
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4119
            </summary>
4120
            <param name="value">The value.</param>
4121
        </member>
4122
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
4123
            <summary>
4124
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4125
            </summary>
4126
            <param name="value">The value.</param>
4127
        </member>
4128
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
4129
            <summary>
4130
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4131
            </summary>
4132
            <param name="value">The value.</param>
4133
        </member>
4134
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
4135
            <summary>
4136
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4137
            </summary>
4138
            <param name="value">The value.</param>
4139
        </member>
4140
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
4141
            <summary>
4142
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
4143
            </summary>
4144
            <param name="value">The value.</param>
4145
        </member>
4146
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
4147
            <summary>
4148
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
4149
            </summary>
4150
            <param name="value">The value.</param>
4151
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
4152
        </member>
4153
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
4154
            <summary>
4155
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
4156
            </summary>
4157
            <param name="value">The value.</param>
4158
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
4159
        </member>
4160
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">
4161
            <summary>
4162
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
4163
            </summary>
4164
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
4165
        </member>
4166
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">
4167
            <summary>
4168
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
4169
            </summary>
4170
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
4171
        </member>
4172
        <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
4173
            <summary>
4174
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
4175
            </summary>
4176
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
4177
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
4178
        </member>
4179
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
4180
            <summary>
4181
            Indicates whether the current object is equal to another object of the same type.
4182
            </summary>
4183
            <returns>
4184
            true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.
4185
            </returns>
4186
            <param name="other">An object to compare with this object.</param>
4187
        </member>
4188
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
4189
            <summary>
4190
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
4191
            </summary>
4192
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
4193
            <returns>
4194
            true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
4195
            </returns>
4196
            <exception cref="T:System.NullReferenceException">
4197
            The <paramref name="obj"/> parameter is null.
4198
            </exception>
4199
        </member>
4200
        <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
4201
            <summary>
4202
            Serves as a hash function for a particular type.
4203
            </summary>
4204
            <returns>
4205
            A hash code for the current <see cref="T:System.Object"/>.
4206
            </returns>
4207
        </member>
4208
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
4209
            <summary>
4210
            Returns a <see cref="T:System.String"/> that represents this instance.
4211
            </summary>
4212
            <returns>
4213
            A <see cref="T:System.String"/> that represents this instance.
4214
            </returns>
4215
        </member>
4216
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
4217
            <summary>
4218
            Returns a <see cref="T:System.String"/> that represents this instance.
4219
            </summary>
4220
            <param name="format">The format.</param>
4221
            <returns>
4222
            A <see cref="T:System.String"/> that represents this instance.
4223
            </returns>
4224
        </member>
4225
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
4226
            <summary>
4227
            Returns a <see cref="T:System.String"/> that represents this instance.
4228
            </summary>
4229
            <param name="formatProvider">The format provider.</param>
4230
            <returns>
4231
            A <see cref="T:System.String"/> that represents this instance.
4232
            </returns>
4233
        </member>
4234
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
4235
            <summary>
4236
            Returns a <see cref="T:System.String"/> that represents this instance.
4237
            </summary>
4238
            <param name="format">The format.</param>
4239
            <param name="formatProvider">The format provider.</param>
4240
            <returns>
4241
            A <see cref="T:System.String"/> that represents this instance.
4242
            </returns>
4243
        </member>
4244
        <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
4245
            <summary>
4246
            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.
4247
            </summary>
4248
            <param name="obj">An object to compare with this instance.</param>
4249
            <returns>
4250
            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
4251
            Value
4252
            Meaning
4253
            Less than zero
4254
            This instance is less than <paramref name="obj"/>.
4255
            Zero
4256
            This instance is equal to <paramref name="obj"/>.
4257
            Greater than zero
4258
            This instance is greater than <paramref name="obj"/>.
4259
            </returns>
4260
            <exception cref="T:System.ArgumentException">
4261
            	<paramref name="obj"/> is not the same type as this instance.
4262
            </exception>
4263
        </member>
4264
        <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
4265
            <summary>
4266
            Gets a value indicating whether this token has child tokens.
4267
            </summary>
4268
            <value>
4269
            	<c>true</c> if this token has child values; otherwise, <c>false</c>.
4270
            </value>
4271
        </member>
4272
        <member name="P:Newtonsoft.Json.Linq.JValue.Type">
4273
            <summary>
4274
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4275
            </summary>
4276
            <value>The type.</value>
4277
        </member>
4278
        <member name="P:Newtonsoft.Json.Linq.JValue.Value">
4279
            <summary>
4280
            Gets or sets the underlying token value.
4281
            </summary>
4282
            <value>The underlying token value.</value>
4283
        </member>
4284
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
4285
            <summary>
4286
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
4287
            </summary>
4288
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
4289
        </member>
4290
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
4291
            <summary>
4292
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
4293
            </summary>
4294
            <param name="rawJson">The raw json.</param>
4295
        </member>
4296
        <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
4297
            <summary>
4298
            Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
4299
            </summary>
4300
            <param name="reader">The reader.</param>
4301
            <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
4302
        </member>
4303
        <member name="T:Newtonsoft.Json.Required">
4304
            <summary>
4305
            Indicating whether a property is required.
4306
            </summary>
4307
        </member>
4308
        <member name="F:Newtonsoft.Json.Required.Default">
4309
            <summary>
4310
            The property is not required. The default state.
4311
            </summary>
4312
        </member>
4313
        <member name="F:Newtonsoft.Json.Required.AllowNull">
4314
            <summary>
4315
            The property must be defined in JSON but can be a null value.
4316
            </summary>
4317
        </member>
4318
        <member name="F:Newtonsoft.Json.Required.Always">
4319
            <summary>
4320
            The property must be defined in JSON and cannot be a null value.
4321
            </summary>
4322
        </member>
4323
        <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
4324
            <summary>
4325
            Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4326
            </summary>
4327
        </member>
4328
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
4329
            <summary>
4330
            Resolves a reference to its object.
4331
            </summary>
4332
            <param name="context">The serialization context.</param>
4333
            <param name="reference">The reference to resolve.</param>
4334
            <returns>The object that</returns>
4335
        </member>
4336
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
4337
            <summary>
4338
            Gets the reference for the sepecified object.
4339
            </summary>
4340
            <param name="context">The serialization context.</param>
4341
            <param name="value">The object to get a reference for.</param>
4342
            <returns>The reference to the object.</returns>
4343
        </member>
4344
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
4345
            <summary>
4346
            Determines whether the specified object is referenced.
4347
            </summary>
4348
            <param name="context">The serialization context.</param>
4349
            <param name="value">The object to test for a reference.</param>
4350
            <returns>
4351
            	<c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
4352
            </returns>
4353
        </member>
4354
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
4355
            <summary>
4356
            Adds a reference to the specified object.
4357
            </summary>
4358
            <param name="context">The serialization context.</param>
4359
            <param name="reference">The reference.</param>
4360
            <param name="value">The object to reference.</param>
4361
        </member>
4362
        <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
4363
            <summary>
4364
            Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4365
            Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable.
4366
            </summary>
4367
            <example>
4368
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References"/>       
4369
            </example>
4370
        </member>
4371
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
4372
            <summary>
4373
            Do not preserve references when serializing types.
4374
            </summary>
4375
        </member>
4376
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
4377
            <summary>
4378
            Preserve references when serializing into a JSON object structure.
4379
            </summary>
4380
        </member>
4381
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
4382
            <summary>
4383
            Preserve references when serializing into a JSON array structure.
4384
            </summary>
4385
        </member>
4386
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
4387
            <summary>
4388
            Preserve references when serializing.
4389
            </summary>
4390
        </member>
4391
        <member name="T:Newtonsoft.Json.JsonArrayAttribute">
4392
            <summary>
4393
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
4394
            </summary>
4395
        </member>
4396
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
4397
            <summary>
4398
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
4399
            </summary>
4400
        </member>
4401
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
4402
            <summary>
4403
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items
4404
            </summary>
4405
            <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
4406
        </member>
4407
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
4408
            <summary>
4409
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
4410
            </summary>
4411
            <param name="id">The container Id.</param>
4412
        </member>
4413
        <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
4414
            <summary>
4415
            Gets or sets a value indicating whether null items are allowed in the collection.
4416
            </summary>
4417
            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
4418
        </member>
4419
        <member name="T:Newtonsoft.Json.DefaultValueHandling">
4420
            <summary>
4421
            Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4422
            </summary>
4423
            <example>
4424
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class"/>
4425
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example"/>
4426
            </example>
4427
        </member>
4428
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
4429
            <summary>
4430
            Include members where the member value is the same as the member's default value when serializing objects.
4431
            Included members are written to JSON. Has no effect when deserializing.
4432
            </summary>
4433
        </member>
4434
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
4435
            <summary>
4436
            Ignore members where the member value is the same as the member's default value when serializing objects
4437
            so that is is not written to JSON.
4438
            This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,
4439
            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
4440
            placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
4441
            </summary>
4442
        </member>
4443
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
4444
            <summary>
4445
            Members with a default value but no JSON will be set to their default value when deserializing.
4446
            </summary>
4447
        </member>
4448
        <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
4449
            <summary>
4450
            Ignore members where the member value is the same as the member's default value when serializing objects
4451
            and sets members to their default value when deserializing.
4452
            </summary>
4453
        </member>
4454
        <member name="T:Newtonsoft.Json.JsonConverterAttribute">
4455
            <summary>
4456
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
4457
            </summary>
4458
        </member>
4459
        <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
4460
            <summary>
4461
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
4462
            </summary>
4463
            <param name="converterType">Type of the converter.</param>
4464
        </member>
4465
        <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])">
4466
            <summary>
4467
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
4468
            </summary>
4469
            <param name="converterType">Type of the converter.</param>
4470
            <param name="converterParameters">Parameter list to use when constructing the JsonConverter.  Can be null.</param>
4471
        </member>
4472
        <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
4473
            <summary>
4474
            Gets the type of the converter.
4475
            </summary>
4476
            <value>The type of the converter.</value>
4477
        </member>
4478
        <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters">
4479
            <summary>
4480
            The parameter list to use when constructing the JsonConverter described by ConverterType.  
4481
            If null, the default constructor is used.
4482
            </summary>
4483
        </member>
4484
        <member name="T:Newtonsoft.Json.JsonObjectAttribute">
4485
            <summary>
4486
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
4487
            </summary>
4488
        </member>
4489
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
4490
            <summary>
4491
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
4492
            </summary>
4493
        </member>
4494
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
4495
            <summary>
4496
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
4497
            </summary>
4498
            <param name="memberSerialization">The member serialization.</param>
4499
        </member>
4500
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
4501
            <summary>
4502
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
4503
            </summary>
4504
            <param name="id">The container Id.</param>
4505
        </member>
4506
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
4507
            <summary>
4508
            Gets or sets the member serialization.
4509
            </summary>
4510
            <value>The member serialization.</value>
4511
        </member>
4512
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
4513
            <summary>
4514
            Gets or sets a value that indicates whether the object's properties are required.
4515
            </summary>
4516
            <value>
4517
            	A value indicating whether the object's properties are required.
4518
            </value>
4519
        </member>
4520
        <member name="T:Newtonsoft.Json.JsonSerializerSettings">
4521
            <summary>
4522
            Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
4523
            </summary>
4524
        </member>
4525
        <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
4526
            <summary>
4527
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
4528
            </summary>
4529
        </member>
4530
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
4531
            <summary>
4532
            Gets or sets how reference loops (e.g. a class referencing itself) is handled.
4533
            </summary>
4534
            <value>Reference loop handling.</value>
4535
        </member>
4536
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
4537
            <summary>
4538
            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
4539
            </summary>
4540
            <value>Missing member handling.</value>
4541
        </member>
4542
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
4543
            <summary>
4544
            Gets or sets how objects are created during deserialization.
4545
            </summary>
4546
            <value>The object creation handling.</value>
4547
        </member>
4548
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
4549
            <summary>
4550
            Gets or sets how null values are handled during serialization and deserialization.
4551
            </summary>
4552
            <value>Null value handling.</value>
4553
        </member>
4554
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
4555
            <summary>
4556
            Gets or sets how null default are handled during serialization and deserialization.
4557
            </summary>
4558
            <value>The default value handling.</value>
4559
        </member>
4560
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
4561
            <summary>
4562
            Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
4563
            </summary>
4564
            <value>The converters.</value>
4565
        </member>
4566
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
4567
            <summary>
4568
            Gets or sets how object references are preserved by the serializer.
4569
            </summary>
4570
            <value>The preserve references handling.</value>
4571
        </member>
4572
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
4573
            <summary>
4574
            Gets or sets how type name writing and reading is handled by the serializer.
4575
            </summary>
4576
            <value>The type name handling.</value>
4577
        </member>
4578
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">
4579
            <summary>
4580
            Gets or sets how metadata properties are used during deserialization.
4581
            </summary>
4582
            <value>The metadata properties handling.</value>
4583
        </member>
4584
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
4585
            <summary>
4586
            Gets or sets how a type name assembly is written and resolved by the serializer.
4587
            </summary>
4588
            <value>The type name assembly format.</value>
4589
        </member>
4590
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
4591
            <summary>
4592
            Gets or sets how constructors are used during deserialization.
4593
            </summary>
4594
            <value>The constructor handling.</value>
4595
        </member>
4596
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
4597
            <summary>
4598
            Gets or sets the contract resolver used by the serializer when
4599
            serializing .NET objects to JSON and vice versa.
4600
            </summary>
4601
            <value>The contract resolver.</value>
4602
        </member>
4603
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
4604
            <summary>
4605
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
4606
            </summary>
4607
            <value>The reference resolver.</value>
4608
        </member>
4609
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
4610
            <summary>
4611
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
4612
            </summary>
4613
            <value>The trace writer.</value>
4614
        </member>
4615
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
4616
            <summary>
4617
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
4618
            </summary>
4619
            <value>The binder.</value>
4620
        </member>
4621
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
4622
            <summary>
4623
            Gets or sets the error handler called during serialization and deserialization.
4624
            </summary>
4625
            <value>The error handler called during serialization and deserialization.</value>
4626
        </member>
4627
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
4628
            <summary>
4629
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
4630
            </summary>
4631
            <value>The context.</value>
4632
        </member>
4633
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
4634
            <summary>
4635
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
4636
            </summary>
4637
        </member>
4638
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
4639
            <summary>
4640
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
4641
            </summary>
4642
        </member>
4643
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
4644
            <summary>
4645
            Indicates how JSON text output is formatted.
4646
            </summary>
4647
        </member>
4648
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
4649
            <summary>
4650
            Get or set how dates are written to JSON text.
4651
            </summary>
4652
        </member>
4653
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
4654
            <summary>
4655
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
4656
            </summary>
4657
        </member>
4658
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
4659
            <summary>
4660
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
4661
            </summary>
4662
        </member>
4663
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
4664
            <summary>
4665
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
4666
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
4667
            are written as JSON.
4668
            </summary>
4669
        </member>
4670
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
4671
            <summary>
4672
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
4673
            </summary>
4674
        </member>
4675
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
4676
            <summary>
4677
            Get or set how strings are escaped when writing JSON text.
4678
            </summary>
4679
        </member>
4680
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
4681
            <summary>
4682
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
4683
            </summary>
4684
        </member>
4685
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
4686
            <summary>
4687
            Gets a value indicating whether there will be a check for additional content after deserializing an object.
4688
            </summary>
4689
            <value>
4690
            	<c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
4691
            </value>
4692
        </member>
4693
        <member name="T:Newtonsoft.Json.JsonValidatingReader">
4694
            <summary>
4695
            Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
4696
            </summary>
4697
        </member>
4698
        <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
4699
            <summary>
4700
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
4701
            validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
4702
            </summary>
4703
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
4704
        </member>
4705
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
4706
            <summary>
4707
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4708
            </summary>
4709
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
4710
        </member>
4711
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
4712
            <summary>
4713
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
4714
            </summary>
4715
            <returns>
4716
            A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null.
4717
            </returns>
4718
        </member>
4719
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
4720
            <summary>
4721
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4722
            </summary>
4723
            <returns>A <see cref="T:System.Nullable`1"/>.</returns>
4724
        </member>
4725
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
4726
            <summary>
4727
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
4728
            </summary>
4729
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4730
        </member>
4731
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
4732
            <summary>
4733
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
4734
            </summary>
4735
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4736
        </member>
4737
        <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
4738
            <summary>
4739
            Reads the next JSON token from the stream.
4740
            </summary>
4741
            <returns>
4742
            true if the next token was read successfully; false if there are no more tokens to read.
4743
            </returns>
4744
        </member>
4745
        <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
4746
            <summary>
4747
            Sets an event handler for receiving schema validation errors.
4748
            </summary>
4749
        </member>
4750
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
4751
            <summary>
4752
            Gets the text value of the current JSON token.
4753
            </summary>
4754
            <value></value>
4755
        </member>
4756
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
4757
            <summary>
4758
            Gets the depth of the current token in the JSON document.
4759
            </summary>
4760
            <value>The depth of the current token in the JSON document.</value>
4761
        </member>
4762
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
4763
            <summary>
4764
            Gets the path of the current JSON token. 
4765
            </summary>
4766
        </member>
4767
        <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
4768
            <summary>
4769
            Gets the quotation mark character used to enclose the value of a string.
4770
            </summary>
4771
            <value></value>
4772
        </member>
4773
        <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
4774
            <summary>
4775
            Gets the type of the current JSON token.
4776
            </summary>
4777
            <value></value>
4778
        </member>
4779
        <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
4780
            <summary>
4781
            Gets the Common Language Runtime (CLR) type for the current JSON token.
4782
            </summary>
4783
            <value></value>
4784
        </member>
4785
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
4786
            <summary>
4787
            Gets or sets the schema.
4788
            </summary>
4789
            <value>The schema.</value>
4790
        </member>
4791
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
4792
            <summary>
4793
            Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
4794
            </summary>
4795
            <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
4796
        </member>
4797
        <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
4798
            <summary>
4799
            Compares tokens to determine whether they are equal.
4800
            </summary>
4801
        </member>
4802
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
4803
            <summary>
4804
            Determines whether the specified objects are equal.
4805
            </summary>
4806
            <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
4807
            <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
4808
            <returns>
4809
            true if the specified objects are equal; otherwise, false.
4810
            </returns>
4811
        </member>
4812
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
4813
            <summary>
4814
            Returns a hash code for the specified object.
4815
            </summary>
4816
            <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
4817
            <returns>A hash code for the specified object.</returns>
4818
            <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception>
4819
        </member>
4820
        <member name="T:Newtonsoft.Json.MemberSerialization">
4821
            <summary>
4822
            Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4823
            </summary>
4824
        </member>
4825
        <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
4826
            <summary>
4827
            All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
4828
            This is the default member serialization mode.
4829
            </summary>
4830
        </member>
4831
        <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
4832
            <summary>
4833
            Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="!:DataMemberAttribute"/> are serialized.
4834
            This member serialization mode can also be set by marking the class with <see cref="!:DataContractAttribute"/>.
4835
            </summary>
4836
        </member>
4837
        <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
4838
            <summary>
4839
            All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
4840
            This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
4841
            and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to false.
4842
            </summary>
4843
        </member>
4844
        <member name="T:Newtonsoft.Json.ObjectCreationHandling">
4845
            <summary>
4846
            Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4847
            </summary>
4848
        </member>
4849
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
4850
            <summary>
4851
            Reuse existing objects, create new objects when needed.
4852
            </summary>
4853
        </member>
4854
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
4855
            <summary>
4856
            Only reuse existing objects.
4857
            </summary>
4858
        </member>
4859
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
4860
            <summary>
4861
            Always create new objects.
4862
            </summary>
4863
        </member>
4864
        <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
4865
            <summary>
4866
            Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).
4867
            </summary>
4868
        </member>
4869
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
4870
            <summary>
4871
            Writes the JSON representation of the object.
4872
            </summary>
4873
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
4874
            <param name="value">The value.</param>
4875
            <param name="serializer">The calling serializer.</param>
4876
        </member>
4877
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
4878
            <summary>
4879
            Reads the JSON representation of the object.
4880
            </summary>
4881
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
4882
            <param name="objectType">Type of the object.</param>
4883
            <param name="existingValue">The existing value of object being read.</param>
4884
            <param name="serializer">The calling serializer.</param>
4885
            <returns>The object value.</returns>
4886
        </member>
4887
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
4888
            <summary>
4889
            Gets or sets the date time styles used when converting a date to and from JSON.
4890
            </summary>
4891
            <value>The date time styles used when converting a date to and from JSON.</value>
4892
        </member>
4893
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
4894
            <summary>
4895
            Gets or sets the date time format used when converting a date to and from JSON.
4896
            </summary>
4897
            <value>The date time format used when converting a date to and from JSON.</value>
4898
        </member>
4899
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
4900
            <summary>
4901
            Gets or sets the culture used when converting a date to and from JSON.
4902
            </summary>
4903
            <value>The culture used when converting a date to and from JSON.</value>
4904
        </member>
4905
        <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
4906
            <summary>
4907
            Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).
4908
            </summary>
4909
        </member>
4910
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
4911
            <summary>
4912
            Writes the JSON representation of the object.
4913
            </summary>
4914
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
4915
            <param name="value">The value.</param>
4916
            <param name="serializer">The calling serializer.</param>
4917
        </member>
4918
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
4919
            <summary>
4920
            Reads the JSON representation of the object.
4921
            </summary>
4922
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
4923
            <param name="objectType">Type of the object.</param>
4924
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
4925
            <param name="serializer">The calling serializer.</param>
4926
            <returns>The object value.</returns>
4927
        </member>
4928
        <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
4929
            <summary>
4930
            Converts XML to and from JSON.
4931
            </summary>
4932
        </member>
4933
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
4934
            <summary>
4935
            Writes the JSON representation of the object.
4936
            </summary>
4937
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
4938
            <param name="serializer">The calling serializer.</param>
4939
            <param name="value">The value.</param>
4940
        </member>
4941
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
4942
            <summary>
4943
            Reads the JSON representation of the object.
4944
            </summary>
4945
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
4946
            <param name="objectType">Type of the object.</param>
4947
            <param name="existingValue">The existing value of object being read.</param>
4948
            <param name="serializer">The calling serializer.</param>
4949
            <returns>The object value.</returns>
4950
        </member>
4951
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
4952
            <summary>
4953
            Checks if the attributeName is a namespace attribute.
4954
            </summary>
4955
            <param name="attributeName">Attribute name to test.</param>
4956
            <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
4957
            <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>
4958
        </member>
4959
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
4960
            <summary>
4961
            Determines whether this instance can convert the specified value type.
4962
            </summary>
4963
            <param name="valueType">Type of the value.</param>
4964
            <returns>
4965
            	<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
4966
            </returns>
4967
        </member>
4968
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
4969
            <summary>
4970
            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.
4971
            </summary>
4972
            <value>The name of the deserialize root element.</value>
4973
        </member>
4974
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
4975
            <summary>
4976
            Gets or sets a flag to indicate whether to write the Json.NET array attribute.
4977
            This attribute helps preserve arrays when converting the written XML back to JSON.
4978
            </summary>
4979
            <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>
4980
        </member>
4981
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
4982
            <summary>
4983
            Gets or sets a value indicating whether to write the root JSON object.
4984
            </summary>
4985
            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
4986
        </member>
4987
        <member name="T:Newtonsoft.Json.JsonTextReader">
4988
            <summary>
4989
            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
4990
            </summary>
4991
        </member>
4992
        <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
4993
            <summary>
4994
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
4995
            </summary>
4996
            <param name="reader">The <c>TextReader</c> containing the XML data to read.</param>
4997
        </member>
4998
        <member name="M:Newtonsoft.Json.JsonTextReader.Read">
4999
            <summary>
5000
            Reads the next JSON token from the stream.
5001
            </summary>
5002
            <returns>
5003
            true if the next token was read successfully; false if there are no more tokens to read.
5004
            </returns>
5005
        </member>
5006
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
5007
            <summary>
5008
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
5009
            </summary>
5010
            <returns>
5011
            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.
5012
            </returns>
5013
        </member>
5014
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
5015
            <summary>
5016
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5017
            </summary>
5018
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
5019
        </member>
5020
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
5021
            <summary>
5022
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5023
            </summary>
5024
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
5025
        </member>
5026
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
5027
            <summary>
5028
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
5029
            </summary>
5030
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
5031
        </member>
5032
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
5033
            <summary>
5034
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5035
            </summary>
5036
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
5037
        </member>
5038
        <member name="M:Newtonsoft.Json.JsonTextReader.Close">
5039
            <summary>
5040
            Changes the state to closed. 
5041
            </summary>
5042
        </member>
5043
        <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
5044
            <summary>
5045
            Gets a value indicating whether the class can return line information.
5046
            </summary>
5047
            <returns>
5048
            	<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
5049
            </returns>
5050
        </member>
5051
        <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
5052
            <summary>
5053
            Gets the current line number.
5054
            </summary>
5055
            <value>
5056
            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
5057
            </value>
5058
        </member>
5059
        <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
5060
            <summary>
5061
            Gets the current line position.
5062
            </summary>
5063
            <value>
5064
            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
5065
            </value>
5066
        </member>
5067
        <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
5068
            <summary>
5069
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
5070
            </summary>
5071
        </member>
5072
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
5073
            <summary>
5074
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
5075
            </summary>
5076
        </member>
5077
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
5078
            <summary>
5079
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
5080
            </summary>
5081
            <param name="propertyName">Name of the property.</param>
5082
        </member>
5083
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
5084
            <summary>
5085
            Gets or sets the converter used when serializing the property's collection items.
5086
            </summary>
5087
            <value>The collection's items converter.</value>
5088
        </member>
5089
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterParameters">
5090
            <summary>
5091
            The parameter list to use when constructing the JsonConverter described by ItemConverterType.
5092
            If null, the default constructor is used.
5093
            When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
5094
            order, and type of these parameters.
5095
            </summary>
5096
            <example>
5097
            [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
5098
            </example>
5099
        </member>
5100
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
5101
            <summary>
5102
            Gets or sets the null value handling used when serializing this property.
5103
            </summary>
5104
            <value>The null value handling.</value>
5105
        </member>
5106
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
5107
            <summary>
5108
            Gets or sets the default value handling used when serializing this property.
5109
            </summary>
5110
            <value>The default value handling.</value>
5111
        </member>
5112
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
5113
            <summary>
5114
            Gets or sets the reference loop handling used when serializing this property.
5115
            </summary>
5116
            <value>The reference loop handling.</value>
5117
        </member>
5118
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
5119
            <summary>
5120
            Gets or sets the object creation handling used when deserializing this property.
5121
            </summary>
5122
            <value>The object creation handling.</value>
5123
        </member>
5124
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
5125
            <summary>
5126
            Gets or sets the type name handling used when serializing this property.
5127
            </summary>
5128
            <value>The type name handling.</value>
5129
        </member>
5130
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
5131
            <summary>
5132
            Gets or sets whether this property's value is serialized as a reference.
5133
            </summary>
5134
            <value>Whether this property's value is serialized as a reference.</value>
5135
        </member>
5136
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
5137
            <summary>
5138
            Gets or sets the order of serialization and deserialization of a member.
5139
            </summary>
5140
            <value>The numeric order of serialization or deserialization.</value>
5141
        </member>
5142
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
5143
            <summary>
5144
            Gets or sets a value indicating whether this property is required.
5145
            </summary>
5146
            <value>
5147
            	A value indicating whether this property is required.
5148
            </value>
5149
        </member>
5150
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
5151
            <summary>
5152
            Gets or sets the name of the property.
5153
            </summary>
5154
            <value>The name of the property.</value>
5155
        </member>
5156
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
5157
            <summary>
5158
            Gets or sets the the reference loop handling used when serializing the property's collection items.
5159
            </summary>
5160
            <value>The collection's items reference loop handling.</value>
5161
        </member>
5162
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
5163
            <summary>
5164
            Gets or sets the the type name handling used when serializing the property's collection items.
5165
            </summary>
5166
            <value>The collection's items type name handling.</value>
5167
        </member>
5168
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
5169
            <summary>
5170
            Gets or sets whether this property's collection items are serialized as a reference.
5171
            </summary>
5172
            <value>Whether this property's collection items are serialized as a reference.</value>
5173
        </member>
5174
        <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
5175
            <summary>
5176
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
5177
            </summary>
5178
        </member>
5179
        <member name="T:Newtonsoft.Json.JsonTextWriter">
5180
            <summary>
5181
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
5182
            </summary>
5183
        </member>
5184
        <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
5185
            <summary>
5186
            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>. 
5187
            </summary>
5188
            <param name="textWriter">The <c>TextWriter</c> to write to.</param>
5189
        </member>
5190
        <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
5191
            <summary>
5192
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
5193
            </summary>
5194
        </member>
5195
        <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
5196
            <summary>
5197
            Closes this stream and the underlying stream.
5198
            </summary>
5199
        </member>
5200
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
5201
            <summary>
5202
            Writes the beginning of a Json object.
5203
            </summary>
5204
        </member>
5205
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
5206
            <summary>
5207
            Writes the beginning of a Json array.
5208
            </summary>
5209
        </member>
5210
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
5211
            <summary>
5212
            Writes the start of a constructor with the given name.
5213
            </summary>
5214
            <param name="name">The name of the constructor.</param>
5215
        </member>
5216
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
5217
            <summary>
5218
            Writes the specified end token.
5219
            </summary>
5220
            <param name="token">The end token to write.</param>
5221
        </member>
5222
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
5223
            <summary>
5224
            Writes the property name of a name/value pair on a Json object.
5225
            </summary>
5226
            <param name="name">The name of the property.</param>
5227
        </member>
5228
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">
5229
            <summary>
5230
            Writes the property name of a name/value pair on a JSON object.
5231
            </summary>
5232
            <param name="name">The name of the property.</param>
5233
            <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
5234
        </member>
5235
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
5236
            <summary>
5237
            Writes indent characters.
5238
            </summary>
5239
        </member>
5240
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
5241
            <summary>
5242
            Writes the JSON value delimiter.
5243
            </summary>
5244
        </member>
5245
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
5246
            <summary>
5247
            Writes an indent space.
5248
            </summary>
5249
        </member>
5250
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">
5251
            <summary>
5252
            Writes a <see cref="T:System.Object"/> value.
5253
            An error will raised if the value cannot be written as a single JSON token.
5254
            </summary>
5255
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
5256
        </member>
5257
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
5258
            <summary>
5259
            Writes a null value.
5260
            </summary>
5261
        </member>
5262
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
5263
            <summary>
5264
            Writes an undefined value.
5265
            </summary>
5266
        </member>
5267
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
5268
            <summary>
5269
            Writes raw JSON.
5270
            </summary>
5271
            <param name="json">The raw JSON to write.</param>
5272
        </member>
5273
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
5274
            <summary>
5275
            Writes a <see cref="T:System.String"/> value.
5276
            </summary>
5277
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
5278
        </member>
5279
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
5280
            <summary>
5281
            Writes a <see cref="T:System.Int32"/> value.
5282
            </summary>
5283
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
5284
        </member>
5285
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
5286
            <summary>
5287
            Writes a <see cref="T:System.UInt32"/> value.
5288
            </summary>
5289
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
5290
        </member>
5291
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
5292
            <summary>
5293
            Writes a <see cref="T:System.Int64"/> value.
5294
            </summary>
5295
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
5296
        </member>
5297
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
5298
            <summary>
5299
            Writes a <see cref="T:System.UInt64"/> value.
5300
            </summary>
5301
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
5302
        </member>
5303
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
5304
            <summary>
5305
            Writes a <see cref="T:System.Single"/> value.
5306
            </summary>
5307
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
5308
        </member>
5309
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
5310
            <summary>
5311
            Writes a <see cref="T:System.Nullable`1"/> value.
5312
            </summary>
5313
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
5314
        </member>
5315
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
5316
            <summary>
5317
            Writes a <see cref="T:System.Double"/> value.
5318
            </summary>
5319
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
5320
        </member>
5321
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
5322
            <summary>
5323
            Writes a <see cref="T:System.Nullable`1"/> value.
5324
            </summary>
5325
            <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
5326
        </member>
5327
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
5328
            <summary>
5329
            Writes a <see cref="T:System.Boolean"/> value.
5330
            </summary>
5331
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
5332
        </member>
5333
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
5334
            <summary>
5335
            Writes a <see cref="T:System.Int16"/> value.
5336
            </summary>
5337
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
5338
        </member>
5339
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
5340
            <summary>
5341
            Writes a <see cref="T:System.UInt16"/> value.
5342
            </summary>
5343
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
5344
        </member>
5345
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
5346
            <summary>
5347
            Writes a <see cref="T:System.Char"/> value.
5348
            </summary>
5349
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
5350
        </member>
5351
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
5352
            <summary>
5353
            Writes a <see cref="T:System.Byte"/> value.
5354
            </summary>
5355
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
5356
        </member>
5357
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
5358
            <summary>
5359
            Writes a <see cref="T:System.SByte"/> value.
5360
            </summary>
5361
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
5362
        </member>
5363
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
5364
            <summary>
5365
            Writes a <see cref="T:System.Decimal"/> value.
5366
            </summary>
5367
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
5368
        </member>
5369
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
5370
            <summary>
5371
            Writes a <see cref="T:System.DateTime"/> value.
5372
            </summary>
5373
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
5374
        </member>
5375
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
5376
            <summary>
5377
            Writes a <see cref="T:System.Byte"/>[] value.
5378
            </summary>
5379
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
5380
        </member>
5381
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
5382
            <summary>
5383
            Writes a <see cref="T:System.Guid"/> value.
5384
            </summary>
5385
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
5386
        </member>
5387
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
5388
            <summary>
5389
            Writes a <see cref="T:System.TimeSpan"/> value.
5390
            </summary>
5391
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
5392
        </member>
5393
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
5394
            <summary>
5395
            Writes a <see cref="T:System.Uri"/> value.
5396
            </summary>
5397
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
5398
        </member>
5399
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
5400
            <summary>
5401
            Writes out a comment <code>/*...*/</code> containing the specified text. 
5402
            </summary>
5403
            <param name="text">Text to place inside the comment.</param>
5404
        </member>
5405
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
5406
            <summary>
5407
            Writes out the given white space.
5408
            </summary>
5409
            <param name="ws">The string of white space characters.</param>
5410
        </member>
5411
        <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
5412
            <summary>
5413
            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>.
5414
            </summary>
5415
        </member>
5416
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
5417
            <summary>
5418
            Gets or sets which character to use to quote attribute values.
5419
            </summary>
5420
        </member>
5421
        <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
5422
            <summary>
5423
            Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
5424
            </summary>
5425
        </member>
5426
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
5427
            <summary>
5428
            Gets or sets a value indicating whether object names will be surrounded with quotes.
5429
            </summary>
5430
        </member>
5431
        <member name="T:Newtonsoft.Json.JsonWriterException">
5432
            <summary>
5433
            The exception thrown when an error occurs while reading Json text.
5434
            </summary>
5435
        </member>
5436
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
5437
            <summary>
5438
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
5439
            </summary>
5440
        </member>
5441
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
5442
            <summary>
5443
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
5444
            with a specified error message.
5445
            </summary>
5446
            <param name="message">The error message that explains the reason for the exception.</param>
5447
        </member>
5448
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
5449
            <summary>
5450
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
5451
            with a specified error message and a reference to the inner exception that is the cause of this exception.
5452
            </summary>
5453
            <param name="message">The error message that explains the reason for the exception.</param>
5454
            <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>
5455
        </member>
5456
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5457
            <summary>
5458
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
5459
            </summary>
5460
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
5461
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
5462
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
5463
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
5464
        </member>
5465
        <member name="P:Newtonsoft.Json.JsonWriterException.Path">
5466
            <summary>
5467
            Gets the path to the JSON where the error occurred.
5468
            </summary>
5469
            <value>The path to the JSON where the error occurred.</value>
5470
        </member>
5471
        <member name="T:Newtonsoft.Json.JsonReaderException">
5472
            <summary>
5473
            The exception thrown when an error occurs while reading Json text.
5474
            </summary>
5475
        </member>
5476
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
5477
            <summary>
5478
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
5479
            </summary>
5480
        </member>
5481
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
5482
            <summary>
5483
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
5484
            with a specified error message.
5485
            </summary>
5486
            <param name="message">The error message that explains the reason for the exception.</param>
5487
        </member>
5488
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
5489
            <summary>
5490
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
5491
            with a specified error message and a reference to the inner exception that is the cause of this exception.
5492
            </summary>
5493
            <param name="message">The error message that explains the reason for the exception.</param>
5494
            <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>
5495
        </member>
5496
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5497
            <summary>
5498
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
5499
            </summary>
5500
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
5501
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
5502
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
5503
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
5504
        </member>
5505
        <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
5506
            <summary>
5507
            Gets the line number indicating where the error occurred.
5508
            </summary>
5509
            <value>The line number indicating where the error occurred.</value>
5510
        </member>
5511
        <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
5512
            <summary>
5513
            Gets the line position indicating where the error occurred.
5514
            </summary>
5515
            <value>The line position indicating where the error occurred.</value>
5516
        </member>
5517
        <member name="P:Newtonsoft.Json.JsonReaderException.Path">
5518
            <summary>
5519
            Gets the path to the JSON where the error occurred.
5520
            </summary>
5521
            <value>The path to the JSON where the error occurred.</value>
5522
        </member>
5523
        <member name="T:Newtonsoft.Json.JsonConverterCollection">
5524
            <summary>
5525
            Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5526
            </summary>
5527
        </member>
5528
        <member name="T:Newtonsoft.Json.JsonConvert">
5529
            <summary>
5530
            Provides methods for converting between common language runtime types and JSON types.
5531
            </summary>
5532
            <example>
5533
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
5534
            </example>
5535
        </member>
5536
        <member name="F:Newtonsoft.Json.JsonConvert.True">
5537
            <summary>
5538
            Represents JavaScript's boolean value true as a string. This field is read-only.
5539
            </summary>
5540
        </member>
5541
        <member name="F:Newtonsoft.Json.JsonConvert.False">
5542
            <summary>
5543
            Represents JavaScript's boolean value false as a string. This field is read-only.
5544
            </summary>
5545
        </member>
5546
        <member name="F:Newtonsoft.Json.JsonConvert.Null">
5547
            <summary>
5548
            Represents JavaScript's null as a string. This field is read-only.
5549
            </summary>
5550
        </member>
5551
        <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
5552
            <summary>
5553
            Represents JavaScript's undefined as a string. This field is read-only.
5554
            </summary>
5555
        </member>
5556
        <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
5557
            <summary>
5558
            Represents JavaScript's positive infinity as a string. This field is read-only.
5559
            </summary>
5560
        </member>
5561
        <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
5562
            <summary>
5563
            Represents JavaScript's negative infinity as a string. This field is read-only.
5564
            </summary>
5565
        </member>
5566
        <member name="F:Newtonsoft.Json.JsonConvert.NaN">
5567
            <summary>
5568
            Represents JavaScript's NaN as a string. This field is read-only.
5569
            </summary>
5570
        </member>
5571
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
5572
            <summary>
5573
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
5574
            </summary>
5575
            <param name="value">The value to convert.</param>
5576
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
5577
        </member>
5578
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
5579
            <summary>
5580
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
5581
            </summary>
5582
            <param name="value">The value to convert.</param>
5583
            <param name="format">The format the date will be converted to.</param>
5584
            <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
5585
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
5586
        </member>
5587
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
5588
            <summary>
5589
            Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
5590
            </summary>
5591
            <param name="value">The value to convert.</param>
5592
            <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
5593
        </member>
5594
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
5595
            <summary>
5596
            Converts the <see cref="T:System.Char"/> to its JSON string representation.
5597
            </summary>
5598
            <param name="value">The value to convert.</param>
5599
            <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
5600
        </member>
5601
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
5602
            <summary>
5603
            Converts the <see cref="T:System.Enum"/> to its JSON string representation.
5604
            </summary>
5605
            <param name="value">The value to convert.</param>
5606
            <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
5607
        </member>
5608
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
5609
            <summary>
5610
            Converts the <see cref="T:System.Int32"/> to its JSON string representation.
5611
            </summary>
5612
            <param name="value">The value to convert.</param>
5613
            <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
5614
        </member>
5615
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
5616
            <summary>
5617
            Converts the <see cref="T:System.Int16"/> to its JSON string representation.
5618
            </summary>
5619
            <param name="value">The value to convert.</param>
5620
            <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
5621
        </member>
5622
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
5623
            <summary>
5624
            Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
5625
            </summary>
5626
            <param name="value">The value to convert.</param>
5627
            <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
5628
        </member>
5629
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
5630
            <summary>
5631
            Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
5632
            </summary>
5633
            <param name="value">The value to convert.</param>
5634
            <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
5635
        </member>
5636
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
5637
            <summary>
5638
            Converts the <see cref="T:System.Int64"/>  to its JSON string representation.
5639
            </summary>
5640
            <param name="value">The value to convert.</param>
5641
            <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
5642
        </member>
5643
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
5644
            <summary>
5645
            Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
5646
            </summary>
5647
            <param name="value">The value to convert.</param>
5648
            <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
5649
        </member>
5650
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
5651
            <summary>
5652
            Converts the <see cref="T:System.Single"/> to its JSON string representation.
5653
            </summary>
5654
            <param name="value">The value to convert.</param>
5655
            <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
5656
        </member>
5657
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
5658
            <summary>
5659
            Converts the <see cref="T:System.Double"/> to its JSON string representation.
5660
            </summary>
5661
            <param name="value">The value to convert.</param>
5662
            <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
5663
        </member>
5664
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
5665
            <summary>
5666
            Converts the <see cref="T:System.Byte"/> to its JSON string representation.
5667
            </summary>
5668
            <param name="value">The value to convert.</param>
5669
            <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
5670
        </member>
5671
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
5672
            <summary>
5673
            Converts the <see cref="T:System.SByte"/> to its JSON string representation.
5674
            </summary>
5675
            <param name="value">The value to convert.</param>
5676
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
5677
        </member>
5678
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
5679
            <summary>
5680
            Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
5681
            </summary>
5682
            <param name="value">The value to convert.</param>
5683
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
5684
        </member>
5685
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
5686
            <summary>
5687
            Converts the <see cref="T:System.Guid"/> to its JSON string representation.
5688
            </summary>
5689
            <param name="value">The value to convert.</param>
5690
            <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
5691
        </member>
5692
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
5693
            <summary>
5694
            Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
5695
            </summary>
5696
            <param name="value">The value to convert.</param>
5697
            <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
5698
        </member>
5699
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
5700
            <summary>
5701
            Converts the <see cref="T:System.Uri"/> to its JSON string representation.
5702
            </summary>
5703
            <param name="value">The value to convert.</param>
5704
            <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
5705
        </member>
5706
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
5707
            <summary>
5708
            Converts the <see cref="T:System.String"/> to its JSON string representation.
5709
            </summary>
5710
            <param name="value">The value to convert.</param>
5711
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
5712
        </member>
5713
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
5714
            <summary>
5715
            Converts the <see cref="T:System.String"/> to its JSON string representation.
5716
            </summary>
5717
            <param name="value">The value to convert.</param>
5718
            <param name="delimiter">The string delimiter character.</param>
5719
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
5720
        </member>
5721
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)">
5722
            <summary>
5723
            Converts the <see cref="T:System.String"/> to its JSON string representation.
5724
            </summary>
5725
            <param name="value">The value to convert.</param>
5726
            <param name="delimiter">The string delimiter character.</param>
5727
            <param name="stringEscapeHandling">The string escape handling.</param>
5728
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
5729
        </member>
5730
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
5731
            <summary>
5732
            Converts the <see cref="T:System.Object"/> to its JSON string representation.
5733
            </summary>
5734
            <param name="value">The value to convert.</param>
5735
            <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
5736
        </member>
5737
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
5738
            <summary>
5739
            Serializes the specified object to a JSON string.
5740
            </summary>
5741
            <param name="value">The object to serialize.</param>
5742
            <returns>A JSON string representation of the object.</returns>
5743
        </member>
5744
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
5745
            <summary>
5746
            Serializes the specified object to a JSON string using formatting.
5747
            </summary>
5748
            <param name="value">The object to serialize.</param>
5749
            <param name="formatting">Indicates how the output is formatted.</param>
5750
            <returns>
5751
            A JSON string representation of the object.
5752
            </returns>
5753
        </member>
5754
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
5755
            <summary>
5756
            Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5757
            </summary>
5758
            <param name="value">The object to serialize.</param>
5759
            <param name="converters">A collection converters used while serializing.</param>
5760
            <returns>A JSON string representation of the object.</returns>
5761
        </member>
5762
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
5763
            <summary>
5764
            Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5765
            </summary>
5766
            <param name="value">The object to serialize.</param>
5767
            <param name="formatting">Indicates how the output is formatted.</param>
5768
            <param name="converters">A collection converters used while serializing.</param>
5769
            <returns>A JSON string representation of the object.</returns>
5770
        </member>
5771
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
5772
            <summary>
5773
            Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5774
            </summary>
5775
            <param name="value">The object to serialize.</param>
5776
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
5777
            If this is null, default serialization settings will be used.</param>
5778
            <returns>
5779
            A JSON string representation of the object.
5780
            </returns>
5781
        </member>
5782
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
5783
            <summary>
5784
            Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5785
            </summary>
5786
            <param name="value">The object to serialize.</param>
5787
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
5788
            If this is null, default serialization settings will be used.</param>
5789
            <param name="type">
5790
            The type of the value being serialized.
5791
            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.
5792
            Specifing the type is optional.
5793
            </param>
5794
            <returns>
5795
            A JSON string representation of the object.
5796
            </returns>
5797
        </member>
5798
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
5799
            <summary>
5800
            Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5801
            </summary>
5802
            <param name="value">The object to serialize.</param>
5803
            <param name="formatting">Indicates how the output is formatted.</param>
5804
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
5805
            If this is null, default serialization settings will be used.</param>
5806
            <returns>
5807
            A JSON string representation of the object.
5808
            </returns>
5809
        </member>
5810
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
5811
            <summary>
5812
            Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5813
            </summary>
5814
            <param name="value">The object to serialize.</param>
5815
            <param name="formatting">Indicates how the output is formatted.</param>
5816
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
5817
            If this is null, default serialization settings will be used.</param>
5818
            <param name="type">
5819
            The type of the value being serialized.
5820
            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.
5821
            Specifing the type is optional.
5822
            </param>
5823
            <returns>
5824
            A JSON string representation of the object.
5825
            </returns>
5826
        </member>
5827
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
5828
            <summary>
5829
            Deserializes the JSON to a .NET object.
5830
            </summary>
5831
            <param name="value">The JSON to deserialize.</param>
5832
            <returns>The deserialized object from the JSON string.</returns>
5833
        </member>
5834
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
5835
            <summary>
5836
            Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5837
            </summary>
5838
            <param name="value">The JSON to deserialize.</param>
5839
            <param name="settings">
5840
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5841
            If this is null, default serialization settings will be used.
5842
            </param>
5843
            <returns>The deserialized object from the JSON string.</returns>
5844
        </member>
5845
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
5846
            <summary>
5847
            Deserializes the JSON to the specified .NET type.
5848
            </summary>
5849
            <param name="value">The JSON to deserialize.</param>
5850
            <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
5851
            <returns>The deserialized object from the JSON string.</returns>
5852
        </member>
5853
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
5854
            <summary>
5855
            Deserializes the JSON to the specified .NET type.
5856
            </summary>
5857
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5858
            <param name="value">The JSON to deserialize.</param>
5859
            <returns>The deserialized object from the JSON string.</returns>
5860
        </member>
5861
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
5862
            <summary>
5863
            Deserializes the JSON to the given anonymous type.
5864
            </summary>
5865
            <typeparam name="T">
5866
            The anonymous type to deserialize to. This can't be specified
5867
            traditionally and must be infered from the anonymous type passed
5868
            as a parameter.
5869
            </typeparam>
5870
            <param name="value">The JSON to deserialize.</param>
5871
            <param name="anonymousTypeObject">The anonymous type object.</param>
5872
            <returns>The deserialized anonymous type from the JSON string.</returns>
5873
        </member>
5874
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
5875
            <summary>
5876
            Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5877
            </summary>
5878
            <typeparam name="T">
5879
            The anonymous type to deserialize to. This can't be specified
5880
            traditionally and must be infered from the anonymous type passed
5881
            as a parameter.
5882
            </typeparam>
5883
            <param name="value">The JSON to deserialize.</param>
5884
            <param name="anonymousTypeObject">The anonymous type object.</param>
5885
            <param name="settings">
5886
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5887
            If this is null, default serialization settings will be used.
5888
            </param>
5889
            <returns>The deserialized anonymous type from the JSON string.</returns>
5890
        </member>
5891
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
5892
            <summary>
5893
            Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5894
            </summary>
5895
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5896
            <param name="value">The JSON to deserialize.</param>
5897
            <param name="converters">Converters to use while deserializing.</param>
5898
            <returns>The deserialized object from the JSON string.</returns>
5899
        </member>
5900
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
5901
            <summary>
5902
            Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5903
            </summary>
5904
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
5905
            <param name="value">The object to deserialize.</param>
5906
            <param name="settings">
5907
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5908
            If this is null, default serialization settings will be used.
5909
            </param>
5910
            <returns>The deserialized object from the JSON string.</returns>
5911
        </member>
5912
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
5913
            <summary>
5914
            Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5915
            </summary>
5916
            <param name="value">The JSON to deserialize.</param>
5917
            <param name="type">The type of the object to deserialize.</param>
5918
            <param name="converters">Converters to use while deserializing.</param>
5919
            <returns>The deserialized object from the JSON string.</returns>
5920
        </member>
5921
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
5922
            <summary>
5923
            Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5924
            </summary>
5925
            <param name="value">The JSON to deserialize.</param>
5926
            <param name="type">The type of the object to deserialize to.</param>
5927
            <param name="settings">
5928
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5929
            If this is null, default serialization settings will be used.
5930
            </param>
5931
            <returns>The deserialized object from the JSON string.</returns>
5932
        </member>
5933
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
5934
            <summary>
5935
            Populates the object with values from the JSON string.
5936
            </summary>
5937
            <param name="value">The JSON to populate values from.</param>
5938
            <param name="target">The target object to populate values onto.</param>
5939
        </member>
5940
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
5941
            <summary>
5942
            Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5943
            </summary>
5944
            <param name="value">The JSON to populate values from.</param>
5945
            <param name="target">The target object to populate values onto.</param>
5946
            <param name="settings">
5947
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5948
            If this is null, default serialization settings will be used.
5949
            </param>
5950
        </member>
5951
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
5952
            <summary>
5953
            Serializes the XML node to a JSON string.
5954
            </summary>
5955
            <param name="node">The node to serialize.</param>
5956
            <returns>A JSON string of the XmlNode.</returns>
5957
        </member>
5958
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
5959
            <summary>
5960
            Serializes the XML node to a JSON string using formatting.
5961
            </summary>
5962
            <param name="node">The node to serialize.</param>
5963
            <param name="formatting">Indicates how the output is formatted.</param>
5964
            <returns>A JSON string of the XmlNode.</returns>
5965
        </member>
5966
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
5967
            <summary>
5968
            Serializes the XML node to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
5969
            </summary>
5970
            <param name="node">The node to serialize.</param>
5971
            <param name="formatting">Indicates how the output is formatted.</param>
5972
            <param name="omitRootObject">Omits writing the root object.</param>
5973
            <returns>A JSON string of the XmlNode.</returns>
5974
        </member>
5975
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
5976
            <summary>
5977
            Deserializes the XmlNode from a JSON string.
5978
            </summary>
5979
            <param name="value">The JSON string.</param>
5980
            <returns>The deserialized XmlNode</returns>
5981
        </member>
5982
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
5983
            <summary>
5984
            Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
5985
            </summary>
5986
            <param name="value">The JSON string.</param>
5987
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5988
            <returns>The deserialized XmlNode</returns>
5989
        </member>
5990
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
5991
            <summary>
5992
            Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
5993
            and writes a .NET array attribute for collections.
5994
            </summary>
5995
            <param name="value">The JSON string.</param>
5996
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
5997
            <param name="writeArrayAttribute">
5998
            A flag to indicate whether to write the Json.NET array attribute.
5999
            This attribute helps preserve arrays when converting the written XML back to JSON.
6000
            </param>
6001
            <returns>The deserialized XmlNode</returns>
6002
        </member>
6003
        <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
6004
            <summary>
6005
            Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
6006
            Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
6007
            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"/>.
6008
            To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
6009
            <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
6010
            </summary>
6011
        </member>
6012
        <member name="T:Newtonsoft.Json.JsonSerializationException">
6013
            <summary>
6014
            The exception thrown when an error occurs during Json serialization or deserialization.
6015
            </summary>
6016
        </member>
6017
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
6018
            <summary>
6019
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
6020
            </summary>
6021
        </member>
6022
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
6023
            <summary>
6024
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
6025
            with a specified error message.
6026
            </summary>
6027
            <param name="message">The error message that explains the reason for the exception.</param>
6028
        </member>
6029
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
6030
            <summary>
6031
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
6032
            with a specified error message and a reference to the inner exception that is the cause of this exception.
6033
            </summary>
6034
            <param name="message">The error message that explains the reason for the exception.</param>
6035
            <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>
6036
        </member>
6037
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
6038
            <summary>
6039
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
6040
            </summary>
6041
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
6042
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
6043
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
6044
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
6045
        </member>
6046
        <member name="T:Newtonsoft.Json.JsonSerializer">
6047
            <summary>
6048
            Serializes and deserializes objects into and from the JSON format.
6049
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
6050
            </summary>
6051
        </member>
6052
        <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
6053
            <summary>
6054
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
6055
            </summary>
6056
        </member>
6057
        <member name="M:Newtonsoft.Json.JsonSerializer.Create">
6058
            <summary>
6059
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
6060
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
6061
            </summary>
6062
            <returns>
6063
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
6064
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
6065
            </returns>
6066
        </member>
6067
        <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
6068
            <summary>
6069
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
6070
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
6071
            </summary>
6072
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
6073
            <returns>
6074
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
6075
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
6076
            </returns>
6077
        </member>
6078
        <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
6079
            <summary>
6080
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
6081
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
6082
            </summary>
6083
            <returns>
6084
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
6085
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
6086
            </returns>
6087
        </member>
6088
        <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
6089
            <summary>
6090
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
6091
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
6092
            </summary>
6093
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
6094
            <returns>
6095
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
6096
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
6097
            </returns>
6098
        </member>
6099
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
6100
            <summary>
6101
            Populates the JSON values onto the target object.
6102
            </summary>
6103
            <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
6104
            <param name="target">The target object to populate values onto.</param>
6105
        </member>
6106
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
6107
            <summary>
6108
            Populates the JSON values onto the target object.
6109
            </summary>
6110
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
6111
            <param name="target">The target object to populate values onto.</param>
6112
        </member>
6113
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
6114
            <summary>
6115
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
6116
            </summary>
6117
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
6118
            <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
6119
        </member>
6120
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
6121
            <summary>
6122
            Deserializes the Json structure contained by the specified <see cref="T:System.IO.StringReader"/>
6123
            into an instance of the specified type.
6124
            </summary>
6125
            <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
6126
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
6127
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
6128
        </member>
6129
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
6130
            <summary>
6131
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
6132
            into an instance of the specified type.
6133
            </summary>
6134
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
6135
            <typeparam name="T">The type of the object to deserialize.</typeparam>
6136
            <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
6137
        </member>
6138
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
6139
            <summary>
6140
            Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
6141
            into an instance of the specified type.
6142
            </summary>
6143
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
6144
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
6145
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
6146
        </member>
6147
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
6148
            <summary>
6149
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
6150
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
6151
            </summary>
6152
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
6153
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
6154
        </member>
6155
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
6156
            <summary>
6157
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
6158
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
6159
            </summary>
6160
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
6161
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
6162
            <param name="objectType">
6163
            The type of the value being serialized.
6164
            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.
6165
            Specifing the type is optional.
6166
            </param>
6167
        </member>
6168
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
6169
            <summary>
6170
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
6171
            to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
6172
            </summary>
6173
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
6174
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
6175
            <param name="objectType">
6176
            The type of the value being serialized.
6177
            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.
6178
            Specifing the type is optional.
6179
            </param>
6180
        </member>
6181
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
6182
            <summary>
6183
            Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
6184
            to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>. 
6185
            </summary>
6186
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
6187
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
6188
        </member>
6189
        <member name="E:Newtonsoft.Json.JsonSerializer.Error">
6190
            <summary>
6191
            Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
6192
            </summary>
6193
        </member>
6194
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
6195
            <summary>
6196
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
6197
            </summary>
6198
        </member>
6199
        <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
6200
            <summary>
6201
            Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
6202
            </summary>
6203
        </member>
6204
        <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
6205
            <summary>
6206
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
6207
            </summary>
6208
            <value>The trace writer.</value>
6209
        </member>
6210
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
6211
            <summary>
6212
            Gets or sets how type name writing and reading is handled by the serializer.
6213
            </summary>
6214
        </member>
6215
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
6216
            <summary>
6217
            Gets or sets how a type name assembly is written and resolved by the serializer.
6218
            </summary>
6219
            <value>The type name assembly format.</value>
6220
        </member>
6221
        <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
6222
            <summary>
6223
            Gets or sets how object references are preserved by the serializer.
6224
            </summary>
6225
        </member>
6226
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
6227
            <summary>
6228
            Get or set how reference loops (e.g. a class referencing itself) is handled.
6229
            </summary>
6230
        </member>
6231
        <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
6232
            <summary>
6233
            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
6234
            </summary>
6235
        </member>
6236
        <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
6237
            <summary>
6238
            Get or set how null values are handled during serialization and deserialization.
6239
            </summary>
6240
        </member>
6241
        <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
6242
            <summary>
6243
            Get or set how null default are handled during serialization and deserialization.
6244
            </summary>
6245
        </member>
6246
        <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
6247
            <summary>
6248
            Gets or sets how objects are created during deserialization.
6249
            </summary>
6250
            <value>The object creation handling.</value>
6251
        </member>
6252
        <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
6253
            <summary>
6254
            Gets or sets how constructors are used during deserialization.
6255
            </summary>
6256
            <value>The constructor handling.</value>
6257
        </member>
6258
        <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">
6259
            <summary>
6260
            Gets or sets how metadata properties are used during deserialization.
6261
            </summary>
6262
            <value>The metadata properties handling.</value>
6263
        </member>
6264
        <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
6265
            <summary>
6266
            Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
6267
            </summary>
6268
            <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
6269
        </member>
6270
        <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
6271
            <summary>
6272
            Gets or sets the contract resolver used by the serializer when
6273
            serializing .NET objects to JSON and vice versa.
6274
            </summary>
6275
        </member>
6276
        <member name="P:Newtonsoft.Json.JsonSerializer.Context">
6277
            <summary>
6278
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
6279
            </summary>
6280
            <value>The context.</value>
6281
        </member>
6282
        <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
6283
            <summary>
6284
            Indicates how JSON text output is formatted.
6285
            </summary>
6286
        </member>
6287
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
6288
            <summary>
6289
            Get or set how dates are written to JSON text.
6290
            </summary>
6291
        </member>
6292
        <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
6293
            <summary>
6294
            Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
6295
            </summary>
6296
        </member>
6297
        <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
6298
            <summary>
6299
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
6300
            </summary>
6301
        </member>
6302
        <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
6303
            <summary>
6304
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
6305
            </summary>
6306
        </member>
6307
        <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
6308
            <summary>
6309
            Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
6310
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
6311
            are written as JSON text.
6312
            </summary>
6313
        </member>
6314
        <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
6315
            <summary>
6316
            Get or set how strings are escaped when writing JSON text.
6317
            </summary>
6318
        </member>
6319
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
6320
            <summary>
6321
            Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
6322
            </summary>
6323
        </member>
6324
        <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
6325
            <summary>
6326
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
6327
            </summary>
6328
        </member>
6329
        <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
6330
            <summary>
6331
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
6332
            </summary>
6333
        </member>
6334
        <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
6335
            <summary>
6336
            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
6337
            </summary>
6338
            <value>
6339
            	<c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
6340
            </value>
6341
        </member>
6342
        <member name="T:Newtonsoft.Json.Linq.Extensions">
6343
            <summary>
6344
            Contains the LINQ to JSON extension methods.
6345
            </summary>
6346
        </member>
6347
        <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
6348
            <summary>
6349
            Returns a collection of tokens that contains the ancestors of every token in the source collection.
6350
            </summary>
6351
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
6352
            <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>
6353
            <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>
6354
        </member>
6355
        <member name="M:Newtonsoft.Json.Linq.Extensions.AncestorsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
6356
            <summary>
6357
            Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection.
6358
            </summary>
6359
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
6360
            <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>
6361
            <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>
6362
        </member>
6363
        <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
6364
            <summary>
6365
            Returns a collection of tokens that contains the descendants of every token in the source collection.
6366
            </summary>
6367
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
6368
            <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>
6369
            <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>
6370
        </member>
6371
        <member name="M:Newtonsoft.Json.Linq.Extensions.DescendantsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
6372
            <summary>
6373
            Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection.
6374
            </summary>
6375
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
6376
            <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>
6377
            <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>
6378
        </member>
6379
        <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
6380
            <summary>
6381
            Returns a collection of child properties of every object in the source collection.
6382
            </summary>
6383
            <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>
6384
            <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>
6385
        </member>
6386
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
6387
            <summary>
6388
            Returns a collection of child values of every object in the source collection with the given key.
6389
            </summary>
6390
            <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>
6391
            <param name="key">The token key.</param>
6392
            <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>
6393
        </member>
6394
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
6395
            <summary>
6396
            Returns a collection of child values of every object in the source collection.
6397
            </summary>
6398
            <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>
6399
            <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>
6400
        </member>
6401
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
6402
            <summary>
6403
            Returns a collection of converted child values of every object in the source collection with the given key.
6404
            </summary>
6405
            <typeparam name="U">The type to convert the values to.</typeparam>
6406
            <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>
6407
            <param name="key">The token key.</param>
6408
            <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>
6409
        </member>
6410
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
6411
            <summary>
6412
            Returns a collection of converted child values of every object in the source collection.
6413
            </summary>
6414
            <typeparam name="U">The type to convert the values to.</typeparam>
6415
            <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>
6416
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
6417
        </member>
6418
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
6419
            <summary>
6420
            Converts the value.
6421
            </summary>
6422
            <typeparam name="U">The type to convert the value to.</typeparam>
6423
            <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>
6424
            <returns>A converted value.</returns>
6425
        </member>
6426
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
6427
            <summary>
6428
            Converts the value.
6429
            </summary>
6430
            <typeparam name="T">The source collection type.</typeparam>
6431
            <typeparam name="U">The type to convert the value to.</typeparam>
6432
            <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>
6433
            <returns>A converted value.</returns>
6434
        </member>
6435
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
6436
            <summary>
6437
            Returns a collection of child tokens of every array in the source collection.
6438
            </summary>
6439
            <typeparam name="T">The source collection type.</typeparam>
6440
            <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>
6441
            <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>
6442
        </member>
6443
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
6444
            <summary>
6445
            Returns a collection of converted child tokens of every array in the source collection.
6446
            </summary>
6447
            <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>
6448
            <typeparam name="U">The type to convert the values to.</typeparam>
6449
            <typeparam name="T">The source collection type.</typeparam>
6450
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
6451
        </member>
6452
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
6453
            <summary>
6454
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
6455
            </summary>
6456
            <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>
6457
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
6458
        </member>
6459
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
6460
            <summary>
6461
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
6462
            </summary>
6463
            <typeparam name="T">The source collection type.</typeparam>
6464
            <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>
6465
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
6466
        </member>
6467
        <member name="T:Newtonsoft.Json.Linq.JConstructor">
6468
            <summary>
6469
            Represents a JSON constructor.
6470
            </summary>
6471
        </member>
6472
        <member name="T:Newtonsoft.Json.Linq.JContainer">
6473
            <summary>
6474
            Represents a token that can contain other tokens.
6475
            </summary>
6476
        </member>
6477
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
6478
            <summary>
6479
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
6480
            </summary>
6481
            <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
6482
        </member>
6483
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
6484
            <summary>
6485
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
6486
            </summary>
6487
            <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
6488
        </member>
6489
        <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
6490
            <summary>
6491
            Returns a collection of the child tokens of this token, in document order.
6492
            </summary>
6493
            <returns>
6494
            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.
6495
            </returns>
6496
        </member>
6497
        <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
6498
            <summary>
6499
            Returns a collection of the child values of this token, in document order.
6500
            </summary>
6501
            <typeparam name="T">The type to convert the values to.</typeparam>
6502
            <returns>
6503
            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.
6504
            </returns>
6505
        </member>
6506
        <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
6507
            <summary>
6508
            Returns a collection of the descendant tokens for this token in document order.
6509
            </summary>
6510
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
6511
        </member>
6512
        <member name="M:Newtonsoft.Json.Linq.JContainer.DescendantsAndSelf">
6513
            <summary>
6514
            Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
6515
            </summary>
6516
            <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>
6517
        </member>
6518
        <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
6519
            <summary>
6520
            Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6521
            </summary>
6522
            <param name="content">The content to be added.</param>
6523
        </member>
6524
        <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
6525
            <summary>
6526
            Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6527
            </summary>
6528
            <param name="content">The content to be added.</param>
6529
        </member>
6530
        <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
6531
            <summary>
6532
            Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6533
            </summary>
6534
            <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
6535
        </member>
6536
        <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
6537
            <summary>
6538
            Replaces the children nodes of this token with the specified content.
6539
            </summary>
6540
            <param name="content">The content.</param>
6541
        </member>
6542
        <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
6543
            <summary>
6544
            Removes the child nodes from this token.
6545
            </summary>
6546
        </member>
6547
        <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">
6548
            <summary>
6549
            Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6550
            </summary>
6551
            <param name="content">The content to be merged.</param>
6552
        </member>
6553
        <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">
6554
            <summary>
6555
            Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.
6556
            </summary>
6557
            <param name="content">The content to be merged.</param>
6558
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>
6559
        </member>
6560
        <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
6561
            <summary>
6562
            Occurs when the list changes or an item in the list changes.
6563
            </summary>
6564
        </member>
6565
        <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
6566
            <summary>
6567
            Occurs before an item is added to the collection.
6568
            </summary>
6569
        </member>
6570
        <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
6571
            <summary>
6572
            Gets the container's children tokens.
6573
            </summary>
6574
            <value>The container's children tokens.</value>
6575
        </member>
6576
        <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
6577
            <summary>
6578
            Gets a value indicating whether this token has child tokens.
6579
            </summary>
6580
            <value>
6581
            	<c>true</c> if this token has child values; otherwise, <c>false</c>.
6582
            </value>
6583
        </member>
6584
        <member name="P:Newtonsoft.Json.Linq.JContainer.First">
6585
            <summary>
6586
            Get the first child token of this token.
6587
            </summary>
6588
            <value>
6589
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6590
            </value>
6591
        </member>
6592
        <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
6593
            <summary>
6594
            Get the last child token of this token.
6595
            </summary>
6596
            <value>
6597
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6598
            </value>
6599
        </member>
6600
        <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
6601
            <summary>
6602
            Gets the count of child JSON tokens.
6603
            </summary>
6604
            <value>The count of child JSON tokens</value>
6605
        </member>
6606
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
6607
            <summary>
6608
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
6609
            </summary>
6610
        </member>
6611
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
6612
            <summary>
6613
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
6614
            </summary>
6615
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
6616
        </member>
6617
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
6618
            <summary>
6619
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
6620
            </summary>
6621
            <param name="name">The constructor name.</param>
6622
            <param name="content">The contents of the constructor.</param>
6623
        </member>
6624
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
6625
            <summary>
6626
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
6627
            </summary>
6628
            <param name="name">The constructor name.</param>
6629
            <param name="content">The contents of the constructor.</param>
6630
        </member>
6631
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
6632
            <summary>
6633
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
6634
            </summary>
6635
            <param name="name">The constructor name.</param>
6636
        </member>
6637
        <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6638
            <summary>
6639
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6640
            </summary>
6641
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6642
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6643
        </member>
6644
        <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
6645
            <summary>
6646
            Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6647
            </summary>
6648
            <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>
6649
            <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>
6650
        </member>
6651
        <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
6652
            <summary>
6653
            Gets the container's children tokens.
6654
            </summary>
6655
            <value>The container's children tokens.</value>
6656
        </member>
6657
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
6658
            <summary>
6659
            Gets or sets the name of this constructor.
6660
            </summary>
6661
            <value>The constructor name.</value>
6662
        </member>
6663
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
6664
            <summary>
6665
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6666
            </summary>
6667
            <value>The type.</value>
6668
        </member>
6669
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
6670
            <summary>
6671
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6672
            </summary>
6673
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6674
        </member>
6675
        <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
6676
            <summary>
6677
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
6678
            </summary>
6679
            <typeparam name="T">The type of token</typeparam>
6680
        </member>
6681
        <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
6682
            <summary>
6683
            An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
6684
            </summary>
6685
        </member>
6686
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
6687
            <summary>
6688
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
6689
            </summary>
6690
            <param name="enumerable">The enumerable.</param>
6691
        </member>
6692
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
6693
            <summary>
6694
            Returns an enumerator that iterates through the collection.
6695
            </summary>
6696
            <returns>
6697
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
6698
            </returns>
6699
        </member>
6700
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator">
6701
            <summary>
6702
            Returns an enumerator that iterates through a collection.
6703
            </summary>
6704
            <returns>
6705
            An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
6706
            </returns>
6707
        </member>
6708
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(Newtonsoft.Json.Linq.JEnumerable{`0})">
6709
            <summary>
6710
            Determines whether the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance.
6711
            </summary>
6712
            <param name="other">The <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> to compare with this instance.</param>
6713
            <returns>
6714
            	<c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance; otherwise, <c>false</c>.
6715
            </returns>
6716
        </member>
6717
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
6718
            <summary>
6719
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
6720
            </summary>
6721
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
6722
            <returns>
6723
            	<c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
6724
            </returns>
6725
        </member>
6726
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
6727
            <summary>
6728
            Returns a hash code for this instance.
6729
            </summary>
6730
            <returns>
6731
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
6732
            </returns>
6733
        </member>
6734
        <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
6735
            <summary>
6736
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
6737
            </summary>
6738
            <value></value>
6739
        </member>
6740
        <member name="T:Newtonsoft.Json.Linq.JObject">
6741
            <summary>
6742
            Represents a JSON object.
6743
            </summary>
6744
            <example>
6745
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
6746
            </example>
6747
        </member>
6748
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
6749
            <summary>
6750
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
6751
            </summary>
6752
        </member>
6753
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
6754
            <summary>
6755
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
6756
            </summary>
6757
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
6758
        </member>
6759
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
6760
            <summary>
6761
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
6762
            </summary>
6763
            <param name="content">The contents of the object.</param>
6764
        </member>
6765
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
6766
            <summary>
6767
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
6768
            </summary>
6769
            <param name="content">The contents of the object.</param>
6770
        </member>
6771
        <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
6772
            <summary>
6773
            Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.
6774
            </summary>
6775
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns>
6776
        </member>
6777
        <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
6778
            <summary>
6779
            Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
6780
            </summary>
6781
            <param name="name">The property name.</param>
6782
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns>
6783
        </member>
6784
        <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
6785
            <summary>
6786
            Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.
6787
            </summary>
6788
            <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns>
6789
        </member>
6790
        <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
6791
            <summary>
6792
            Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
6793
            </summary>
6794
            <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>
6795
            <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>
6796
        </member>
6797
        <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
6798
            <summary>
6799
            Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
6800
            </summary>
6801
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6802
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
6803
            <example>
6804
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text"/>
6805
            </example>
6806
        </member>
6807
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
6808
            <summary>
6809
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
6810
            </summary>
6811
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6812
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
6813
        </member>
6814
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
6815
            <summary>
6816
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
6817
            </summary>
6818
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6819
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
6820
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
6821
        </member>
6822
        <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6823
            <summary>
6824
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6825
            </summary>
6826
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6827
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6828
        </member>
6829
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
6830
            <summary>
6831
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6832
            </summary>
6833
            <param name="propertyName">Name of the property.</param>
6834
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
6835
        </member>
6836
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
6837
            <summary>
6838
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6839
            The exact property name will be searched for first and if no matching property is found then
6840
            the <see cref="T:System.StringComparison"/> will be used to match a property.
6841
            </summary>
6842
            <param name="propertyName">Name of the property.</param>
6843
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
6844
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
6845
        </member>
6846
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
6847
            <summary>
6848
            Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6849
            The exact property name will be searched for first and if no matching property is found then
6850
            the <see cref="T:System.StringComparison"/> will be used to match a property.
6851
            </summary>
6852
            <param name="propertyName">Name of the property.</param>
6853
            <param name="value">The value.</param>
6854
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
6855
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
6856
        </member>
6857
        <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
6858
            <summary>
6859
            Adds the specified property name.
6860
            </summary>
6861
            <param name="propertyName">Name of the property.</param>
6862
            <param name="value">The value.</param>
6863
        </member>
6864
        <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
6865
            <summary>
6866
            Removes the property with the specified name.
6867
            </summary>
6868
            <param name="propertyName">Name of the property.</param>
6869
            <returns>true if item was successfully removed; otherwise, false.</returns>
6870
        </member>
6871
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
6872
            <summary>
6873
            Tries the get value.
6874
            </summary>
6875
            <param name="propertyName">Name of the property.</param>
6876
            <param name="value">The value.</param>
6877
            <returns>true if a value was successfully retrieved; otherwise, false.</returns>
6878
        </member>
6879
        <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
6880
            <summary>
6881
            Returns an enumerator that iterates through the collection.
6882
            </summary>
6883
            <returns>
6884
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
6885
            </returns>
6886
        </member>
6887
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
6888
            <summary>
6889
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
6890
            </summary>
6891
            <param name="propertyName">Name of the property.</param>
6892
        </member>
6893
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
6894
            <summary>
6895
            Returns the properties for this instance of a component.
6896
            </summary>
6897
            <returns>
6898
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance.
6899
            </returns>
6900
        </member>
6901
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
6902
            <summary>
6903
            Returns the properties for this instance of a component using the attribute array as a filter.
6904
            </summary>
6905
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
6906
            <returns>
6907
            A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.
6908
            </returns>
6909
        </member>
6910
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
6911
            <summary>
6912
            Returns a collection of custom attributes for this instance of a component.
6913
            </summary>
6914
            <returns>
6915
            An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object.
6916
            </returns>
6917
        </member>
6918
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
6919
            <summary>
6920
            Returns the class name of this instance of a component.
6921
            </summary>
6922
            <returns>
6923
            The class name of the object, or null if the class does not have a name.
6924
            </returns>
6925
        </member>
6926
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
6927
            <summary>
6928
            Returns the name of this instance of a component.
6929
            </summary>
6930
            <returns>
6931
            The name of the object, or null if the object does not have a name.
6932
            </returns>
6933
        </member>
6934
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
6935
            <summary>
6936
            Returns a type converter for this instance of a component.
6937
            </summary>
6938
            <returns>
6939
            A <see cref="T:System.ComponentModel.TypeConverter"/> that is the converter for this object, or null if there is no <see cref="T:System.ComponentModel.TypeConverter"/> for this object.
6940
            </returns>
6941
        </member>
6942
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
6943
            <summary>
6944
            Returns the default event for this instance of a component.
6945
            </summary>
6946
            <returns>
6947
            An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events.
6948
            </returns>
6949
        </member>
6950
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
6951
            <summary>
6952
            Returns the default property for this instance of a component.
6953
            </summary>
6954
            <returns>
6955
            A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties.
6956
            </returns>
6957
        </member>
6958
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
6959
            <summary>
6960
            Returns an editor of the specified type for this instance of a component.
6961
            </summary>
6962
            <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param>
6963
            <returns>
6964
            An <see cref="T:System.Object"/> of the specified type that is the editor for this object, or null if the editor cannot be found.
6965
            </returns>
6966
        </member>
6967
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
6968
            <summary>
6969
            Returns the events for this instance of a component using the specified attribute array as a filter.
6970
            </summary>
6971
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
6972
            <returns>
6973
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance.
6974
            </returns>
6975
        </member>
6976
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
6977
            <summary>
6978
            Returns the events for this instance of a component.
6979
            </summary>
6980
            <returns>
6981
            An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance.
6982
            </returns>
6983
        </member>
6984
        <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
6985
            <summary>
6986
            Returns an object that contains the property described by the specified property descriptor.
6987
            </summary>
6988
            <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param>
6989
            <returns>
6990
            An <see cref="T:System.Object"/> that represents the owner of the specified property.
6991
            </returns>
6992
        </member>
6993
        <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
6994
            <summary>
6995
            Gets the container's children tokens.
6996
            </summary>
6997
            <value>The container's children tokens.</value>
6998
        </member>
6999
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
7000
            <summary>
7001
            Occurs when a property value changes.
7002
            </summary>
7003
        </member>
7004
        <member name="P:Newtonsoft.Json.Linq.JObject.Type">
7005
            <summary>
7006
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7007
            </summary>
7008
            <value>The type.</value>
7009
        </member>
7010
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
7011
            <summary>
7012
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
7013
            </summary>
7014
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
7015
        </member>
7016
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
7017
            <summary>
7018
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
7019
            </summary>
7020
            <value></value>
7021
        </member>
7022
        <member name="T:Newtonsoft.Json.Linq.JArray">
7023
            <summary>
7024
            Represents a JSON array.
7025
            </summary>
7026
            <example>
7027
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
7028
            </example>
7029
        </member>
7030
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
7031
            <summary>
7032
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
7033
            </summary>
7034
        </member>
7035
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
7036
            <summary>
7037
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
7038
            </summary>
7039
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
7040
        </member>
7041
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
7042
            <summary>
7043
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
7044
            </summary>
7045
            <param name="content">The contents of the array.</param>
7046
        </member>
7047
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
7048
            <summary>
7049
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
7050
            </summary>
7051
            <param name="content">The contents of the array.</param>
7052
        </member>
7053
        <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
7054
            <summary>
7055
            Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
7056
            </summary>
7057
            <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>
7058
            <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>
7059
        </member>
7060
        <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
7061
            <summary>
7062
            Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
7063
            </summary>
7064
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
7065
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
7066
            <example>
7067
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text"/>
7068
            </example>
7069
        </member>
7070
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
7071
            <summary>
7072
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
7073
            </summary>
7074
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
7075
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
7076
        </member>
7077
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
7078
            <summary>
7079
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
7080
            </summary>
7081
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
7082
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
7083
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
7084
        </member>
7085
        <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
7086
            <summary>
7087
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
7088
            </summary>
7089
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7090
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
7091
        </member>
7092
        <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
7093
            <summary>
7094
            Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
7095
            </summary>
7096
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
7097
            <returns>
7098
            The index of <paramref name="item"/> if found in the list; otherwise, -1.
7099
            </returns>
7100
        </member>
7101
        <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
7102
            <summary>
7103
            Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.
7104
            </summary>
7105
            <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
7106
            <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
7107
            <exception cref="T:System.ArgumentOutOfRangeException">
7108
            	<paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
7109
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
7110
        </member>
7111
        <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
7112
            <summary>
7113
            Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
7114
            </summary>
7115
            <param name="index">The zero-based index of the item to remove.</param>
7116
            <exception cref="T:System.ArgumentOutOfRangeException">
7117
            	<paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
7118
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
7119
        </member>
7120
        <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">
7121
            <summary>
7122
            Returns an enumerator that iterates through the collection.
7123
            </summary>
7124
            <returns>
7125
            A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.
7126
            </returns>
7127
        </member>
7128
        <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
7129
            <summary>
7130
            Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
7131
            </summary>
7132
            <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
7133
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
7134
        </member>
7135
        <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
7136
            <summary>
7137
            Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
7138
            </summary>
7139
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
7140
        </member>
7141
        <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
7142
            <summary>
7143
            Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
7144
            </summary>
7145
            <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
7146
            <returns>
7147
            true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
7148
            </returns>
7149
        </member>
7150
        <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
7151
            <summary>
7152
            Copies to.
7153
            </summary>
7154
            <param name="array">The array.</param>
7155
            <param name="arrayIndex">Index of the array.</param>
7156
        </member>
7157
        <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
7158
            <summary>
7159
            Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
7160
            </summary>
7161
            <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
7162
            <returns>
7163
            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"/>.
7164
            </returns>
7165
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
7166
        </member>
7167
        <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
7168
            <summary>
7169
            Gets the container's children tokens.
7170
            </summary>
7171
            <value>The container's children tokens.</value>
7172
        </member>
7173
        <member name="P:Newtonsoft.Json.Linq.JArray.Type">
7174
            <summary>
7175
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7176
            </summary>
7177
            <value>The type.</value>
7178
        </member>
7179
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
7180
            <summary>
7181
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
7182
            </summary>
7183
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
7184
        </member>
7185
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
7186
            <summary>
7187
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
7188
            </summary>
7189
            <value></value>
7190
        </member>
7191
        <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
7192
            <summary>
7193
            Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.
7194
            </summary>
7195
            <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</returns>
7196
        </member>
7197
        <member name="T:Newtonsoft.Json.Linq.JTokenReader">
7198
            <summary>
7199
            Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
7200
            </summary>
7201
        </member>
7202
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
7203
            <summary>
7204
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
7205
            </summary>
7206
            <param name="token">The token to read from.</param>
7207
        </member>
7208
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">
7209
            <summary>
7210
            Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
7211
            </summary>
7212
            <returns>
7213
            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.
7214
            </returns>
7215
        </member>
7216
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">
7217
            <summary>
7218
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
7219
            </summary>
7220
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
7221
        </member>
7222
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
7223
            <summary>
7224
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
7225
            </summary>
7226
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
7227
        </member>
7228
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString">
7229
            <summary>
7230
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
7231
            </summary>
7232
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
7233
        </member>
7234
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime">
7235
            <summary>
7236
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
7237
            </summary>
7238
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
7239
        </member>
7240
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
7241
            <summary>
7242
            Reads the next JSON token from the stream.
7243
            </summary>
7244
            <returns>
7245
            true if the next token was read successfully; false if there are no more tokens to read.
7246
            </returns>
7247
        </member>
7248
        <member name="P:Newtonsoft.Json.Linq.JTokenReader.CurrentToken">
7249
            <summary>
7250
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the reader's current position.
7251
            </summary>
7252
        </member>
7253
        <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">
7254
            <summary>
7255
            Gets the path of the current JSON token. 
7256
            </summary>
7257
        </member>
7258
        <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
7259
            <summary>
7260
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
7261
            </summary>
7262
        </member>
7263
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
7264
            <summary>
7265
            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"/>.
7266
            </summary>
7267
            <param name="container">The container being written to.</param>
7268
        </member>
7269
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
7270
            <summary>
7271
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
7272
            </summary>
7273
        </member>
7274
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
7275
            <summary>
7276
            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
7277
            </summary>
7278
        </member>
7279
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
7280
            <summary>
7281
            Closes this stream and the underlying stream.
7282
            </summary>
7283
        </member>
7284
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
7285
            <summary>
7286
            Writes the beginning of a Json object.
7287
            </summary>
7288
        </member>
7289
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
7290
            <summary>
7291
            Writes the beginning of a Json array.
7292
            </summary>
7293
        </member>
7294
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
7295
            <summary>
7296
            Writes the start of a constructor with the given name.
7297
            </summary>
7298
            <param name="name">The name of the constructor.</param>
7299
        </member>
7300
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
7301
            <summary>
7302
            Writes the end.
7303
            </summary>
7304
            <param name="token">The token.</param>
7305
        </member>
7306
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
7307
            <summary>
7308
            Writes the property name of a name/value pair on a Json object.
7309
            </summary>
7310
            <param name="name">The name of the property.</param>
7311
        </member>
7312
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
7313
            <summary>
7314
            Writes a <see cref="T:System.Object"/> value.
7315
            An error will raised if the value cannot be written as a single JSON token.
7316
            </summary>
7317
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
7318
        </member>
7319
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
7320
            <summary>
7321
            Writes a null value.
7322
            </summary>
7323
        </member>
7324
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
7325
            <summary>
7326
            Writes an undefined value.
7327
            </summary>
7328
        </member>
7329
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
7330
            <summary>
7331
            Writes raw JSON.
7332
            </summary>
7333
            <param name="json">The raw JSON to write.</param>
7334
        </member>
7335
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
7336
            <summary>
7337
            Writes out a comment <code>/*...*/</code> containing the specified text.
7338
            </summary>
7339
            <param name="text">Text to place inside the comment.</param>
7340
        </member>
7341
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
7342
            <summary>
7343
            Writes a <see cref="T:System.String"/> value.
7344
            </summary>
7345
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
7346
        </member>
7347
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
7348
            <summary>
7349
            Writes a <see cref="T:System.Int32"/> value.
7350
            </summary>
7351
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
7352
        </member>
7353
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
7354
            <summary>
7355
            Writes a <see cref="T:System.UInt32"/> value.
7356
            </summary>
7357
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
7358
        </member>
7359
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
7360
            <summary>
7361
            Writes a <see cref="T:System.Int64"/> value.
7362
            </summary>
7363
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
7364
        </member>
7365
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
7366
            <summary>
7367
            Writes a <see cref="T:System.UInt64"/> value.
7368
            </summary>
7369
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
7370
        </member>
7371
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
7372
            <summary>
7373
            Writes a <see cref="T:System.Single"/> value.
7374
            </summary>
7375
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
7376
        </member>
7377
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
7378
            <summary>
7379
            Writes a <see cref="T:System.Double"/> value.
7380
            </summary>
7381
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
7382
        </member>
7383
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
7384
            <summary>
7385
            Writes a <see cref="T:System.Boolean"/> value.
7386
            </summary>
7387
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
7388
        </member>
7389
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
7390
            <summary>
7391
            Writes a <see cref="T:System.Int16"/> value.
7392
            </summary>
7393
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
7394
        </member>
7395
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
7396
            <summary>
7397
            Writes a <see cref="T:System.UInt16"/> value.
7398
            </summary>
7399
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
7400
        </member>
7401
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
7402
            <summary>
7403
            Writes a <see cref="T:System.Char"/> value.
7404
            </summary>
7405
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
7406
        </member>
7407
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
7408
            <summary>
7409
            Writes a <see cref="T:System.Byte"/> value.
7410
            </summary>
7411
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
7412
        </member>
7413
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
7414
            <summary>
7415
            Writes a <see cref="T:System.SByte"/> value.
7416
            </summary>
7417
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
7418
        </member>
7419
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
7420
            <summary>
7421
            Writes a <see cref="T:System.Decimal"/> value.
7422
            </summary>
7423
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
7424
        </member>
7425
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
7426
            <summary>
7427
            Writes a <see cref="T:System.DateTime"/> value.
7428
            </summary>
7429
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
7430
        </member>
7431
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
7432
            <summary>
7433
            Writes a <see cref="T:System.Byte"/>[] value.
7434
            </summary>
7435
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
7436
        </member>
7437
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
7438
            <summary>
7439
            Writes a <see cref="T:System.TimeSpan"/> value.
7440
            </summary>
7441
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
7442
        </member>
7443
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
7444
            <summary>
7445
            Writes a <see cref="T:System.Guid"/> value.
7446
            </summary>
7447
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
7448
        </member>
7449
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
7450
            <summary>
7451
            Writes a <see cref="T:System.Uri"/> value.
7452
            </summary>
7453
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
7454
        </member>
7455
        <member name="P:Newtonsoft.Json.Linq.JTokenWriter.CurrentToken">
7456
            <summary>
7457
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the writer's current position.
7458
            </summary>
7459
        </member>
7460
        <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
7461
            <summary>
7462
            Gets the token being writen.
7463
            </summary>
7464
            <value>The token being writen.</value>
7465
        </member>
7466
        <member name="T:Newtonsoft.Json.Linq.JProperty">
7467
            <summary>
7468
            Represents a JSON property.
7469
            </summary>
7470
        </member>
7471
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
7472
            <summary>
7473
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
7474
            </summary>
7475
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
7476
        </member>
7477
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
7478
            <summary>
7479
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
7480
            </summary>
7481
            <param name="name">The property name.</param>
7482
            <param name="content">The property content.</param>
7483
        </member>
7484
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
7485
            <summary>
7486
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
7487
            </summary>
7488
            <param name="name">The property name.</param>
7489
            <param name="content">The property content.</param>
7490
        </member>
7491
        <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
7492
            <summary>
7493
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
7494
            </summary>
7495
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7496
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
7497
        </member>
7498
        <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
7499
            <summary>
7500
            Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
7501
            </summary>
7502
            <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>
7503
            <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>
7504
        </member>
7505
        <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
7506
            <summary>
7507
            Gets the container's children tokens.
7508
            </summary>
7509
            <value>The container's children tokens.</value>
7510
        </member>
7511
        <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
7512
            <summary>
7513
            Gets the property name.
7514
            </summary>
7515
            <value>The property name.</value>
7516
        </member>
7517
        <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
7518
            <summary>
7519
            Gets or sets the property value.
7520
            </summary>
7521
            <value>The property value.</value>
7522
        </member>
7523
        <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
7524
            <summary>
7525
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7526
            </summary>
7527
            <value>The type.</value>
7528
        </member>
7529
        <member name="T:Newtonsoft.Json.Linq.JTokenType">
7530
            <summary>
7531
            Specifies the type of token.
7532
            </summary>
7533
        </member>
7534
        <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
7535
            <summary>
7536
            No token type has been set.
7537
            </summary>
7538
        </member>
7539
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
7540
            <summary>
7541
            A JSON object.
7542
            </summary>
7543
        </member>
7544
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
7545
            <summary>
7546
            A JSON array.
7547
            </summary>
7548
        </member>
7549
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
7550
            <summary>
7551
            A JSON constructor.
7552
            </summary>
7553
        </member>
7554
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
7555
            <summary>
7556
            A JSON object property.
7557
            </summary>
7558
        </member>
7559
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
7560
            <summary>
7561
            A comment.
7562
            </summary>
7563
        </member>
7564
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
7565
            <summary>
7566
            An integer value.
7567
            </summary>
7568
        </member>
7569
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
7570
            <summary>
7571
            A float value.
7572
            </summary>
7573
        </member>
7574
        <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
7575
            <summary>
7576
            A string value.
7577
            </summary>
7578
        </member>
7579
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
7580
            <summary>
7581
            A boolean value.
7582
            </summary>
7583
        </member>
7584
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
7585
            <summary>
7586
            A null value.
7587
            </summary>
7588
        </member>
7589
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
7590
            <summary>
7591
            An undefined value.
7592
            </summary>
7593
        </member>
7594
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
7595
            <summary>
7596
            A date value.
7597
            </summary>
7598
        </member>
7599
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
7600
            <summary>
7601
            A raw JSON value.
7602
            </summary>
7603
        </member>
7604
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
7605
            <summary>
7606
            A collection of bytes value.
7607
            </summary>
7608
        </member>
7609
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
7610
            <summary>
7611
            A Guid value.
7612
            </summary>
7613
        </member>
7614
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
7615
            <summary>
7616
            A Uri value.
7617
            </summary>
7618
        </member>
7619
        <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
7620
            <summary>
7621
            A TimeSpan value.
7622
            </summary>
7623
        </member>
7624
        <member name="T:Newtonsoft.Json.Schema.Extensions">
7625
            <summary>
7626
            Contains the JSON schema extension methods.
7627
            </summary>
7628
        </member>
7629
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
7630
            <summary>
7631
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
7632
            </summary>
7633
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7634
            <param name="schema">The schema to test with.</param>
7635
            <returns>
7636
            	<c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
7637
            </returns>
7638
        </member>
7639
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
7640
            <summary>
7641
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
7642
            </summary>
7643
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7644
            <param name="schema">The schema to test with.</param>
7645
            <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
7646
            <returns>
7647
            	<c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
7648
            </returns>
7649
        </member>
7650
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
7651
            <summary>
7652
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7653
            </summary>
7654
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7655
            <param name="schema">The schema to test with.</param>
7656
        </member>
7657
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
7658
            <summary>
7659
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7660
            </summary>
7661
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7662
            <param name="schema">The schema to test with.</param>
7663
            <param name="validationEventHandler">The validation event handler.</param>
7664
        </member>
7665
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
7666
            <summary>
7667
            Returns detailed information about the schema exception.
7668
            </summary>
7669
        </member>
7670
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
7671
            <summary>
7672
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
7673
            </summary>
7674
        </member>
7675
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
7676
            <summary>
7677
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7678
            with a specified error message.
7679
            </summary>
7680
            <param name="message">The error message that explains the reason for the exception.</param>
7681
        </member>
7682
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
7683
            <summary>
7684
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7685
            with a specified error message and a reference to the inner exception that is the cause of this exception.
7686
            </summary>
7687
            <param name="message">The error message that explains the reason for the exception.</param>
7688
            <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>
7689
        </member>
7690
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7691
            <summary>
7692
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
7693
            </summary>
7694
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
7695
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
7696
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
7697
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
7698
        </member>
7699
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
7700
            <summary>
7701
            Gets the line number indicating where the error occurred.
7702
            </summary>
7703
            <value>The line number indicating where the error occurred.</value>
7704
        </member>
7705
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
7706
            <summary>
7707
            Gets the line position indicating where the error occurred.
7708
            </summary>
7709
            <value>The line position indicating where the error occurred.</value>
7710
        </member>
7711
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
7712
            <summary>
7713
            Gets the path to the JSON where the error occurred.
7714
            </summary>
7715
            <value>The path to the JSON where the error occurred.</value>
7716
        </member>
7717
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
7718
            <summary>
7719
            Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
7720
            </summary>
7721
        </member>
7722
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
7723
            <summary>
7724
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
7725
            </summary>
7726
        </member>
7727
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
7728
            <summary>
7729
            Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.
7730
            </summary>
7731
            <param name="reference">The id.</param>
7732
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>
7733
        </member>
7734
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
7735
            <summary>
7736
            Gets or sets the loaded schemas.
7737
            </summary>
7738
            <value>The loaded schemas.</value>
7739
        </member>
7740
        <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
7741
            <summary>
7742
            Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
7743
            </summary>
7744
        </member>
7745
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
7746
            <summary>
7747
            Do not infer a schema Id.
7748
            </summary>
7749
        </member>
7750
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
7751
            <summary>
7752
            Use the .NET type name as the schema Id.
7753
            </summary>
7754
        </member>
7755
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
7756
            <summary>
7757
            Use the assembly qualified .NET type name as the schema Id.
7758
            </summary>
7759
        </member>
7760
        <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
7761
            <summary>
7762
            Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
7763
            </summary>
7764
        </member>
7765
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
7766
            <summary>
7767
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.
7768
            </summary>
7769
            <value>The JsonSchemaException associated with the validation error.</value>
7770
        </member>
7771
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
7772
            <summary>
7773
            Gets the path of the JSON location where the validation error occurred.
7774
            </summary>
7775
            <value>The path of the JSON location where the validation error occurred.</value>
7776
        </member>
7777
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
7778
            <summary>
7779
            Gets the text description corresponding to the validation error.
7780
            </summary>
7781
            <value>The text description.</value>
7782
        </member>
7783
        <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
7784
            <summary>
7785
            Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
7786
            </summary>
7787
        </member>
7788
        <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
7789
            <summary>
7790
            Resolves member mappings for a type, camel casing property names.
7791
            </summary>
7792
        </member>
7793
        <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
7794
            <summary>
7795
            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"/>.
7796
            </summary>
7797
        </member>
7798
        <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
7799
            <summary>
7800
            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"/>.
7801
            </summary>
7802
            <example>
7803
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class"/>
7804
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example"/>
7805
            </example>
7806
        </member>
7807
        <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
7808
            <summary>
7809
            Resolves the contract for a given type.
7810
            </summary>
7811
            <param name="type">The type to resolve a contract for.</param>
7812
            <returns>The contract for a given type.</returns>
7813
        </member>
7814
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
7815
            <summary>
7816
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
7817
            </summary>
7818
        </member>
7819
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)">
7820
            <summary>
7821
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
7822
            </summary>
7823
            <param name="shareCache">
7824
            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.
7825
            Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only
7826
            happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different
7827
            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"/>.
7828
            </param>
7829
        </member>
7830
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
7831
            <summary>
7832
            Resolves the contract for a given type.
7833
            </summary>
7834
            <param name="type">The type to resolve a contract for.</param>
7835
            <returns>The contract for a given type.</returns>
7836
        </member>
7837
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
7838
            <summary>
7839
            Gets the serializable members for the type.
7840
            </summary>
7841
            <param name="objectType">The type to get serializable members for.</param>
7842
            <returns>The serializable members for the type.</returns>
7843
        </member>
7844
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
7845
            <summary>
7846
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
7847
            </summary>
7848
            <param name="objectType">Type of the object.</param>
7849
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
7850
        </member>
7851
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
7852
            <summary>
7853
            Creates the constructor parameters.
7854
            </summary>
7855
            <param name="constructor">The constructor to create properties for.</param>
7856
            <param name="memberProperties">The type's member properties.</param>
7857
            <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
7858
        </member>
7859
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
7860
            <summary>
7861
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
7862
            </summary>
7863
            <param name="matchingMemberProperty">The matching member property.</param>
7864
            <param name="parameterInfo">The constructor parameter.</param>
7865
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
7866
        </member>
7867
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
7868
            <summary>
7869
            Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for the contract.
7870
            </summary>
7871
            <param name="objectType">Type of the object.</param>
7872
            <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter"/>.</returns>
7873
        </member>
7874
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
7875
            <summary>
7876
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
7877
            </summary>
7878
            <param name="objectType">Type of the object.</param>
7879
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
7880
        </member>
7881
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
7882
            <summary>
7883
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
7884
            </summary>
7885
            <param name="objectType">Type of the object.</param>
7886
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
7887
        </member>
7888
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
7889
            <summary>
7890
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
7891
            </summary>
7892
            <param name="objectType">Type of the object.</param>
7893
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
7894
        </member>
7895
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
7896
            <summary>
7897
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
7898
            </summary>
7899
            <param name="objectType">Type of the object.</param>
7900
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
7901
        </member>
7902
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
7903
            <summary>
7904
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
7905
            </summary>
7906
            <param name="objectType">Type of the object.</param>
7907
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
7908
        </member>
7909
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
7910
            <summary>
7911
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
7912
            </summary>
7913
            <param name="objectType">Type of the object.</param>
7914
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
7915
        </member>
7916
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
7917
            <summary>
7918
            Determines which contract type is created for the given type.
7919
            </summary>
7920
            <param name="objectType">Type of the object.</param>
7921
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
7922
        </member>
7923
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
7924
            <summary>
7925
            Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
7926
            </summary>
7927
            <param name="type">The type to create properties for.</param>
7928
            /// <param name="memberSerialization">The member serialization mode for the type.</param>
7929
            <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
7930
        </member>
7931
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
7932
            <summary>
7933
            Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
7934
            </summary>
7935
            <param name="member">The member.</param>
7936
            <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
7937
        </member>
7938
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
7939
            <summary>
7940
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
7941
            </summary>
7942
            <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
7943
            <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
7944
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
7945
        </member>
7946
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
7947
            <summary>
7948
            Resolves the name of the property.
7949
            </summary>
7950
            <param name="propertyName">Name of the property.</param>
7951
            <returns>Name of the property.</returns>
7952
        </member>
7953
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
7954
            <summary>
7955
            Gets the resolved name of the property.
7956
            </summary>
7957
            <param name="propertyName">Name of the property.</param>
7958
            <returns>Name of the property.</returns>
7959
        </member>
7960
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
7961
            <summary>
7962
            Gets a value indicating whether members are being get and set using dynamic code generation.
7963
            This value is determined by the runtime permissions available.
7964
            </summary>
7965
            <value>
7966
            	<c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
7967
            </value>
7968
        </member>
7969
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
7970
            <summary>
7971
            Gets or sets the default members search flags.
7972
            </summary>
7973
            <value>The default members search flags.</value>
7974
        </member>
7975
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
7976
            <summary>
7977
            Gets or sets a value indicating whether compiler generated members should be serialized.
7978
            </summary>
7979
            <value>
7980
            	<c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
7981
            </value>
7982
        </member>
7983
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
7984
            <summary>
7985
            Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.
7986
            </summary>
7987
            <value>
7988
            	<c>true</c> if the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
7989
            </value>
7990
        </member>
7991
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
7992
            <summary>
7993
            Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.
7994
            </summary>
7995
            <value>
7996
            	<c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
7997
            </value>
7998
        </member>
7999
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
8000
            <summary>
8001
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
8002
            </summary>
8003
        </member>
8004
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)">
8005
            <summary>
8006
            Resolves the name of the property.
8007
            </summary>
8008
            <param name="propertyName">Name of the property.</param>
8009
            <returns>The property name camel cased.</returns>
8010
        </member>
8011
        <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
8012
            <summary>
8013
            The default serialization binder used when resolving and loading classes from type names.
8014
            </summary>
8015
        </member>
8016
        <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
8017
            <summary>
8018
            When overridden in a derived class, controls the binding of a serialized object to a type.
8019
            </summary>
8020
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
8021
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
8022
            <returns>
8023
            The type of the object the formatter creates a new instance of.
8024
            </returns>
8025
        </member>
8026
        <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
8027
            <summary>
8028
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
8029
            </summary>
8030
        </member>
8031
        <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
8032
            <summary>
8033
            Provides methods to get and set values.
8034
            </summary>
8035
        </member>
8036
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
8037
            <summary>
8038
            Sets the value.
8039
            </summary>
8040
            <param name="target">The target to set the value on.</param>
8041
            <param name="value">The value to set on the target.</param>
8042
        </member>
8043
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
8044
            <summary>
8045
            Gets the value.
8046
            </summary>
8047
            <param name="target">The target to get the value from.</param>
8048
            <returns>The value.</returns>
8049
        </member>
8050
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
8051
            <summary>
8052
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
8053
            </summary>
8054
            <param name="memberInfo">The member info.</param>
8055
        </member>
8056
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
8057
            <summary>
8058
            Sets the value.
8059
            </summary>
8060
            <param name="target">The target to set the value on.</param>
8061
            <param name="value">The value to set on the target.</param>
8062
        </member>
8063
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
8064
            <summary>
8065
            Gets the value.
8066
            </summary>
8067
            <param name="target">The target to get the value from.</param>
8068
            <returns>The value.</returns>
8069
        </member>
8070
        <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
8071
            <summary>
8072
            Provides information surrounding an error.
8073
            </summary>
8074
        </member>
8075
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
8076
            <summary>
8077
            Gets the error.
8078
            </summary>
8079
            <value>The error.</value>
8080
        </member>
8081
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
8082
            <summary>
8083
            Gets the original object that caused the error.
8084
            </summary>
8085
            <value>The original object that caused the error.</value>
8086
        </member>
8087
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
8088
            <summary>
8089
            Gets the member that caused the error.
8090
            </summary>
8091
            <value>The member that caused the error.</value>
8092
        </member>
8093
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
8094
            <summary>
8095
            Gets the path of the JSON location where the error occurred.
8096
            </summary>
8097
            <value>The path of the JSON location where the error occurred.</value>
8098
        </member>
8099
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
8100
            <summary>
8101
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
8102
            </summary>
8103
            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
8104
        </member>
8105
        <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
8106
            <summary>
8107
            Provides data for the Error event.
8108
            </summary>
8109
        </member>
8110
        <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
8111
            <summary>
8112
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
8113
            </summary>
8114
            <param name="currentObject">The current object.</param>
8115
            <param name="errorContext">The error context.</param>
8116
        </member>
8117
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
8118
            <summary>
8119
            Gets the current object the error event is being raised against.
8120
            </summary>
8121
            <value>The current object the error event is being raised against.</value>
8122
        </member>
8123
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
8124
            <summary>
8125
            Gets the error context.
8126
            </summary>
8127
            <value>The error context.</value>
8128
        </member>
8129
        <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
8130
            <summary>
8131
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8132
            </summary>
8133
        </member>
8134
        <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
8135
            <summary>
8136
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
8137
            </summary>
8138
            <param name="underlyingType">The underlying type for the contract.</param>
8139
        </member>
8140
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
8141
            <summary>
8142
            Gets the <see cref="T:System.Type"/> of the collection items.
8143
            </summary>
8144
            <value>The <see cref="T:System.Type"/> of the collection items.</value>
8145
        </member>
8146
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
8147
            <summary>
8148
            Gets a value indicating whether the collection type is a multidimensional array.
8149
            </summary>
8150
            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
8151
        </member>
8152
        <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">
8153
            <summary>
8154
            Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.
8155
            </summary>
8156
            <param name="o">The object that raised the callback event.</param>
8157
            <param name="context">The streaming context.</param>
8158
        </member>
8159
        <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">
8160
            <summary>
8161
            Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.
8162
            </summary>
8163
            <param name="o">The object that raised the callback event.</param>
8164
            <param name="context">The streaming context.</param>
8165
            <param name="errorContext">The error context.</param>
8166
        </member>
8167
        <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">
8168
            <summary>
8169
            Sets extension data for an object during deserialization.
8170
            </summary>
8171
            <param name="o">The object to set extension data on.</param>
8172
            <param name="key">The extension data key.</param>
8173
            <param name="value">The extension data value.</param>
8174
        </member>
8175
        <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">
8176
            <summary>
8177
            Gets extension data for an object during serialization.
8178
            </summary>
8179
            <param name="o">The object to set extension data on.</param>
8180
        </member>
8181
        <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
8182
            <summary>
8183
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8184
            </summary>
8185
        </member>
8186
        <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
8187
            <summary>
8188
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
8189
            </summary>
8190
            <param name="underlyingType">The underlying type for the contract.</param>
8191
        </member>
8192
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver">
8193
            <summary>
8194
            Gets or sets the property name resolver.
8195
            </summary>
8196
            <value>The property name resolver.</value>
8197
        </member>
8198
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
8199
            <summary>
8200
            Gets the <see cref="T:System.Type"/> of the dictionary keys.
8201
            </summary>
8202
            <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
8203
        </member>
8204
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
8205
            <summary>
8206
            Gets the <see cref="T:System.Type"/> of the dictionary values.
8207
            </summary>
8208
            <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
8209
        </member>
8210
        <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
8211
            <summary>
8212
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8213
            </summary>
8214
        </member>
8215
        <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
8216
            <summary>
8217
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
8218
            </summary>
8219
            <param name="underlyingType">The underlying type for the contract.</param>
8220
        </member>
8221
        <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
8222
            <summary>
8223
            Gets or sets the ISerializable object constructor.
8224
            </summary>
8225
            <value>The ISerializable object constructor.</value>
8226
        </member>
8227
        <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
8228
            <summary>
8229
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8230
            </summary>
8231
        </member>
8232
        <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
8233
            <summary>
8234
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
8235
            </summary>
8236
            <param name="underlyingType">The underlying type for the contract.</param>
8237
        </member>
8238
        <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
8239
            <summary>
8240
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8241
            </summary>
8242
        </member>
8243
        <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
8244
            <summary>
8245
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
8246
            </summary>
8247
            <param name="underlyingType">The underlying type for the contract.</param>
8248
        </member>
8249
        <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
8250
            <summary>
8251
            Maps a JSON property to a .NET member or constructor parameter.
8252
            </summary>
8253
        </member>
8254
        <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
8255
            <summary>
8256
            Returns a <see cref="T:System.String"/> that represents this instance.
8257
            </summary>
8258
            <returns>
8259
            A <see cref="T:System.String"/> that represents this instance.
8260
            </returns>
8261
        </member>
8262
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
8263
            <summary>
8264
            Gets or sets the name of the property.
8265
            </summary>
8266
            <value>The name of the property.</value>
8267
        </member>
8268
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
8269
            <summary>
8270
            Gets or sets the type that declared this property.
8271
            </summary>
8272
            <value>The type that declared this property.</value>
8273
        </member>
8274
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
8275
            <summary>
8276
            Gets or sets the order of serialization and deserialization of a member.
8277
            </summary>
8278
            <value>The numeric order of serialization or deserialization.</value>
8279
        </member>
8280
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
8281
            <summary>
8282
            Gets or sets the name of the underlying member or parameter.
8283
            </summary>
8284
            <value>The name of the underlying member or parameter.</value>
8285
        </member>
8286
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
8287
            <summary>
8288
            Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
8289
            </summary>
8290
            <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>
8291
        </member>
8292
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.AttributeProvider">
8293
            <summary>
8294
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.
8295
            </summary>
8296
            <value>The <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.</value>
8297
        </member>
8298
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
8299
            <summary>
8300
            Gets or sets the type of the property.
8301
            </summary>
8302
            <value>The type of the property.</value>
8303
        </member>
8304
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
8305
            <summary>
8306
            Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> for the property.
8307
            If set this converter takes presidence over the contract converter for the property type.
8308
            </summary>
8309
            <value>The converter.</value>
8310
        </member>
8311
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
8312
            <summary>
8313
            Gets or sets the member converter.
8314
            </summary>
8315
            <value>The member converter.</value>
8316
        </member>
8317
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
8318
            <summary>
8319
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
8320
            </summary>
8321
            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
8322
        </member>
8323
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
8324
            <summary>
8325
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
8326
            </summary>
8327
            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
8328
        </member>
8329
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
8330
            <summary>
8331
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
8332
            </summary>
8333
            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
8334
        </member>
8335
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
8336
            <summary>
8337
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
8338
            </summary>
8339
            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
8340
        </member>
8341
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
8342
            <summary>
8343
            Gets the default value.
8344
            </summary>
8345
            <value>The default value.</value>
8346
        </member>
8347
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
8348
            <summary>
8349
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
8350
            </summary>
8351
            <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
8352
        </member>
8353
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
8354
            <summary>
8355
            Gets or sets a value indicating whether this property preserves object references.
8356
            </summary>
8357
            <value>
8358
            	<c>true</c> if this instance is reference; otherwise, <c>false</c>.
8359
            </value>
8360
        </member>
8361
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
8362
            <summary>
8363
            Gets or sets the property null value handling.
8364
            </summary>
8365
            <value>The null value handling.</value>
8366
        </member>
8367
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
8368
            <summary>
8369
            Gets or sets the property default value handling.
8370
            </summary>
8371
            <value>The default value handling.</value>
8372
        </member>
8373
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
8374
            <summary>
8375
            Gets or sets the property reference loop handling.
8376
            </summary>
8377
            <value>The reference loop handling.</value>
8378
        </member>
8379
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
8380
            <summary>
8381
            Gets or sets the property object creation handling.
8382
            </summary>
8383
            <value>The object creation handling.</value>
8384
        </member>
8385
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
8386
            <summary>
8387
            Gets or sets or sets the type name handling.
8388
            </summary>
8389
            <value>The type name handling.</value>
8390
        </member>
8391
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
8392
            <summary>
8393
            Gets or sets a predicate used to determine whether the property should be serialize.
8394
            </summary>
8395
            <value>A predicate used to determine whether the property should be serialize.</value>
8396
        </member>
8397
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
8398
            <summary>
8399
            Gets or sets a predicate used to determine whether the property should be serialized.
8400
            </summary>
8401
            <value>A predicate used to determine whether the property should be serialized.</value>
8402
        </member>
8403
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
8404
            <summary>
8405
            Gets or sets an action used to set whether the property has been deserialized.
8406
            </summary>
8407
            <value>An action used to set whether the property has been deserialized.</value>
8408
        </member>
8409
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
8410
            <summary>
8411
            Gets or sets the converter used when serializing the property's collection items.
8412
            </summary>
8413
            <value>The collection's items converter.</value>
8414
        </member>
8415
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
8416
            <summary>
8417
            Gets or sets whether this property's collection items are serialized as a reference.
8418
            </summary>
8419
            <value>Whether this property's collection items are serialized as a reference.</value>
8420
        </member>
8421
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
8422
            <summary>
8423
            Gets or sets the the type name handling used when serializing the property's collection items.
8424
            </summary>
8425
            <value>The collection's items type name handling.</value>
8426
        </member>
8427
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
8428
            <summary>
8429
            Gets or sets the the reference loop handling used when serializing the property's collection items.
8430
            </summary>
8431
            <value>The collection's items reference loop handling.</value>
8432
        </member>
8433
        <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
8434
            <summary>
8435
            A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
8436
            </summary>
8437
        </member>
8438
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
8439
            <summary>
8440
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
8441
            </summary>
8442
            <param name="type">The type.</param>
8443
        </member>
8444
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
8445
            <summary>
8446
            When implemented in a derived class, extracts the key from the specified element.
8447
            </summary>
8448
            <param name="item">The element from which to extract the key.</param>
8449
            <returns>The key for the specified element.</returns>
8450
        </member>
8451
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
8452
            <summary>
8453
            Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
8454
            </summary>
8455
            <param name="property">The property to add to the collection.</param>
8456
        </member>
8457
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
8458
            <summary>
8459
            Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
8460
            First attempts to get an exact case match of propertyName and then
8461
            a case insensitive match.
8462
            </summary>
8463
            <param name="propertyName">Name of the property.</param>
8464
            <returns>A matching property if found.</returns>
8465
        </member>
8466
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
8467
            <summary>
8468
            Gets a property by property name.
8469
            </summary>
8470
            <param name="propertyName">The name of the property to get.</param>
8471
            <param name="comparisonType">Type property name string comparison.</param>
8472
            <returns>A matching property if found.</returns>
8473
        </member>
8474
        <member name="T:Newtonsoft.Json.MissingMemberHandling">
8475
            <summary>
8476
            Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8477
            </summary>
8478
        </member>
8479
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
8480
            <summary>
8481
            Ignore a missing member and do not attempt to deserialize it.
8482
            </summary>
8483
        </member>
8484
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
8485
            <summary>
8486
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
8487
            </summary>
8488
        </member>
8489
        <member name="T:Newtonsoft.Json.NullValueHandling">
8490
            <summary>
8491
            Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8492
            </summary>
8493
            <example>
8494
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class"/>
8495
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example"/>
8496
            </example>
8497
        </member>
8498
        <member name="F:Newtonsoft.Json.NullValueHandling.Include">
8499
            <summary>
8500
            Include null values when serializing and deserializing objects.
8501
            </summary>
8502
        </member>
8503
        <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
8504
            <summary>
8505
            Ignore null values when serializing and deserializing objects.
8506
            </summary>
8507
        </member>
8508
        <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
8509
            <summary>
8510
            Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8511
            </summary>
8512
        </member>
8513
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
8514
            <summary>
8515
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
8516
            </summary>
8517
        </member>
8518
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
8519
            <summary>
8520
            Ignore loop references and do not serialize.
8521
            </summary>
8522
        </member>
8523
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
8524
            <summary>
8525
            Serialize loop references.
8526
            </summary>
8527
        </member>
8528
        <member name="T:Newtonsoft.Json.Schema.JsonSchema">
8529
            <summary>
8530
            An in-memory representation of a JSON Schema.
8531
            </summary>
8532
        </member>
8533
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
8534
            <summary>
8535
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
8536
            </summary>
8537
        </member>
8538
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
8539
            <summary>
8540
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
8541
            </summary>
8542
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
8543
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
8544
        </member>
8545
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8546
            <summary>
8547
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
8548
            </summary>
8549
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
8550
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
8551
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
8552
        </member>
8553
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
8554
            <summary>
8555
            Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON.
8556
            </summary>
8557
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
8558
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
8559
        </member>
8560
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8561
            <summary>
8562
            Parses the specified json.
8563
            </summary>
8564
            <param name="json">The json.</param>
8565
            <param name="resolver">The resolver.</param>
8566
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
8567
        </member>
8568
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
8569
            <summary>
8570
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
8571
            </summary>
8572
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8573
        </member>
8574
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8575
            <summary>
8576
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
8577
            </summary>
8578
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8579
            <param name="resolver">The resolver used.</param>
8580
        </member>
8581
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
8582
            <summary>
8583
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
8584
            </summary>
8585
            <returns>
8586
            A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
8587
            </returns>
8588
        </member>
8589
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
8590
            <summary>
8591
            Gets or sets the id.
8592
            </summary>
8593
        </member>
8594
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
8595
            <summary>
8596
            Gets or sets the title.
8597
            </summary>
8598
        </member>
8599
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
8600
            <summary>
8601
            Gets or sets whether the object is required.
8602
            </summary>
8603
        </member>
8604
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
8605
            <summary>
8606
            Gets or sets whether the object is read only.
8607
            </summary>
8608
        </member>
8609
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
8610
            <summary>
8611
            Gets or sets whether the object is visible to users.
8612
            </summary>
8613
        </member>
8614
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
8615
            <summary>
8616
            Gets or sets whether the object is transient.
8617
            </summary>
8618
        </member>
8619
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
8620
            <summary>
8621
            Gets or sets the description of the object.
8622
            </summary>
8623
        </member>
8624
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
8625
            <summary>
8626
            Gets or sets the types of values allowed by the object.
8627
            </summary>
8628
            <value>The type.</value>
8629
        </member>
8630
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
8631
            <summary>
8632
            Gets or sets the pattern.
8633
            </summary>
8634
            <value>The pattern.</value>
8635
        </member>
8636
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
8637
            <summary>
8638
            Gets or sets the minimum length.
8639
            </summary>
8640
            <value>The minimum length.</value>
8641
        </member>
8642
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
8643
            <summary>
8644
            Gets or sets the maximum length.
8645
            </summary>
8646
            <value>The maximum length.</value>
8647
        </member>
8648
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
8649
            <summary>
8650
            Gets or sets a number that the value should be divisble by.
8651
            </summary>
8652
            <value>A number that the value should be divisble by.</value>
8653
        </member>
8654
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
8655
            <summary>
8656
            Gets or sets the minimum.
8657
            </summary>
8658
            <value>The minimum.</value>
8659
        </member>
8660
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
8661
            <summary>
8662
            Gets or sets the maximum.
8663
            </summary>
8664
            <value>The maximum.</value>
8665
        </member>
8666
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
8667
            <summary>
8668
            Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.
8669
            </summary>
8670
            <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value>
8671
        </member>
8672
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
8673
            <summary>
8674
            Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.
8675
            </summary>
8676
            <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>
8677
        </member>
8678
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
8679
            <summary>
8680
            Gets or sets the minimum number of items.
8681
            </summary>
8682
            <value>The minimum number of items.</value>
8683
        </member>
8684
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
8685
            <summary>
8686
            Gets or sets the maximum number of items.
8687
            </summary>
8688
            <value>The maximum number of items.</value>
8689
        </member>
8690
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
8691
            <summary>
8692
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
8693
            </summary>
8694
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
8695
        </member>
8696
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">
8697
            <summary>
8698
            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"/>.
8699
            </summary>
8700
            <value>
8701
            	<c>true</c> if items are validated using their array position; otherwise, <c>false</c>.
8702
            </value>
8703
        </member>
8704
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">
8705
            <summary>
8706
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.
8707
            </summary>
8708
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value>
8709
        </member>
8710
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">
8711
            <summary>
8712
            Gets or sets a value indicating whether additional items are allowed.
8713
            </summary>
8714
            <value>
8715
            	<c>true</c> if additional items are allowed; otherwise, <c>false</c>.
8716
            </value>
8717
        </member>
8718
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">
8719
            <summary>
8720
            Gets or sets whether the array items must be unique.
8721
            </summary>
8722
        </member>
8723
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
8724
            <summary>
8725
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
8726
            </summary>
8727
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
8728
        </member>
8729
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
8730
            <summary>
8731
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
8732
            </summary>
8733
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
8734
        </member>
8735
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
8736
            <summary>
8737
            Gets or sets the pattern properties.
8738
            </summary>
8739
            <value>The pattern properties.</value>
8740
        </member>
8741
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
8742
            <summary>
8743
            Gets or sets a value indicating whether additional properties are allowed.
8744
            </summary>
8745
            <value>
8746
            	<c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
8747
            </value>
8748
        </member>
8749
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
8750
            <summary>
8751
            Gets or sets the required property if this property is present.
8752
            </summary>
8753
            <value>The required property if this property is present.</value>
8754
        </member>
8755
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
8756
            <summary>
8757
            Gets or sets the a collection of valid enum values allowed.
8758
            </summary>
8759
            <value>A collection of valid enum values allowed.</value>
8760
        </member>
8761
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
8762
            <summary>
8763
            Gets or sets disallowed types.
8764
            </summary>
8765
            <value>The disallow types.</value>
8766
        </member>
8767
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
8768
            <summary>
8769
            Gets or sets the default value.
8770
            </summary>
8771
            <value>The default value.</value>
8772
        </member>
8773
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
8774
            <summary>
8775
            Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.
8776
            </summary>
8777
            <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value>
8778
        </member>
8779
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
8780
            <summary>
8781
            Gets or sets the format.
8782
            </summary>
8783
            <value>The format.</value>
8784
        </member>
8785
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
8786
            <summary>
8787
            Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
8788
            </summary>
8789
        </member>
8790
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
8791
            <summary>
8792
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8793
            </summary>
8794
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8795
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8796
        </member>
8797
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8798
            <summary>
8799
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8800
            </summary>
8801
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8802
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8803
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8804
        </member>
8805
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
8806
            <summary>
8807
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8808
            </summary>
8809
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8810
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8811
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8812
        </member>
8813
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
8814
            <summary>
8815
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8816
            </summary>
8817
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8818
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8819
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8820
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8821
        </member>
8822
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
8823
            <summary>
8824
            Gets or sets how undefined schemas are handled by the serializer.
8825
            </summary>
8826
        </member>
8827
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
8828
            <summary>
8829
            Gets or sets the contract resolver.
8830
            </summary>
8831
            <value>The contract resolver.</value>
8832
        </member>
8833
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
8834
            <summary>
8835
            The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
8836
            </summary>
8837
        </member>
8838
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
8839
            <summary>
8840
            No type specified.
8841
            </summary>
8842
        </member>
8843
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
8844
            <summary>
8845
            String type.
8846
            </summary>
8847
        </member>
8848
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
8849
            <summary>
8850
            Float type.
8851
            </summary>
8852
        </member>
8853
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
8854
            <summary>
8855
            Integer type.
8856
            </summary>
8857
        </member>
8858
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
8859
            <summary>
8860
            Boolean type.
8861
            </summary>
8862
        </member>
8863
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
8864
            <summary>
8865
            Object type.
8866
            </summary>
8867
        </member>
8868
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
8869
            <summary>
8870
            Array type.
8871
            </summary>
8872
        </member>
8873
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
8874
            <summary>
8875
            Null type.
8876
            </summary>
8877
        </member>
8878
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
8879
            <summary>
8880
            Any type.
8881
            </summary>
8882
        </member>
8883
        <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
8884
            <summary>
8885
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8886
            </summary>
8887
        </member>
8888
        <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
8889
            <summary>
8890
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
8891
            </summary>
8892
            <param name="underlyingType">The underlying type for the contract.</param>
8893
        </member>
8894
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
8895
            <summary>
8896
            Gets or sets the object member serialization.
8897
            </summary>
8898
            <value>The member object serialization.</value>
8899
        </member>
8900
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
8901
            <summary>
8902
            Gets or sets a value that indicates whether the object's properties are required.
8903
            </summary>
8904
            <value>
8905
            	A value indicating whether the object's properties are required.
8906
            </value>
8907
        </member>
8908
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
8909
            <summary>
8910
            Gets the object's properties.
8911
            </summary>
8912
            <value>The object's properties.</value>
8913
        </member>
8914
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters">
8915
            <summary>
8916
            Gets the constructor parameters required for any non-default constructor
8917
            </summary>
8918
        </member>
8919
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">
8920
            <summary>
8921
            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"/>.
8922
            </summary>
8923
        </member>
8924
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor">
8925
            <summary>
8926
            Gets or sets the override constructor used to create the object.
8927
            This is set when a constructor is marked up using the
8928
            JsonConstructor attribute.
8929
            </summary>
8930
            <value>The override constructor.</value>
8931
        </member>
8932
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor">
8933
            <summary>
8934
            Gets or sets the parametrized constructor used to create the object.
8935
            </summary>
8936
            <value>The parametrized constructor.</value>
8937
        </member>
8938
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">
8939
            <summary>
8940
            Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
8941
            This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection.
8942
            </summary>
8943
            <value>The function used to create the object.</value>
8944
        </member>
8945
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">
8946
            <summary>
8947
            Gets or sets the extension data setter.
8948
            </summary>
8949
        </member>
8950
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">
8951
            <summary>
8952
            Gets or sets the extension data getter.
8953
            </summary>
8954
        </member>
8955
        <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
8956
            <summary>
8957
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8958
            </summary>
8959
        </member>
8960
        <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
8961
            <summary>
8962
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
8963
            </summary>
8964
            <param name="underlyingType">The underlying type for the contract.</param>
8965
        </member>
8966
        <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.CreateJsonConverterInstance(System.Type,System.Object[])">
8967
            <summary>
8968
            Lookup and create an instance of the JsonConverter type described by the argument.
8969
            </summary>
8970
            <param name="converterType">The JsonConverter type to create.</param>
8971
            <param name="converterArgs">Optional arguments to pass to an initializing constructor of the JsonConverter.
8972
            If null, the default constructor is used.</param>
8973
        </member>
8974
        <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.GetJsonConverterCreator(System.Type)">
8975
            <summary>
8976
            Create a factory function that can be used to create instances of a JsonConverter described by the 
8977
            argument type.  The returned function can then be used to either invoke the converter's default ctor, or any 
8978
            parameterized constructors by way of an object array.
8979
            </summary>
8980
        </member>
8981
        <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
8982
            <summary>
8983
            Represents a method that constructs an object.
8984
            </summary>
8985
            <typeparam name="T">The object type to create.</typeparam>
8986
        </member>
8987
        <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
8988
            <summary>
8989
            When applied to a method, specifies that the method is called when an error occurs serializing an object.
8990
            </summary>
8991
        </member>
8992
        <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
8993
            <summary>
8994
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
8995
            </summary>
8996
        </member>
8997
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
8998
            <summary>
8999
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
9000
            </summary>
9001
            <param name="memberInfo">The member info.</param>
9002
        </member>
9003
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
9004
            <summary>
9005
            Sets the value.
9006
            </summary>
9007
            <param name="target">The target to set the value on.</param>
9008
            <param name="value">The value to set on the target.</param>
9009
        </member>
9010
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
9011
            <summary>
9012
            Gets the value.
9013
            </summary>
9014
            <param name="target">The target to get the value from.</param>
9015
            <returns>The value.</returns>
9016
        </member>
9017
        <member name="T:Newtonsoft.Json.TypeNameHandling">
9018
            <summary>
9019
            Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
9020
            </summary>
9021
        </member>
9022
        <member name="F:Newtonsoft.Json.TypeNameHandling.None">
9023
            <summary>
9024
            Do not include the .NET type name when serializing types.
9025
            </summary>
9026
        </member>
9027
        <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
9028
            <summary>
9029
            Include the .NET type name when serializing into a JSON object structure.
9030
            </summary>
9031
        </member>
9032
        <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
9033
            <summary>
9034
            Include the .NET type name when serializing into a JSON array structure.
9035
            </summary>
9036
        </member>
9037
        <member name="F:Newtonsoft.Json.TypeNameHandling.All">
9038
            <summary>
9039
            Always include the .NET type name when serializing.
9040
            </summary>
9041
        </member>
9042
        <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
9043
            <summary>
9044
            Include the .NET type name when the type of the object being serialized is not the same as its declared type.
9045
            </summary>
9046
        </member>
9047
        <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
9048
            <summary>
9049
            Converts the value to the specified type. If the value is unable to be converted, the
9050
            value is checked whether it assignable to the specified type.
9051
            </summary>
9052
            <param name="initialValue">The value to convert.</param>
9053
            <param name="culture">The culture to use when converting.</param>
9054
            <param name="targetType">The type to convert or cast the value to.</param>
9055
            <returns>
9056
            The converted type. If conversion was unsuccessful, the initial value
9057
            is returned if assignable to the target type.
9058
            </returns>
9059
        </member>
9060
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
9061
            <summary>
9062
            Gets a dictionary of the names and values of an Enum type.
9063
            </summary>
9064
            <returns></returns>
9065
        </member>
9066
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
9067
            <summary>
9068
            Gets a dictionary of the names and values of an Enum type.
9069
            </summary>
9070
            <param name="enumType">The enum type to get names and values for.</param>
9071
            <returns></returns>
9072
        </member>
9073
        <member name="T:Newtonsoft.Json.JsonToken">
9074
            <summary>
9075
            Specifies the type of Json token.
9076
            </summary>
9077
        </member>
9078
        <member name="F:Newtonsoft.Json.JsonToken.None">
9079
            <summary>
9080
            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. 
9081
            </summary>
9082
        </member>
9083
        <member name="F:Newtonsoft.Json.JsonToken.StartObject">
9084
            <summary>
9085
            An object start token.
9086
            </summary>
9087
        </member>
9088
        <member name="F:Newtonsoft.Json.JsonToken.StartArray">
9089
            <summary>
9090
            An array start token.
9091
            </summary>
9092
        </member>
9093
        <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
9094
            <summary>
9095
            A constructor start token.
9096
            </summary>
9097
        </member>
9098
        <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
9099
            <summary>
9100
            An object property name.
9101
            </summary>
9102
        </member>
9103
        <member name="F:Newtonsoft.Json.JsonToken.Comment">
9104
            <summary>
9105
            A comment.
9106
            </summary>
9107
        </member>
9108
        <member name="F:Newtonsoft.Json.JsonToken.Raw">
9109
            <summary>
9110
            Raw JSON.
9111
            </summary>
9112
        </member>
9113
        <member name="F:Newtonsoft.Json.JsonToken.Integer">
9114
            <summary>
9115
            An integer.
9116
            </summary>
9117
        </member>
9118
        <member name="F:Newtonsoft.Json.JsonToken.Float">
9119
            <summary>
9120
            A float.
9121
            </summary>
9122
        </member>
9123
        <member name="F:Newtonsoft.Json.JsonToken.String">
9124
            <summary>
9125
            A string.
9126
            </summary>
9127
        </member>
9128
        <member name="F:Newtonsoft.Json.JsonToken.Boolean">
9129
            <summary>
9130
            A boolean.
9131
            </summary>
9132
        </member>
9133
        <member name="F:Newtonsoft.Json.JsonToken.Null">
9134
            <summary>
9135
            A null token.
9136
            </summary>
9137
        </member>
9138
        <member name="F:Newtonsoft.Json.JsonToken.Undefined">
9139
            <summary>
9140
            An undefined token.
9141
            </summary>
9142
        </member>
9143
        <member name="F:Newtonsoft.Json.JsonToken.EndObject">
9144
            <summary>
9145
            An object end token.
9146
            </summary>
9147
        </member>
9148
        <member name="F:Newtonsoft.Json.JsonToken.EndArray">
9149
            <summary>
9150
            An array end token.
9151
            </summary>
9152
        </member>
9153
        <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
9154
            <summary>
9155
            A constructor end token.
9156
            </summary>
9157
        </member>
9158
        <member name="F:Newtonsoft.Json.JsonToken.Date">
9159
            <summary>
9160
            A Date.
9161
            </summary>
9162
        </member>
9163
        <member name="F:Newtonsoft.Json.JsonToken.Bytes">
9164
            <summary>
9165
            Byte data.
9166
            </summary>
9167
        </member>
9168
        <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
9169
            <summary>
9170
            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
9171
            </summary>
9172
        </member>
9173
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
9174
            <summary>
9175
            Determines whether the collection is null or empty.
9176
            </summary>
9177
            <param name="collection">The collection.</param>
9178
            <returns>
9179
            	<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
9180
            </returns>
9181
        </member>
9182
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
9183
            <summary>
9184
            Adds the elements of the specified collection to the specified generic IList.
9185
            </summary>
9186
            <param name="initial">The list to add to.</param>
9187
            <param name="collection">The collection of elements to add.</param>
9188
        </member>
9189
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
9190
            <summary>
9191
            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
9192
            </summary>
9193
            <typeparam name="TSource">The type of the elements of source.</typeparam>
9194
            <param name="list">A sequence in which to locate a value.</param>
9195
            <param name="value">The object to locate in the sequence</param>
9196
            <param name="comparer">An equality comparer to compare values.</param>
9197
            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
9198
        </member>
9199
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
9200
            <summary>
9201
            Gets the type of the typed collection's items.
9202
            </summary>
9203
            <param name="type">The type.</param>
9204
            <returns>The type of the typed collection's items.</returns>
9205
        </member>
9206
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
9207
            <summary>
9208
            Gets the member's underlying type.
9209
            </summary>
9210
            <param name="member">The member.</param>
9211
            <returns>The underlying type of the member.</returns>
9212
        </member>
9213
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
9214
            <summary>
9215
            Determines whether the member is an indexed property.
9216
            </summary>
9217
            <param name="member">The member.</param>
9218
            <returns>
9219
            	<c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
9220
            </returns>
9221
        </member>
9222
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
9223
            <summary>
9224
            Determines whether the property is an indexed property.
9225
            </summary>
9226
            <param name="property">The property.</param>
9227
            <returns>
9228
            	<c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
9229
            </returns>
9230
        </member>
9231
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
9232
            <summary>
9233
            Gets the member's value on the object.
9234
            </summary>
9235
            <param name="member">The member.</param>
9236
            <param name="target">The target object.</param>
9237
            <returns>The member's value on the object.</returns>
9238
        </member>
9239
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
9240
            <summary>
9241
            Sets the member's value on the target object.
9242
            </summary>
9243
            <param name="member">The member.</param>
9244
            <param name="target">The target.</param>
9245
            <param name="value">The value.</param>
9246
        </member>
9247
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
9248
            <summary>
9249
            Determines whether the specified MemberInfo can be read.
9250
            </summary>
9251
            <param name="member">The MemberInfo to determine whether can be read.</param>
9252
            /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
9253
            <returns>
9254
            	<c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
9255
            </returns>
9256
        </member>
9257
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
9258
            <summary>
9259
            Determines whether the specified MemberInfo can be set.
9260
            </summary>
9261
            <param name="member">The MemberInfo to determine whether can be set.</param>
9262
            <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
9263
            <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
9264
            <returns>
9265
            	<c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
9266
            </returns>
9267
        </member>
9268
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
9269
            <summary>
9270
            Determines whether the string is all white space. Empty string will return false.
9271
            </summary>
9272
            <param name="s">The string to test whether it is all white space.</param>
9273
            <returns>
9274
            	<c>true</c> if the string is all white space; otherwise, <c>false</c>.
9275
            </returns>
9276
        </member>
9277
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
9278
            <summary>
9279
            Nulls an empty string.
9280
            </summary>
9281
            <param name="s">The string.</param>
9282
            <returns>Null if the string was null, otherwise the string unchanged.</returns>
9283
        </member>
9284
        <member name="T:Newtonsoft.Json.WriteState">
9285
            <summary>
9286
            Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
9287
            </summary>
9288
        </member>
9289
        <member name="F:Newtonsoft.Json.WriteState.Error">
9290
            <summary>
9291
            An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
9292
            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.
9293
            Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown. 
9294
            </summary>
9295
        </member>
9296
        <member name="F:Newtonsoft.Json.WriteState.Closed">
9297
            <summary>
9298
            The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called. 
9299
            </summary>
9300
        </member>
9301
        <member name="F:Newtonsoft.Json.WriteState.Object">
9302
            <summary>
9303
            An object is being written. 
9304
            </summary>
9305
        </member>
9306
        <member name="F:Newtonsoft.Json.WriteState.Array">
9307
            <summary>
9308
            A array is being written.
9309
            </summary>
9310
        </member>
9311
        <member name="F:Newtonsoft.Json.WriteState.Constructor">
9312
            <summary>
9313
            A constructor is being written.
9314
            </summary>
9315
        </member>
9316
        <member name="F:Newtonsoft.Json.WriteState.Property">
9317
            <summary>
9318
            A property is being written.
9319
            </summary>
9320
        </member>
9321
        <member name="F:Newtonsoft.Json.WriteState.Start">
9322
            <summary>
9323
            A write method has not been called.
9324
            </summary>
9325
        </member>
9326
    </members>
9327
</doc>