Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (351.1 kB)

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