Statistics
| Branch: | Revision:

root / trunk / packages / Newtonsoft.Json.4.0.2 / lib / net40 / Newtonsoft.Json.xml @ 1caef52e

History | View | Annotate | Download (359.9 kB)

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