프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / packages / Newtonsoft.Json.10.0.3 / lib / net35 / Newtonsoft.Json.xml @ fc6ec385

이력 | 보기 | 이력해설 | 다운로드 (495 KB)

1 787a4489 KangIngu
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>Newtonsoft.Json</name>
5
    </assembly>
6
    <members>
7
        <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
8
            <summary>
9
            Represents a BSON Oid (object id).
10
            </summary>
11
        </member>
12
        <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
13
            <summary>
14
            Gets or sets the value of the Oid.
15
            </summary>
16
            <value>The value of the Oid.</value>
17
        </member>
18
        <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">
19
            <summary>
20
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.
21
            </summary>
22
            <param name="value">The Oid value.</param>
23
        </member>
24
        <member name="T:Newtonsoft.Json.Bson.BsonReader">
25
            <summary>
26
            Represents a reader that provides fast, non-cached, forward-only access to serialized BSON data.
27
            </summary>
28
        </member>
29
        <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
30
            <summary>
31
            Gets or sets a value indicating whether binary data reading should be compatible with incorrect Json.NET 3.5 written binary.
32
            </summary>
33
            <value>
34
                    <c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
35
            </value>
36
        </member>
37
        <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
38
            <summary>
39
            Gets or sets a value indicating whether the root object will be read as a JSON array.
40
            </summary>
41
            <value>
42
                    <c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
43
            </value>
44
        </member>
45
        <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
46
            <summary>
47
            Gets or sets the <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.
48
            </summary>
49
            <value>The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
50
        </member>
51
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
52
            <summary>
53
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
54
            </summary>
55
            <param name="stream">The <see cref="T:System.IO.Stream"/> containing the BSON data to read.</param>
56
        </member>
57
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
58
            <summary>
59
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
60
            </summary>
61
            <param name="reader">The <see cref="T:System.IO.BinaryReader"/> containing the BSON data to read.</param>
62
        </member>
63
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
64
            <summary>
65
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
66
            </summary>
67
            <param name="stream">The <see cref="T:System.IO.Stream"/> containing the BSON data to read.</param>
68
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
69
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
70
        </member>
71
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
72
            <summary>
73
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
74
            </summary>
75
            <param name="reader">The <see cref="T:System.IO.BinaryReader"/> containing the BSON data to read.</param>
76
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
77
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
78
        </member>
79
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
80
            <summary>
81
            Reads the next JSON token from the underlying <see cref="T:System.IO.Stream"/>.
82
            </summary>
83
            <returns>
84
            <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
85
            </returns>
86
        </member>
87
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
88
            <summary>
89
            Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
90
            If <see cref="P:Newtonsoft.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.Stream"/> is also closed.
91
            </summary>
92
        </member>
93
        <member name="T:Newtonsoft.Json.Bson.BsonWriter">
94
            <summary>
95
            Represents a writer that provides a fast, non-cached, forward-only way of generating BSON data.
96
            </summary>
97
        </member>
98
        <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
99
            <summary>
100
            Gets or sets the <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON.
101
            When set to <see cref="F:System.DateTimeKind.Unspecified" /> no conversion will occur.
102
            </summary>
103
            <value>The <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
104
        </member>
105
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
106
            <summary>
107
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
108
            </summary>
109
            <param name="stream">The <see cref="T:System.IO.Stream"/> to write to.</param>
110
        </member>
111
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
112
            <summary>
113
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
114
            </summary>
115
            <param name="writer">The <see cref="T:System.IO.BinaryWriter"/> to write to.</param>
116
        </member>
117
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
118
            <summary>
119
            Flushes whatever is in the buffer to the underlying <see cref="T:System.IO.Stream"/> and also flushes the underlying stream.
120
            </summary>
121
        </member>
122
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
123
            <summary>
124
            Writes the end.
125
            </summary>
126
            <param name="token">The token.</param>
127
        </member>
128
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
129
            <summary>
130
            Writes a comment <c>/*...*/</c> containing the specified text.
131
            </summary>
132
            <param name="text">Text to place inside the comment.</param>
133
        </member>
134
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
135
            <summary>
136
            Writes the start of a constructor with the given name.
137
            </summary>
138
            <param name="name">The name of the constructor.</param>
139
        </member>
140
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
141
            <summary>
142
            Writes raw JSON.
143
            </summary>
144
            <param name="json">The raw JSON to write.</param>
145
        </member>
146
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
147
            <summary>
148
            Writes raw JSON where a value is expected and updates the writer's state.
149
            </summary>
150
            <param name="json">The raw JSON to write.</param>
151
        </member>
152
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
153
            <summary>
154
            Writes the beginning of a JSON array.
155
            </summary>
156
        </member>
157
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
158
            <summary>
159
            Writes the beginning of a JSON object.
160
            </summary>
161
        </member>
162
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
163
            <summary>
164
            Writes the property name of a name/value pair on a JSON object.
165
            </summary>
166
            <param name="name">The name of the property.</param>
167
        </member>
168
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
169
            <summary>
170
            Closes this writer.
171
            If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.Stream"/> is also closed.
172
            If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
173
            </summary>
174
        </member>
175
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">
176
            <summary>
177
            Writes a <see cref="T:System.Object"/> value.
178
            An error will raised if the value cannot be written as a single JSON token.
179
            </summary>
180
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
181
        </member>
182
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
183
            <summary>
184
            Writes a null value.
185
            </summary>
186
        </member>
187
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
188
            <summary>
189
            Writes an undefined value.
190
            </summary>
191
        </member>
192
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
193
            <summary>
194
            Writes a <see cref="T:System.String"/> value.
195
            </summary>
196
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
197
        </member>
198
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
199
            <summary>
200
            Writes a <see cref="T:System.Int32"/> value.
201
            </summary>
202
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
203
        </member>
204
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
205
            <summary>
206
            Writes a <see cref="T:System.UInt32"/> value.
207
            </summary>
208
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
209
        </member>
210
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
211
            <summary>
212
            Writes a <see cref="T:System.Int64"/> value.
213
            </summary>
214
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
215
        </member>
216
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
217
            <summary>
218
            Writes a <see cref="T:System.UInt64"/> value.
219
            </summary>
220
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
221
        </member>
222
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
223
            <summary>
224
            Writes a <see cref="T:System.Single"/> value.
225
            </summary>
226
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
227
        </member>
228
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
229
            <summary>
230
            Writes a <see cref="T:System.Double"/> value.
231
            </summary>
232
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
233
        </member>
234
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
235
            <summary>
236
            Writes a <see cref="T:System.Boolean"/> value.
237
            </summary>
238
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
239
        </member>
240
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
241
            <summary>
242
            Writes a <see cref="T:System.Int16"/> value.
243
            </summary>
244
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
245
        </member>
246
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
247
            <summary>
248
            Writes a <see cref="T:System.UInt16"/> value.
249
            </summary>
250
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
251
        </member>
252
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
253
            <summary>
254
            Writes a <see cref="T:System.Char"/> value.
255
            </summary>
256
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
257
        </member>
258
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
259
            <summary>
260
            Writes a <see cref="T:System.Byte"/> value.
261
            </summary>
262
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
263
        </member>
264
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
265
            <summary>
266
            Writes a <see cref="T:System.SByte"/> value.
267
            </summary>
268
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
269
        </member>
270
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
271
            <summary>
272
            Writes a <see cref="T:System.Decimal"/> value.
273
            </summary>
274
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
275
        </member>
276
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
277
            <summary>
278
            Writes a <see cref="T:System.DateTime"/> value.
279
            </summary>
280
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
281
        </member>
282
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)">
283
            <summary>
284
            Writes a <see cref="T:System.DateTimeOffset"/> value.
285
            </summary>
286
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
287
        </member>
288
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
289
            <summary>
290
            Writes a <see cref="T:System.Byte"/>[] value.
291
            </summary>
292
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
293
        </member>
294
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
295
            <summary>
296
            Writes a <see cref="T:System.Guid"/> value.
297
            </summary>
298
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
299
        </member>
300
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
301
            <summary>
302
            Writes a <see cref="T:System.TimeSpan"/> value.
303
            </summary>
304
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
305
        </member>
306
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
307
            <summary>
308
            Writes a <see cref="T:System.Uri"/> value.
309
            </summary>
310
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
311
        </member>
312
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
313
            <summary>
314
            Writes a <see cref="T:System.Byte"/>[] value that represents a BSON object id.
315
            </summary>
316
            <param name="value">The Object ID value to write.</param>
317
        </member>
318
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
319
            <summary>
320
            Writes a BSON regex.
321
            </summary>
322
            <param name="pattern">The regex pattern.</param>
323
            <param name="options">The regex options.</param>
324
        </member>
325
        <member name="T:Newtonsoft.Json.ConstructorHandling">
326
            <summary>
327
            Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
328
            </summary>
329
        </member>
330
        <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
331
            <summary>
332
            First attempt to use the public default constructor, then fall back to a single parameterized constructor, then to the non-public default constructor.
333
            </summary>
334
        </member>
335
        <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
336
            <summary>
337
            Json.NET will use a non-public default constructor before falling back to a parameterized constructor.
338
            </summary>
339
        </member>
340
        <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
341
            <summary>
342
            Converts a binary value to and from a base 64 string value.
343
            </summary>
344
        </member>
345
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
346
            <summary>
347
            Writes the JSON representation of the object.
348
            </summary>
349
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
350
            <param name="value">The value.</param>
351
            <param name="serializer">The calling serializer.</param>
352
        </member>
353
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
354
            <summary>
355
            Reads the JSON representation of the object.
356
            </summary>
357
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
358
            <param name="objectType">Type of the object.</param>
359
            <param name="existingValue">The existing value of object being read.</param>
360
            <param name="serializer">The calling serializer.</param>
361
            <returns>The object value.</returns>
362
        </member>
363
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
364
            <summary>
365
            Determines whether this instance can convert the specified object type.
366
            </summary>
367
            <param name="objectType">Type of the object.</param>
368
            <returns>
369
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
370
            </returns>
371
        </member>
372
        <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
373
            <summary>
374
            Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
375
            </summary>
376
        </member>
377
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
378
            <summary>
379
            Writes the JSON representation of the object.
380
            </summary>
381
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
382
            <param name="value">The value.</param>
383
            <param name="serializer">The calling serializer.</param>
384
        </member>
385
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
386
            <summary>
387
            Reads the JSON representation of the object.
388
            </summary>
389
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
390
            <param name="objectType">Type of the object.</param>
391
            <param name="existingValue">The existing value of object being read.</param>
392
            <param name="serializer">The calling serializer.</param>
393
            <returns>The object value.</returns>
394
        </member>
395
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
396
            <summary>
397
            Determines whether this instance can convert the specified object type.
398
            </summary>
399
            <param name="objectType">Type of the object.</param>
400
            <returns>
401
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
402
            </returns>
403
        </member>
404
        <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
405
            <summary>
406
            Creates a custom object.
407
            </summary>
408
            <typeparam name="T">The object type to convert.</typeparam>
409
        </member>
410
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
411
            <summary>
412
            Writes the JSON representation of the object.
413
            </summary>
414
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
415
            <param name="value">The value.</param>
416
            <param name="serializer">The calling serializer.</param>
417
        </member>
418
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
419
            <summary>
420
            Reads the JSON representation of the object.
421
            </summary>
422
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
423
            <param name="objectType">Type of the object.</param>
424
            <param name="existingValue">The existing value of object being read.</param>
425
            <param name="serializer">The calling serializer.</param>
426
            <returns>The object value.</returns>
427
        </member>
428
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
429
            <summary>
430
            Creates an object which will then be populated by the serializer.
431
            </summary>
432
            <param name="objectType">Type of the object.</param>
433
            <returns>The created object.</returns>
434
        </member>
435
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
436
            <summary>
437
            Determines whether this instance can convert the specified object type.
438
            </summary>
439
            <param name="objectType">Type of the object.</param>
440
            <returns>
441
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
442
            </returns>
443
        </member>
444
        <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
445
            <summary>
446
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
447
            </summary>
448
            <value>
449
                    <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
450
            </value>
451
        </member>
452
        <member name="T:Newtonsoft.Json.Converters.DataSetConverter">
453
            <summary>
454
            Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.
455
            </summary>
456
        </member>
457
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
458
            <summary>
459
            Writes the JSON representation of the object.
460
            </summary>
461
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
462
            <param name="value">The value.</param>
463
            <param name="serializer">The calling serializer.</param>
464
        </member>
465
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
466
            <summary>
467
            Reads the JSON representation of the object.
468
            </summary>
469
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
470
            <param name="objectType">Type of the object.</param>
471
            <param name="existingValue">The existing value of object being read.</param>
472
            <param name="serializer">The calling serializer.</param>
473
            <returns>The object value.</returns>
474
        </member>
475
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
476
            <summary>
477
            Determines whether this instance can convert the specified value type.
478
            </summary>
479
            <param name="valueType">Type of the value.</param>
480
            <returns>
481
                    <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
482
            </returns>
483
        </member>
484
        <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
485
            <summary>
486
            Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
487
            </summary>
488
        </member>
489
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
490
            <summary>
491
            Writes the JSON representation of the object.
492
            </summary>
493
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
494
            <param name="value">The value.</param>
495
            <param name="serializer">The calling serializer.</param>
496
        </member>
497
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
498
            <summary>
499
            Reads the JSON representation of the object.
500
            </summary>
501
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
502
            <param name="objectType">Type of the object.</param>
503
            <param name="existingValue">The existing value of object being read.</param>
504
            <param name="serializer">The calling serializer.</param>
505
            <returns>The object value.</returns>
506
        </member>
507
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
508
            <summary>
509
            Determines whether this instance can convert the specified value type.
510
            </summary>
511
            <param name="valueType">Type of the value.</param>
512
            <returns>
513
                    <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
514
            </returns>
515
        </member>
516
        <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
517
            <summary>
518
            Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
519
            </summary>
520
        </member>
521
        <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">
522
            <summary>
523
            Determines whether this instance can convert the specified object type.
524
            </summary>
525
            <param name="objectType">Type of the object.</param>
526
            <returns>
527
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
528
            </returns>
529
        </member>
530
        <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter">
531
            <summary>
532
            Converts an Entity Framework <see cref="T:System.Data.EntityKeyMember"/> to and from JSON.
533
            </summary>
534
        </member>
535
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
536
            <summary>
537
            Writes the JSON representation of the object.
538
            </summary>
539
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
540
            <param name="value">The value.</param>
541
            <param name="serializer">The calling serializer.</param>
542
        </member>
543
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
544
            <summary>
545
            Reads the JSON representation of the object.
546
            </summary>
547
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
548
            <param name="objectType">Type of the object.</param>
549
            <param name="existingValue">The existing value of object being read.</param>
550
            <param name="serializer">The calling serializer.</param>
551
            <returns>The object value.</returns>
552
        </member>
553
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)">
554
            <summary>
555
            Determines whether this instance can convert the specified object type.
556
            </summary>
557
            <param name="objectType">Type of the object.</param>
558
            <returns>
559
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
560
            </returns>
561
        </member>
562
        <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
563
            <summary>
564
            Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. <c>"2008-04-12T12:53Z"</c>).
565
            </summary>
566
        </member>
567
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
568
            <summary>
569
            Gets or sets the date time styles used when converting a date to and from JSON.
570
            </summary>
571
            <value>The date time styles used when converting a date to and from JSON.</value>
572
        </member>
573
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
574
            <summary>
575
            Gets or sets the date time format used when converting a date to and from JSON.
576
            </summary>
577
            <value>The date time format used when converting a date to and from JSON.</value>
578
        </member>
579
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
580
            <summary>
581
            Gets or sets the culture used when converting a date to and from JSON.
582
            </summary>
583
            <value>The culture used when converting a date to and from JSON.</value>
584
        </member>
585
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
586
            <summary>
587
            Writes the JSON representation of the object.
588
            </summary>
589
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
590
            <param name="value">The value.</param>
591
            <param name="serializer">The calling serializer.</param>
592
        </member>
593
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
594
            <summary>
595
            Reads the JSON representation of the object.
596
            </summary>
597
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
598
            <param name="objectType">Type of the object.</param>
599
            <param name="existingValue">The existing value of object being read.</param>
600
            <param name="serializer">The calling serializer.</param>
601
            <returns>The object value.</returns>
602
        </member>
603
        <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
604
            <summary>
605
            Converts a <see cref="T:System.DateTime"/> to and from a JavaScript <c>Date</c> constructor (e.g. <c>new Date(52231943)</c>).
606
            </summary>
607
        </member>
608
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
609
            <summary>
610
            Writes the JSON representation of the object.
611
            </summary>
612
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
613
            <param name="value">The value.</param>
614
            <param name="serializer">The calling serializer.</param>
615
        </member>
616
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
617
            <summary>
618
            Reads the JSON representation of the object.
619
            </summary>
620
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
621
            <param name="objectType">Type of the object.</param>
622
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
623
            <param name="serializer">The calling serializer.</param>
624
            <returns>The object value.</returns>
625
        </member>
626
        <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
627
            <summary>
628
            Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
629
            </summary>
630
        </member>
631
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
632
            <summary>
633
            Writes the JSON representation of the object.
634
            </summary>
635
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
636
            <param name="value">The value.</param>
637
            <param name="serializer">The calling serializer.</param>
638
        </member>
639
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
640
            <summary>
641
            Reads the JSON representation of the object.
642
            </summary>
643
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
644
            <param name="objectType">Type of the object.</param>
645
            <param name="existingValue">The existing value of object being read.</param>
646
            <param name="serializer">The calling serializer.</param>
647
            <returns>The object value.</returns>
648
        </member>
649
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
650
            <summary>
651
            Determines whether this instance can convert the specified object type.
652
            </summary>
653
            <param name="objectType">Type of the object.</param>
654
            <returns>
655
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
656
            </returns>
657
        </member>
658
        <member name="T:Newtonsoft.Json.Converters.RegexConverter">
659
            <summary>
660
            Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
661
            </summary>
662
        </member>
663
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
664
            <summary>
665
            Writes the JSON representation of the object.
666
            </summary>
667
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
668
            <param name="value">The value.</param>
669
            <param name="serializer">The calling serializer.</param>
670
        </member>
671
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
672
            <summary>
673
            Reads the JSON representation of the object.
674
            </summary>
675
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
676
            <param name="objectType">Type of the object.</param>
677
            <param name="existingValue">The existing value of object being read.</param>
678
            <param name="serializer">The calling serializer.</param>
679
            <returns>The object value.</returns>
680
        </member>
681
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
682
            <summary>
683
            Determines whether this instance can convert the specified object type.
684
            </summary>
685
            <param name="objectType">Type of the object.</param>
686
            <returns>
687
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
688
            </returns>
689
        </member>
690
        <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
691
            <summary>
692
            Converts an <see cref="T:System.Enum"/> to and from its name string value.
693
            </summary>
694
        </member>
695
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
696
            <summary>
697
            Gets or sets a value indicating whether the written enum text should be camel case.
698
            </summary>
699
            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
700
        </member>
701
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
702
            <summary>
703
            Gets or sets a value indicating whether integer values are allowed when deserializing.
704
            </summary>
705
            <value><c>true</c> if integers are allowed when deserializing; otherwise, <c>false</c>.</value>
706
        </member>
707
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
708
            <summary>
709
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
710
            </summary>
711
        </member>
712
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor(System.Boolean)">
713
            <summary>
714
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
715
            </summary>
716
            <param name="camelCaseText"><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</param>
717
        </member>
718
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
719
            <summary>
720
            Writes the JSON representation of the object.
721
            </summary>
722
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
723
            <param name="value">The value.</param>
724
            <param name="serializer">The calling serializer.</param>
725
        </member>
726
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
727
            <summary>
728
            Reads the JSON representation of the object.
729
            </summary>
730
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
731
            <param name="objectType">Type of the object.</param>
732
            <param name="existingValue">The existing value of object being read.</param>
733
            <param name="serializer">The calling serializer.</param>
734
            <returns>The object value.</returns>
735
        </member>
736
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
737
            <summary>
738
            Determines whether this instance can convert the specified object type.
739
            </summary>
740
            <param name="objectType">Type of the object.</param>
741
            <returns>
742
            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
743
            </returns>
744
        </member>
745
        <member name="T:Newtonsoft.Json.Converters.VersionConverter">
746
            <summary>
747
            Converts a <see cref="T:System.Version"/> to and from a string (e.g. <c>"1.2.3.4"</c>).
748
            </summary>
749
        </member>
750
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
751
            <summary>
752
            Writes the JSON representation of the object.
753
            </summary>
754
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
755
            <param name="value">The value.</param>
756
            <param name="serializer">The calling serializer.</param>
757
        </member>
758
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
759
            <summary>
760
            Reads the JSON representation of the object.
761
            </summary>
762
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
763
            <param name="objectType">Type of the object.</param>
764
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
765
            <param name="serializer">The calling serializer.</param>
766
            <returns>The object value.</returns>
767
        </member>
768
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
769
            <summary>
770
            Determines whether this instance can convert the specified object type.
771
            </summary>
772
            <param name="objectType">Type of the object.</param>
773
            <returns>
774
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
775
            </returns>
776
        </member>
777
        <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
778
            <summary>
779
            Converts XML to and from JSON.
780
            </summary>
781
        </member>
782
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
783
            <summary>
784
            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produced multiple root elements.
785
            </summary>
786
            <value>The name of the deserialized root element.</value>
787
        </member>
788
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
789
            <summary>
790
            Gets or sets a flag to indicate whether to write the Json.NET array attribute.
791
            This attribute helps preserve arrays when converting the written XML back to JSON.
792
            </summary>
793
            <value><c>true</c> if the array attribute is written to the XML; otherwise, <c>false</c>.</value>
794
        </member>
795
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
796
            <summary>
797
            Gets or sets a value indicating whether to write the root JSON object.
798
            </summary>
799
            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
800
        </member>
801
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
802
            <summary>
803
            Writes the JSON representation of the object.
804
            </summary>
805
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
806
            <param name="serializer">The calling serializer.</param>
807
            <param name="value">The value.</param>
808
        </member>
809
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
810
            <summary>
811
            Reads the JSON representation of the object.
812
            </summary>
813
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
814
            <param name="objectType">Type of the object.</param>
815
            <param name="existingValue">The existing value of object being read.</param>
816
            <param name="serializer">The calling serializer.</param>
817
            <returns>The object value.</returns>
818
        </member>
819
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
820
            <summary>
821
            Checks if the <paramref name="attributeName"/> is a namespace attribute.
822
            </summary>
823
            <param name="attributeName">Attribute name to test.</param>
824
            <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
825
            <returns><c>true</c> if attribute name is for a namespace attribute, otherwise <c>false</c>.</returns>
826
        </member>
827
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
828
            <summary>
829
            Determines whether this instance can convert the specified value type.
830
            </summary>
831
            <param name="valueType">Type of the value.</param>
832
            <returns>
833
                    <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
834
            </returns>
835
        </member>
836
        <member name="T:Newtonsoft.Json.DateFormatHandling">
837
            <summary>
838
            Specifies how dates are formatted when writing JSON text.
839
            </summary>
840
        </member>
841
        <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
842
            <summary>
843
            Dates are written in the ISO 8601 format, e.g. <c>"2012-03-21T05:40Z"</c>.
844
            </summary>
845
        </member>
846
        <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
847
            <summary>
848
            Dates are written in the Microsoft JSON format, e.g. <c>"\/Date(1198908717056)\/"</c>.
849
            </summary>
850
        </member>
851
        <member name="T:Newtonsoft.Json.DateParseHandling">
852
            <summary>
853
            Specifies how date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed when reading JSON text.
854
            </summary>
855
        </member>
856
        <member name="F:Newtonsoft.Json.DateParseHandling.None">
857
            <summary>
858
            Date formatted strings are not parsed to a date type and are read as strings.
859
            </summary>
860
        </member>
861
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
862
            <summary>
863
            Date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.
864
            </summary>
865
        </member>
866
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
867
            <summary>
868
            Date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"/>.
869
            </summary>
870
        </member>
871
        <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
872
            <summary>
873
            Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
874
            </summary>
875
        </member>
876
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
877
            <summary>
878
            Treat as local time. If the <see cref="T:System.DateTime"/> object represents a Coordinated Universal Time (UTC), it is converted to the local time.
879
            </summary>
880
        </member>
881
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
882
            <summary>
883
            Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
884
            </summary>
885
        </member>
886
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
887
            <summary>
888
            Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
889
            If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
890
            </summary>
891
        </member>
892
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
893
            <summary>
894
            Time zone information should be preserved when converting.
895
            </summary>
896
        </member>
897
        <member name="T:Newtonsoft.Json.DefaultValueHandling">
898
            <summary>
899
            Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
900
            </summary>
901
            <example>
902
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class" />
903
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example" />
904
            </example>
905
        </member>
906
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
907
            <summary>
908
            Include members where the member value is the same as the member's default value when serializing objects.
909
            Included members are written to JSON. Has no effect when deserializing.
910
            </summary>
911
        </member>
912
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
913
            <summary>
914
            Ignore members where the member value is the same as the member's default value when serializing objects
915
            so that it is not written to JSON.
916
            This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,
917
            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
918
            placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
919
            </summary>
920
        </member>
921
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
922
            <summary>
923
            Members with a default value but no JSON will be set to their default value when deserializing.
924
            </summary>
925
        </member>
926
        <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
927
            <summary>
928
            Ignore members where the member value is the same as the member's default value when serializing objects
929
            and set members to their default value when deserializing.
930
            </summary>
931
        </member>
932
        <member name="T:Newtonsoft.Json.FloatFormatHandling">
933
            <summary>
934
            Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
935
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
936
            </summary>
937
        </member>
938
        <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
939
            <summary>
940
            Write special floating point values as strings in JSON, e.g. <c>"NaN"</c>, <c>"Infinity"</c>, <c>"-Infinity"</c>.
941
            </summary>
942
        </member>
943
        <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
944
            <summary>
945
            Write special floating point values as symbols in JSON, e.g. <c>NaN</c>, <c>Infinity</c>, <c>-Infinity</c>.
946
            Note that this will produce non-valid JSON.
947
            </summary>
948
        </member>
949
        <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
950
            <summary>
951
            Write special floating point values as the property's default value in JSON, e.g. 0.0 for a <see cref="T:System.Double"/> property, <c>null</c> for a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> property.
952
            </summary>
953
        </member>
954
        <member name="T:Newtonsoft.Json.FloatParseHandling">
955
            <summary>
956
            Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
957
            </summary>
958
        </member>
959
        <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
960
            <summary>
961
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
962
            </summary>
963
        </member>
964
        <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
965
            <summary>
966
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
967
            </summary>
968
        </member>
969
        <member name="T:Newtonsoft.Json.Formatting">
970
            <summary>
971
            Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
972
            </summary>
973
        </member>
974
        <member name="F:Newtonsoft.Json.Formatting.None">
975
            <summary>
976
            No special formatting is applied. This is the default.
977
            </summary>
978
        </member>
979
        <member name="F:Newtonsoft.Json.Formatting.Indented">
980
            <summary>
981
            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.
982
            </summary>
983
        </member>
984
        <member name="T:Newtonsoft.Json.IArrayPool`1">
985
            <summary>
986
            Provides an interface for using pooled arrays.
987
            </summary>
988
            <typeparam name="T">The array type content.</typeparam>
989
        </member>
990
        <member name="M:Newtonsoft.Json.IArrayPool`1.Rent(System.Int32)">
991
            <summary>
992
            Rent an array from the pool. This array must be returned when it is no longer needed.
993
            </summary>
994
            <param name="minimumLength">The minimum required length of the array. The returned array may be longer.</param>
995
            <returns>The rented array from the pool. This array must be returned when it is no longer needed.</returns>
996
        </member>
997
        <member name="M:Newtonsoft.Json.IArrayPool`1.Return(`0[])">
998
            <summary>
999
            Return an array to the pool.
1000
            </summary>
1001
            <param name="array">The array that is being returned.</param>
1002
        </member>
1003
        <member name="T:Newtonsoft.Json.IJsonLineInfo">
1004
            <summary>
1005
            Provides an interface to enable a class to return line and position information.
1006
            </summary>
1007
        </member>
1008
        <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
1009
            <summary>
1010
            Gets a value indicating whether the class can return line information.
1011
            </summary>
1012
            <returns>
1013
                    <c>true</c> if <see cref="P:Newtonsoft.Json.IJsonLineInfo.LineNumber"/> and <see cref="P:Newtonsoft.Json.IJsonLineInfo.LinePosition"/> can be provided; otherwise, <c>false</c>.
1014
            </returns>
1015
        </member>
1016
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
1017
            <summary>
1018
            Gets the current line number.
1019
            </summary>
1020
            <value>The current line number or 0 if no line information is available (for example, when <see cref="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo"/> returns <c>false</c>).</value>
1021
        </member>
1022
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
1023
            <summary>
1024
            Gets the current line position.
1025
            </summary>
1026
            <value>The current line position or 0 if no line information is available (for example, when <see cref="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo"/> returns <c>false</c>).</value>
1027
        </member>
1028
        <member name="T:Newtonsoft.Json.JsonArrayAttribute">
1029
            <summary>
1030
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
1031
            </summary>
1032
        </member>
1033
        <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
1034
            <summary>
1035
            Gets or sets a value indicating whether null items are allowed in the collection.
1036
            </summary>
1037
            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
1038
        </member>
1039
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
1040
            <summary>
1041
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
1042
            </summary>
1043
        </member>
1044
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
1045
            <summary>
1046
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items.
1047
            </summary>
1048
            <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
1049
        </member>
1050
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
1051
            <summary>
1052
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
1053
            </summary>
1054
            <param name="id">The container Id.</param>
1055
        </member>
1056
        <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1057
            <summary>
1058
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1059
            </summary>
1060
        </member>
1061
        <member name="T:Newtonsoft.Json.JsonContainerAttribute">
1062
            <summary>
1063
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
1064
            </summary>
1065
        </member>
1066
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
1067
            <summary>
1068
            Gets or sets the id.
1069
            </summary>
1070
            <value>The id.</value>
1071
        </member>
1072
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
1073
            <summary>
1074
            Gets or sets the title.
1075
            </summary>
1076
            <value>The title.</value>
1077
        </member>
1078
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
1079
            <summary>
1080
            Gets or sets the description.
1081
            </summary>
1082
            <value>The description.</value>
1083
        </member>
1084
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
1085
            <summary>
1086
            Gets or sets the collection's items converter.
1087
            </summary>
1088
            <value>The collection's items converter.</value>
1089
        </member>
1090
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters">
1091
            <summary>
1092
            The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/> described by <see cref="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType"/>.
1093
            If <c>null</c>, the default constructor is used.
1094
            When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.JsonConverter"/> that exactly matches the number,
1095
            order, and type of these parameters.
1096
            </summary>
1097
            <example>
1098
            <code>
1099
            [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
1100
            </code>
1101
            </example>
1102
        </member>
1103
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyType">
1104
            <summary>
1105
            Gets or sets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.
1106
            </summary>
1107
            <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.</value>
1108
        </member>
1109
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyParameters">
1110
            <summary>
1111
            The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> described by <see cref="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyType"/>.
1112
            If <c>null</c>, the default constructor is used.
1113
            When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> that exactly matches the number,
1114
            order, and type of these parameters.
1115
            </summary>
1116
            <example>
1117
            <code>
1118
            [JsonContainer(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })]
1119
            </code>
1120
            </example>
1121
        </member>
1122
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
1123
            <summary>
1124
            Gets or sets a value that indicates whether to preserve object references.
1125
            </summary>
1126
            <value>
1127
                    <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
1128
            </value>
1129
        </member>
1130
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
1131
            <summary>
1132
            Gets or sets a value that indicates whether to preserve collection's items references.
1133
            </summary>
1134
            <value>
1135
                    <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
1136
            </value>
1137
        </member>
1138
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
1139
            <summary>
1140
            Gets or sets the reference loop handling used when serializing the collection's items.
1141
            </summary>
1142
            <value>The reference loop handling.</value>
1143
        </member>
1144
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
1145
            <summary>
1146
            Gets or sets the type name handling used when serializing the collection's items.
1147
            </summary>
1148
            <value>The type name handling.</value>
1149
        </member>
1150
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
1151
            <summary>
1152
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
1153
            </summary>
1154
        </member>
1155
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
1156
            <summary>
1157
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
1158
            </summary>
1159
            <param name="id">The container Id.</param>
1160
        </member>
1161
        <member name="T:Newtonsoft.Json.JsonConvert">
1162
            <summary>
1163
            Provides methods for converting between .NET types and JSON types.
1164
            </summary>
1165
            <example>
1166
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
1167
            </example>
1168
        </member>
1169
        <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
1170
            <summary>
1171
            Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1172
            Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
1173
            and <see cref="M:Newtonsoft.Json.Linq.JToken.ToObject``1"/> and <see cref="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)"/> on <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1174
            To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
1175
            <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
1176
            </summary>
1177
        </member>
1178
        <member name="F:Newtonsoft.Json.JsonConvert.True">
1179
            <summary>
1180
            Represents JavaScript's boolean value <c>true</c> as a string. This field is read-only.
1181
            </summary>
1182
        </member>
1183
        <member name="F:Newtonsoft.Json.JsonConvert.False">
1184
            <summary>
1185
            Represents JavaScript's boolean value <c>false</c> as a string. This field is read-only.
1186
            </summary>
1187
        </member>
1188
        <member name="F:Newtonsoft.Json.JsonConvert.Null">
1189
            <summary>
1190
            Represents JavaScript's <c>null</c> as a string. This field is read-only.
1191
            </summary>
1192
        </member>
1193
        <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
1194
            <summary>
1195
            Represents JavaScript's <c>undefined</c> as a string. This field is read-only.
1196
            </summary>
1197
        </member>
1198
        <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
1199
            <summary>
1200
            Represents JavaScript's positive infinity as a string. This field is read-only.
1201
            </summary>
1202
        </member>
1203
        <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
1204
            <summary>
1205
            Represents JavaScript's negative infinity as a string. This field is read-only.
1206
            </summary>
1207
        </member>
1208
        <member name="F:Newtonsoft.Json.JsonConvert.NaN">
1209
            <summary>
1210
            Represents JavaScript's <c>NaN</c> as a string. This field is read-only.
1211
            </summary>
1212
        </member>
1213
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
1214
            <summary>
1215
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
1216
            </summary>
1217
            <param name="value">The value to convert.</param>
1218
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
1219
        </member>
1220
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
1221
            <summary>
1222
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
1223
            </summary>
1224
            <param name="value">The value to convert.</param>
1225
            <param name="format">The format the date will be converted to.</param>
1226
            <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
1227
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
1228
        </member>
1229
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
1230
            <summary>
1231
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
1232
            </summary>
1233
            <param name="value">The value to convert.</param>
1234
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
1235
        </member>
1236
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
1237
            <summary>
1238
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
1239
            </summary>
1240
            <param name="value">The value to convert.</param>
1241
            <param name="format">The format the date will be converted to.</param>
1242
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
1243
        </member>
1244
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
1245
            <summary>
1246
            Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
1247
            </summary>
1248
            <param name="value">The value to convert.</param>
1249
            <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
1250
        </member>
1251
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
1252
            <summary>
1253
            Converts the <see cref="T:System.Char"/> to its JSON string representation.
1254
            </summary>
1255
            <param name="value">The value to convert.</param>
1256
            <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
1257
        </member>
1258
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
1259
            <summary>
1260
            Converts the <see cref="T:System.Enum"/> to its JSON string representation.
1261
            </summary>
1262
            <param name="value">The value to convert.</param>
1263
            <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
1264
        </member>
1265
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
1266
            <summary>
1267
            Converts the <see cref="T:System.Int32"/> to its JSON string representation.
1268
            </summary>
1269
            <param name="value">The value to convert.</param>
1270
            <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
1271
        </member>
1272
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
1273
            <summary>
1274
            Converts the <see cref="T:System.Int16"/> to its JSON string representation.
1275
            </summary>
1276
            <param name="value">The value to convert.</param>
1277
            <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
1278
        </member>
1279
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
1280
            <summary>
1281
            Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
1282
            </summary>
1283
            <param name="value">The value to convert.</param>
1284
            <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
1285
        </member>
1286
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
1287
            <summary>
1288
            Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
1289
            </summary>
1290
            <param name="value">The value to convert.</param>
1291
            <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
1292
        </member>
1293
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
1294
            <summary>
1295
            Converts the <see cref="T:System.Int64"/>  to its JSON string representation.
1296
            </summary>
1297
            <param name="value">The value to convert.</param>
1298
            <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
1299
        </member>
1300
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
1301
            <summary>
1302
            Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
1303
            </summary>
1304
            <param name="value">The value to convert.</param>
1305
            <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
1306
        </member>
1307
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
1308
            <summary>
1309
            Converts the <see cref="T:System.Single"/> to its JSON string representation.
1310
            </summary>
1311
            <param name="value">The value to convert.</param>
1312
            <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
1313
        </member>
1314
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
1315
            <summary>
1316
            Converts the <see cref="T:System.Double"/> to its JSON string representation.
1317
            </summary>
1318
            <param name="value">The value to convert.</param>
1319
            <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
1320
        </member>
1321
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
1322
            <summary>
1323
            Converts the <see cref="T:System.Byte"/> to its JSON string representation.
1324
            </summary>
1325
            <param name="value">The value to convert.</param>
1326
            <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
1327
        </member>
1328
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
1329
            <summary>
1330
            Converts the <see cref="T:System.SByte"/> to its JSON string representation.
1331
            </summary>
1332
            <param name="value">The value to convert.</param>
1333
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
1334
        </member>
1335
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
1336
            <summary>
1337
            Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
1338
            </summary>
1339
            <param name="value">The value to convert.</param>
1340
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
1341
        </member>
1342
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
1343
            <summary>
1344
            Converts the <see cref="T:System.Guid"/> to its JSON string representation.
1345
            </summary>
1346
            <param name="value">The value to convert.</param>
1347
            <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
1348
        </member>
1349
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
1350
            <summary>
1351
            Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
1352
            </summary>
1353
            <param name="value">The value to convert.</param>
1354
            <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
1355
        </member>
1356
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
1357
            <summary>
1358
            Converts the <see cref="T:System.Uri"/> to its JSON string representation.
1359
            </summary>
1360
            <param name="value">The value to convert.</param>
1361
            <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
1362
        </member>
1363
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
1364
            <summary>
1365
            Converts the <see cref="T:System.String"/> to its JSON string representation.
1366
            </summary>
1367
            <param name="value">The value to convert.</param>
1368
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
1369
        </member>
1370
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
1371
            <summary>
1372
            Converts the <see cref="T:System.String"/> to its JSON string representation.
1373
            </summary>
1374
            <param name="value">The value to convert.</param>
1375
            <param name="delimiter">The string delimiter character.</param>
1376
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
1377
        </member>
1378
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)">
1379
            <summary>
1380
            Converts the <see cref="T:System.String"/> to its JSON string representation.
1381
            </summary>
1382
            <param name="value">The value to convert.</param>
1383
            <param name="delimiter">The string delimiter character.</param>
1384
            <param name="stringEscapeHandling">The string escape handling.</param>
1385
            <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
1386
        </member>
1387
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
1388
            <summary>
1389
            Converts the <see cref="T:System.Object"/> to its JSON string representation.
1390
            </summary>
1391
            <param name="value">The value to convert.</param>
1392
            <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
1393
        </member>
1394
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
1395
            <summary>
1396
            Serializes the specified object to a JSON string.
1397
            </summary>
1398
            <param name="value">The object to serialize.</param>
1399
            <returns>A JSON string representation of the object.</returns>
1400
        </member>
1401
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
1402
            <summary>
1403
            Serializes the specified object to a JSON string using formatting.
1404
            </summary>
1405
            <param name="value">The object to serialize.</param>
1406
            <param name="formatting">Indicates how the output should be formatted.</param>
1407
            <returns>
1408
            A JSON string representation of the object.
1409
            </returns>
1410
        </member>
1411
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
1412
            <summary>
1413
            Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1414
            </summary>
1415
            <param name="value">The object to serialize.</param>
1416
            <param name="converters">A collection of converters used while serializing.</param>
1417
            <returns>A JSON string representation of the object.</returns>
1418
        </member>
1419
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
1420
            <summary>
1421
            Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1422
            </summary>
1423
            <param name="value">The object to serialize.</param>
1424
            <param name="formatting">Indicates how the output should be formatted.</param>
1425
            <param name="converters">A collection of converters used while serializing.</param>
1426
            <returns>A JSON string representation of the object.</returns>
1427
        </member>
1428
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
1429
            <summary>
1430
            Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1431
            </summary>
1432
            <param name="value">The object to serialize.</param>
1433
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
1434
            If this is <c>null</c>, default serialization settings will be used.</param>
1435
            <returns>
1436
            A JSON string representation of the object.
1437
            </returns>
1438
        </member>
1439
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
1440
            <summary>
1441
            Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1442
            </summary>
1443
            <param name="value">The object to serialize.</param>
1444
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
1445
            If this is <c>null</c>, default serialization settings will be used.</param>
1446
            <param name="type">
1447
            The type of the value being serialized.
1448
            This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is <see cref="F:Newtonsoft.Json.TypeNameHandling.Auto"/> to write out the type name if the type of the value does not match.
1449
            Specifying the type is optional.
1450
            </param>
1451
            <returns>
1452
            A JSON string representation of the object.
1453
            </returns>
1454
        </member>
1455
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
1456
            <summary>
1457
            Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1458
            </summary>
1459
            <param name="value">The object to serialize.</param>
1460
            <param name="formatting">Indicates how the output should be formatted.</param>
1461
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
1462
            If this is <c>null</c>, default serialization settings will be used.</param>
1463
            <returns>
1464
            A JSON string representation of the object.
1465
            </returns>
1466
        </member>
1467
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
1468
            <summary>
1469
            Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1470
            </summary>
1471
            <param name="value">The object to serialize.</param>
1472
            <param name="formatting">Indicates how the output should be formatted.</param>
1473
            <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
1474
            If this is <c>null</c>, default serialization settings will be used.</param>
1475
            <param name="type">
1476
            The type of the value being serialized.
1477
            This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is <see cref="F:Newtonsoft.Json.TypeNameHandling.Auto"/> to write out the type name if the type of the value does not match.
1478
            Specifying the type is optional.
1479
            </param>
1480
            <returns>
1481
            A JSON string representation of the object.
1482
            </returns>
1483
        </member>
1484
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
1485
            <summary>
1486
            Deserializes the JSON to a .NET object.
1487
            </summary>
1488
            <param name="value">The JSON to deserialize.</param>
1489
            <returns>The deserialized object from the JSON string.</returns>
1490
        </member>
1491
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
1492
            <summary>
1493
            Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1494
            </summary>
1495
            <param name="value">The JSON to deserialize.</param>
1496
            <param name="settings">
1497
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
1498
            If this is <c>null</c>, default serialization settings will be used.
1499
            </param>
1500
            <returns>The deserialized object from the JSON string.</returns>
1501
        </member>
1502
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
1503
            <summary>
1504
            Deserializes the JSON to the specified .NET type.
1505
            </summary>
1506
            <param name="value">The JSON to deserialize.</param>
1507
            <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
1508
            <returns>The deserialized object from the JSON string.</returns>
1509
        </member>
1510
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
1511
            <summary>
1512
            Deserializes the JSON to the specified .NET type.
1513
            </summary>
1514
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
1515
            <param name="value">The JSON to deserialize.</param>
1516
            <returns>The deserialized object from the JSON string.</returns>
1517
        </member>
1518
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
1519
            <summary>
1520
            Deserializes the JSON to the given anonymous type.
1521
            </summary>
1522
            <typeparam name="T">
1523
            The anonymous type to deserialize to. This can't be specified
1524
            traditionally and must be inferred from the anonymous type passed
1525
            as a parameter.
1526
            </typeparam>
1527
            <param name="value">The JSON to deserialize.</param>
1528
            <param name="anonymousTypeObject">The anonymous type object.</param>
1529
            <returns>The deserialized anonymous type from the JSON string.</returns>
1530
        </member>
1531
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
1532
            <summary>
1533
            Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1534
            </summary>
1535
            <typeparam name="T">
1536
            The anonymous type to deserialize to. This can't be specified
1537
            traditionally and must be inferred from the anonymous type passed
1538
            as a parameter.
1539
            </typeparam>
1540
            <param name="value">The JSON to deserialize.</param>
1541
            <param name="anonymousTypeObject">The anonymous type object.</param>
1542
            <param name="settings">
1543
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
1544
            If this is <c>null</c>, default serialization settings will be used.
1545
            </param>
1546
            <returns>The deserialized anonymous type from the JSON string.</returns>
1547
        </member>
1548
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
1549
            <summary>
1550
            Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1551
            </summary>
1552
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
1553
            <param name="value">The JSON to deserialize.</param>
1554
            <param name="converters">Converters to use while deserializing.</param>
1555
            <returns>The deserialized object from the JSON string.</returns>
1556
        </member>
1557
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
1558
            <summary>
1559
            Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1560
            </summary>
1561
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
1562
            <param name="value">The object to deserialize.</param>
1563
            <param name="settings">
1564
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
1565
            If this is <c>null</c>, default serialization settings will be used.
1566
            </param>
1567
            <returns>The deserialized object from the JSON string.</returns>
1568
        </member>
1569
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
1570
            <summary>
1571
            Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1572
            </summary>
1573
            <param name="value">The JSON to deserialize.</param>
1574
            <param name="type">The type of the object to deserialize.</param>
1575
            <param name="converters">Converters to use while deserializing.</param>
1576
            <returns>The deserialized object from the JSON string.</returns>
1577
        </member>
1578
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
1579
            <summary>
1580
            Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1581
            </summary>
1582
            <param name="value">The JSON to deserialize.</param>
1583
            <param name="type">The type of the object to deserialize to.</param>
1584
            <param name="settings">
1585
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
1586
            If this is <c>null</c>, default serialization settings will be used.
1587
            </param>
1588
            <returns>The deserialized object from the JSON string.</returns>
1589
        </member>
1590
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
1591
            <summary>
1592
            Populates the object with values from the JSON string.
1593
            </summary>
1594
            <param name="value">The JSON to populate values from.</param>
1595
            <param name="target">The target object to populate values onto.</param>
1596
        </member>
1597
        <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
1598
            <summary>
1599
            Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1600
            </summary>
1601
            <param name="value">The JSON to populate values from.</param>
1602
            <param name="target">The target object to populate values onto.</param>
1603
            <param name="settings">
1604
            The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
1605
            If this is <c>null</c>, default serialization settings will be used.
1606
            </param>
1607
        </member>
1608
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
1609
            <summary>
1610
            Serializes the <see cref="T:System.Xml.XmlNode"/> to a JSON string.
1611
            </summary>
1612
            <param name="node">The node to serialize.</param>
1613
            <returns>A JSON string of the <see cref="T:System.Xml.XmlNode"/>.</returns>
1614
        </member>
1615
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
1616
            <summary>
1617
            Serializes the <see cref="T:System.Xml.XmlNode"/> to a JSON string using formatting.
1618
            </summary>
1619
            <param name="node">The node to serialize.</param>
1620
            <param name="formatting">Indicates how the output should be formatted.</param>
1621
            <returns>A JSON string of the <see cref="T:System.Xml.XmlNode"/>.</returns>
1622
        </member>
1623
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
1624
            <summary>
1625
            Serializes the <see cref="T:System.Xml.XmlNode"/> to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
1626
            </summary>
1627
            <param name="node">The node to serialize.</param>
1628
            <param name="formatting">Indicates how the output should be formatted.</param>
1629
            <param name="omitRootObject">Omits writing the root object.</param>
1630
            <returns>A JSON string of the <see cref="T:System.Xml.XmlNode"/>.</returns>
1631
        </member>
1632
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
1633
            <summary>
1634
            Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string.
1635
            </summary>
1636
            <param name="value">The JSON string.</param>
1637
            <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns>
1638
        </member>
1639
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
1640
            <summary>
1641
            Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>.
1642
            </summary>
1643
            <param name="value">The JSON string.</param>
1644
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
1645
            <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns>
1646
        </member>
1647
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
1648
            <summary>
1649
            Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>
1650
            and writes a Json.NET array attribute for collections.
1651
            </summary>
1652
            <param name="value">The JSON string.</param>
1653
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
1654
            <param name="writeArrayAttribute">
1655
            A flag to indicate whether to write the Json.NET array attribute.
1656
            This attribute helps preserve arrays when converting the written XML back to JSON.
1657
            </param>
1658
            <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns>
1659
        </member>
1660
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
1661
            <summary>
1662
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
1663
            </summary>
1664
            <param name="node">The node to convert to JSON.</param>
1665
            <returns>A JSON string of the <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1666
        </member>
1667
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
1668
            <summary>
1669
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting.
1670
            </summary>
1671
            <param name="node">The node to convert to JSON.</param>
1672
            <param name="formatting">Indicates how the output should be formatted.</param>
1673
            <returns>A JSON string of the <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1674
        </member>
1675
        <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
1676
            <summary>
1677
            Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
1678
            </summary>
1679
            <param name="node">The node to serialize.</param>
1680
            <param name="formatting">Indicates how the output should be formatted.</param>
1681
            <param name="omitRootObject">Omits writing the root object.</param>
1682
            <returns>A JSON string of the <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1683
        </member>
1684
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
1685
            <summary>
1686
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.
1687
            </summary>
1688
            <param name="value">The JSON string.</param>
1689
            <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1690
        </member>
1691
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
1692
            <summary>
1693
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>.
1694
            </summary>
1695
            <param name="value">The JSON string.</param>
1696
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
1697
            <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1698
        </member>
1699
        <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
1700
            <summary>
1701
            Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>
1702
            and writes a Json.NET array attribute for collections.
1703
            </summary>
1704
            <param name="value">The JSON string.</param>
1705
            <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
1706
            <param name="writeArrayAttribute">
1707
            A flag to indicate whether to write the Json.NET array attribute.
1708
            This attribute helps preserve arrays when converting the written XML back to JSON.
1709
            </param>
1710
            <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1711
        </member>
1712
        <member name="T:Newtonsoft.Json.JsonConverter">
1713
            <summary>
1714
            Converts an object to and from JSON.
1715
            </summary>
1716
        </member>
1717
        <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1718
            <summary>
1719
            Writes the JSON representation of the object.
1720
            </summary>
1721
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1722
            <param name="value">The value.</param>
1723
            <param name="serializer">The calling serializer.</param>
1724
        </member>
1725
        <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1726
            <summary>
1727
            Reads the JSON representation of the object.
1728
            </summary>
1729
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1730
            <param name="objectType">Type of the object.</param>
1731
            <param name="existingValue">The existing value of object being read.</param>
1732
            <param name="serializer">The calling serializer.</param>
1733
            <returns>The object value.</returns>
1734
        </member>
1735
        <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
1736
            <summary>
1737
            Determines whether this instance can convert the specified object type.
1738
            </summary>
1739
            <param name="objectType">Type of the object.</param>
1740
            <returns>
1741
                    <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1742
            </returns>
1743
        </member>
1744
        <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
1745
            <summary>
1746
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
1747
            </summary>
1748
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
1749
        </member>
1750
        <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
1751
            <summary>
1752
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1753
            </summary>
1754
            <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
1755
        </member>
1756
        <member name="T:Newtonsoft.Json.JsonConverterAttribute">
1757
            <summary>
1758
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
1759
            </summary>
1760
        </member>
1761
        <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
1762
            <summary>
1763
            Gets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1764
            </summary>
1765
            <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.</value>
1766
        </member>
1767
        <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters">
1768
            <summary>
1769
            The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/> described by <see cref="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType"/>.
1770
            If <c>null</c>, the default constructor is used.
1771
            </summary>
1772
        </member>
1773
        <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
1774
            <summary>
1775
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
1776
            </summary>
1777
            <param name="converterType">Type of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.</param>
1778
        </member>
1779
        <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])">
1780
            <summary>
1781
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
1782
            </summary>
1783
            <param name="converterType">Type of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.</param>
1784
            <param name="converterParameters">Parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/>. Can be <c>null</c>.</param>
1785
        </member>
1786
        <member name="T:Newtonsoft.Json.JsonConverterCollection">
1787
            <summary>
1788
            Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1789
            </summary>
1790
        </member>
1791
        <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
1792
            <summary>
1793
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
1794
            </summary>
1795
        </member>
1796
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
1797
            <summary>
1798
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
1799
            </summary>
1800
        </member>
1801
        <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
1802
            <summary>
1803
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
1804
            </summary>
1805
            <param name="id">The container Id.</param>
1806
        </member>
1807
        <member name="T:Newtonsoft.Json.JsonException">
1808
            <summary>
1809
            The exception thrown when an error occurs during JSON serialization or deserialization.
1810
            </summary>
1811
        </member>
1812
        <member name="M:Newtonsoft.Json.JsonException.#ctor">
1813
            <summary>
1814
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1815
            </summary>
1816
        </member>
1817
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
1818
            <summary>
1819
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1820
            with a specified error message.
1821
            </summary>
1822
            <param name="message">The error message that explains the reason for the exception.</param>
1823
        </member>
1824
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
1825
            <summary>
1826
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1827
            with a specified error message and a reference to the inner exception that is the cause of this exception.
1828
            </summary>
1829
            <param name="message">The error message that explains the reason for the exception.</param>
1830
            <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
1831
        </member>
1832
        <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1833
            <summary>
1834
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1835
            </summary>
1836
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
1837
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
1838
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is <c>null</c>.</exception>
1839
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is <c>null</c> or <see cref="P:System.Exception.HResult"/> is zero (0).</exception>
1840
        </member>
1841
        <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
1842
            <summary>
1843
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection
1844
            and write values during serialization.
1845
            </summary>
1846
        </member>
1847
        <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
1848
            <summary>
1849
            Gets or sets a value that indicates whether to write extension data when serializing the object.
1850
            </summary>
1851
            <value>
1852
                    <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1853
            </value>
1854
        </member>
1855
        <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
1856
            <summary>
1857
            Gets or sets a value that indicates whether to read extension data when deserializing the object.
1858
            </summary>
1859
            <value>
1860
                    <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1861
            </value>
1862
        </member>
1863
        <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
1864
            <summary>
1865
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.
1866
            </summary>
1867
        </member>
1868
        <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
1869
            <summary>
1870
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
1871
            </summary>
1872
        </member>
1873
        <member name="T:Newtonsoft.Json.JsonObjectAttribute">
1874
            <summary>
1875
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
1876
            </summary>
1877
        </member>
1878
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
1879
            <summary>
1880
            Gets or sets the member serialization.
1881
            </summary>
1882
            <value>The member serialization.</value>
1883
        </member>
1884
        <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
1885
            <summary>
1886
            Gets or sets a value that indicates whether the object's properties are required.
1887
            </summary>
1888
            <value>
1889
                    A value indicating whether the object's properties are required.
1890
            </value>
1891
        </member>
1892
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
1893
            <summary>
1894
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
1895
            </summary>
1896
        </member>
1897
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
1898
            <summary>
1899
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
1900
            </summary>
1901
            <param name="memberSerialization">The member serialization.</param>
1902
        </member>
1903
        <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
1904
            <summary>
1905
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
1906
            </summary>
1907
            <param name="id">The container Id.</param>
1908
        </member>
1909
        <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
1910
            <summary>
1911
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
1912
            </summary>
1913
        </member>
1914
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
1915
            <summary>
1916
            Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> used when serializing the property's collection items.
1917
            </summary>
1918
            <value>The collection's items <see cref="T:Newtonsoft.Json.JsonConverter"/>.</value>
1919
        </member>
1920
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterParameters">
1921
            <summary>
1922
            The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/> described by <see cref="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType"/>.
1923
            If <c>null</c>, the default constructor is used.
1924
            When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.JsonConverter"/> that exactly matches the number,
1925
            order, and type of these parameters.
1926
            </summary>
1927
            <example>
1928
            <code>
1929
            [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
1930
            </code>
1931
            </example>
1932
        </member>
1933
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NamingStrategyType">
1934
            <summary>
1935
            Gets or sets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.
1936
            </summary>
1937
            <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.</value>
1938
        </member>
1939
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NamingStrategyParameters">
1940
            <summary>
1941
            The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> described by <see cref="P:Newtonsoft.Json.JsonPropertyAttribute.NamingStrategyType"/>.
1942
            If <c>null</c>, the default constructor is used.
1943
            When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> that exactly matches the number,
1944
            order, and type of these parameters.
1945
            </summary>
1946
            <example>
1947
            <code>
1948
            [JsonProperty(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })]
1949
            </code>
1950
            </example>
1951
        </member>
1952
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
1953
            <summary>
1954
            Gets or sets the null value handling used when serializing this property.
1955
            </summary>
1956
            <value>The null value handling.</value>
1957
        </member>
1958
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
1959
            <summary>
1960
            Gets or sets the default value handling used when serializing this property.
1961
            </summary>
1962
            <value>The default value handling.</value>
1963
        </member>
1964
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
1965
            <summary>
1966
            Gets or sets the reference loop handling used when serializing this property.
1967
            </summary>
1968
            <value>The reference loop handling.</value>
1969
        </member>
1970
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
1971
            <summary>
1972
            Gets or sets the object creation handling used when deserializing this property.
1973
            </summary>
1974
            <value>The object creation handling.</value>
1975
        </member>
1976
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
1977
            <summary>
1978
            Gets or sets the type name handling used when serializing this property.
1979
            </summary>
1980
            <value>The type name handling.</value>
1981
        </member>
1982
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
1983
            <summary>
1984
            Gets or sets whether this property's value is serialized as a reference.
1985
            </summary>
1986
            <value>Whether this property's value is serialized as a reference.</value>
1987
        </member>
1988
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
1989
            <summary>
1990
            Gets or sets the order of serialization of a member.
1991
            </summary>
1992
            <value>The numeric order of serialization.</value>
1993
        </member>
1994
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
1995
            <summary>
1996
            Gets or sets a value indicating whether this property is required.
1997
            </summary>
1998
            <value>
1999
                    A value indicating whether this property is required.
2000
            </value>
2001
        </member>
2002
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
2003
            <summary>
2004
            Gets or sets the name of the property.
2005
            </summary>
2006
            <value>The name of the property.</value>
2007
        </member>
2008
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
2009
            <summary>
2010
            Gets or sets the reference loop handling used when serializing the property's collection items.
2011
            </summary>
2012
            <value>The collection's items reference loop handling.</value>
2013
        </member>
2014
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
2015
            <summary>
2016
            Gets or sets the type name handling used when serializing the property's collection items.
2017
            </summary>
2018
            <value>The collection's items type name handling.</value>
2019
        </member>
2020
        <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
2021
            <summary>
2022
            Gets or sets whether this property's collection items are serialized as a reference.
2023
            </summary>
2024
            <value>Whether this property's collection items are serialized as a reference.</value>
2025
        </member>
2026
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
2027
            <summary>
2028
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
2029
            </summary>
2030
        </member>
2031
        <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
2032
            <summary>
2033
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
2034
            </summary>
2035
            <param name="propertyName">Name of the property.</param>
2036
        </member>
2037
        <member name="T:Newtonsoft.Json.JsonReader">
2038
            <summary>
2039
            Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
2040
            </summary>
2041
        </member>
2042
        <member name="T:Newtonsoft.Json.JsonReader.State">
2043
            <summary>
2044
            Specifies the state of the reader.
2045
            </summary>
2046
        </member>
2047
        <member name="F:Newtonsoft.Json.JsonReader.State.Start">
2048
            <summary>
2049
            A <see cref="T:Newtonsoft.Json.JsonReader"/> read method has not been called.
2050
            </summary>
2051
        </member>
2052
        <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
2053
            <summary>
2054
            The end of the file has been reached successfully.
2055
            </summary>
2056
        </member>
2057
        <member name="F:Newtonsoft.Json.JsonReader.State.Property">
2058
            <summary>
2059
            Reader is at a property.
2060
            </summary>
2061
        </member>
2062
        <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
2063
            <summary>
2064
            Reader is at the start of an object.
2065
            </summary>
2066
        </member>
2067
        <member name="F:Newtonsoft.Json.JsonReader.State.Object">
2068
            <summary>
2069
            Reader is in an object.
2070
            </summary>
2071
        </member>
2072
        <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
2073
            <summary>
2074
            Reader is at the start of an array.
2075
            </summary>
2076
        </member>
2077
        <member name="F:Newtonsoft.Json.JsonReader.State.Array">
2078
            <summary>
2079
            Reader is in an array.
2080
            </summary>
2081
        </member>
2082
        <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
2083
            <summary>
2084
            The <see cref="M:Newtonsoft.Json.JsonReader.Close"/> method has been called.
2085
            </summary>
2086
        </member>
2087
        <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
2088
            <summary>
2089
            Reader has just read a value.
2090
            </summary>
2091
        </member>
2092
        <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
2093
            <summary>
2094
            Reader is at the start of a constructor.
2095
            </summary>
2096
        </member>
2097
        <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
2098
            <summary>
2099
            Reader is in a constructor.
2100
            </summary>
2101
        </member>
2102
        <member name="F:Newtonsoft.Json.JsonReader.State.Error">
2103
            <summary>
2104
            An error occurred that prevents the read operation from continuing.
2105
            </summary>
2106
        </member>
2107
        <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
2108
            <summary>
2109
            The end of the file has been reached successfully.
2110
            </summary>
2111
        </member>
2112
        <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
2113
            <summary>
2114
            Gets the current reader state.
2115
            </summary>
2116
            <value>The current reader state.</value>
2117
        </member>
2118
        <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
2119
            <summary>
2120
            Gets or sets a value indicating whether the source should be closed when this reader is closed.
2121
            </summary>
2122
            <value>
2123
            <c>true</c> to close the source when this reader is closed; otherwise <c>false</c>. The default is <c>true</c>.
2124
            </value>
2125
        </member>
2126
        <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">
2127
            <summary>
2128
            Gets or sets a value indicating whether multiple pieces of JSON content can
2129
            be read from a continuous stream without erroring.
2130
            </summary>
2131
            <value>
2132
            <c>true</c> to support reading multiple pieces of JSON content; otherwise <c>false</c>.
2133
            The default is <c>false</c>.
2134
            </value>
2135
        </member>
2136
        <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
2137
            <summary>
2138
            Gets the quotation mark character used to enclose the value of a string.
2139
            </summary>
2140
        </member>
2141
        <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
2142
            <summary>
2143
            Gets or sets how <see cref="T:System.DateTime"/> time zones are handled when reading JSON.
2144
            </summary>
2145
        </member>
2146
        <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
2147
            <summary>
2148
            Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
2149
            </summary>
2150
        </member>
2151
        <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
2152
            <summary>
2153
            Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
2154
            </summary>
2155
        </member>
2156
        <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
2157
            <summary>
2158
            Gets or sets how custom date formatted strings are parsed when reading JSON.
2159
            </summary>
2160
        </member>
2161
        <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
2162
            <summary>
2163
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
2164
            </summary>
2165
        </member>
2166
        <member name="P:Newtonsoft.Json.JsonReader.TokenType">
2167
            <summary>
2168
            Gets the type of the current JSON token. 
2169
            </summary>
2170
        </member>
2171
        <member name="P:Newtonsoft.Json.JsonReader.Value">
2172
            <summary>
2173
            Gets the text value of the current JSON token.
2174
            </summary>
2175
        </member>
2176
        <member name="P:Newtonsoft.Json.JsonReader.ValueType">
2177
            <summary>
2178
            Gets the .NET type for the current JSON token.
2179
            </summary>
2180
        </member>
2181
        <member name="P:Newtonsoft.Json.JsonReader.Depth">
2182
            <summary>
2183
            Gets the depth of the current token in the JSON document.
2184
            </summary>
2185
            <value>The depth of the current token in the JSON document.</value>
2186
        </member>
2187
        <member name="P:Newtonsoft.Json.JsonReader.Path">
2188
            <summary>
2189
            Gets the path of the current JSON token. 
2190
            </summary>
2191
        </member>
2192
        <member name="P:Newtonsoft.Json.JsonReader.Culture">
2193
            <summary>
2194
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
2195
            </summary>
2196
        </member>
2197
        <member name="M:Newtonsoft.Json.JsonReader.#ctor">
2198
            <summary>
2199
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class.
2200
            </summary>
2201
        </member>
2202
        <member name="M:Newtonsoft.Json.JsonReader.Read">
2203
            <summary>
2204
            Reads the next JSON token from the source.
2205
            </summary>
2206
            <returns><c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.</returns>
2207
        </member>
2208
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
2209
            <summary>
2210
            Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.
2211
            </summary>
2212
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. This method will return <c>null</c> at the end of an array.</returns>
2213
        </member>
2214
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
2215
            <summary>
2216
            Reads the next JSON token from the source as a <see cref="T:System.String"/>.
2217
            </summary>
2218
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
2219
        </member>
2220
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
2221
            <summary>
2222
            Reads the next JSON token from the source as a <see cref="T:System.Byte"/>[].
2223
            </summary>
2224
            <returns>A <see cref="T:System.Byte"/>[] or <c>null</c> if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>
2225
        </member>
2226
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDouble">
2227
            <summary>
2228
            Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
2229
            </summary>
2230
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. This method will return <c>null</c> at the end of an array.</returns>
2231
        </member>
2232
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsBoolean">
2233
            <summary>
2234
            Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
2235
            </summary>
2236
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. This method will return <c>null</c> at the end of an array.</returns>
2237
        </member>
2238
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
2239
            <summary>
2240
            Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
2241
            </summary>
2242
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. This method will return <c>null</c> at the end of an array.</returns>
2243
        </member>
2244
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
2245
            <summary>
2246
            Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
2247
            </summary>
2248
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This method will return <c>null</c> at the end of an array.</returns>
2249
        </member>
2250
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">
2251
            <summary>
2252
            Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
2253
            </summary>
2254
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>
2255
        </member>
2256
        <member name="M:Newtonsoft.Json.JsonReader.Skip">
2257
            <summary>
2258
            Skips the children of the current token.
2259
            </summary>
2260
        </member>
2261
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
2262
            <summary>
2263
            Sets the current token.
2264
            </summary>
2265
            <param name="newToken">The new token.</param>
2266
        </member>
2267
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
2268
            <summary>
2269
            Sets the current token and value.
2270
            </summary>
2271
            <param name="newToken">The new token.</param>
2272
            <param name="value">The value.</param>
2273
        </member>
2274
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object,System.Boolean)">
2275
            <summary>
2276
            Sets the current token and value.
2277
            </summary>
2278
            <param name="newToken">The new token.</param>
2279
            <param name="value">The value.</param>
2280
            <param name="updateIndex">A flag indicating whether the position index inside an array should be updated.</param>
2281
        </member>
2282
        <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
2283
            <summary>
2284
            Sets the state based on current token type.
2285
            </summary>
2286
        </member>
2287
        <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
2288
            <summary>
2289
            Releases unmanaged and - optionally - managed resources.
2290
            </summary>
2291
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
2292
        </member>
2293
        <member name="M:Newtonsoft.Json.JsonReader.Close">
2294
            <summary>
2295
            Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
2296
            If <see cref="P:Newtonsoft.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the source is also closed.
2297
            </summary>
2298
        </member>
2299
        <member name="T:Newtonsoft.Json.JsonReaderException">
2300
            <summary>
2301
            The exception thrown when an error occurs while reading JSON text.
2302
            </summary>
2303
        </member>
2304
        <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
2305
            <summary>
2306
            Gets the line number indicating where the error occurred.
2307
            </summary>
2308
            <value>The line number indicating where the error occurred.</value>
2309
        </member>
2310
        <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
2311
            <summary>
2312
            Gets the line position indicating where the error occurred.
2313
            </summary>
2314
            <value>The line position indicating where the error occurred.</value>
2315
        </member>
2316
        <member name="P:Newtonsoft.Json.JsonReaderException.Path">
2317
            <summary>
2318
            Gets the path to the JSON where the error occurred.
2319
            </summary>
2320
            <value>The path to the JSON where the error occurred.</value>
2321
        </member>
2322
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
2323
            <summary>
2324
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
2325
            </summary>
2326
        </member>
2327
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
2328
            <summary>
2329
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
2330
            with a specified error message.
2331
            </summary>
2332
            <param name="message">The error message that explains the reason for the exception.</param>
2333
        </member>
2334
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
2335
            <summary>
2336
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
2337
            with a specified error message and a reference to the inner exception that is the cause of this exception.
2338
            </summary>
2339
            <param name="message">The error message that explains the reason for the exception.</param>
2340
            <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
2341
        </member>
2342
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
2343
            <summary>
2344
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
2345
            </summary>
2346
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
2347
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
2348
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is <c>null</c>.</exception>
2349
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is <c>null</c> or <see cref="P:System.Exception.HResult"/> is zero (0).</exception>
2350
        </member>
2351
        <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.String,System.Int32,System.Int32,System.Exception)">
2352
            <summary>
2353
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
2354
            with a specified error message, JSON path, line number, line position, and a reference to the inner exception that is the cause of this exception.
2355
            </summary>
2356
            <param name="message">The error message that explains the reason for the exception.</param>
2357
            <param name="path">The path to the JSON where the error occurred.</param>
2358
            <param name="lineNumber">The line number indicating where the error occurred.</param>
2359
            <param name="linePosition">The line position indicating where the error occurred.</param>
2360
            <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
2361
        </member>
2362
        <member name="T:Newtonsoft.Json.JsonRequiredAttribute">
2363
            <summary>
2364
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member, and to require that the member has a value.
2365
            </summary>
2366
        </member>
2367
        <member name="T:Newtonsoft.Json.JsonSerializationException">
2368
            <summary>
2369
            The exception thrown when an error occurs during JSON serialization or deserialization.
2370
            </summary>
2371
        </member>
2372
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
2373
            <summary>
2374
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
2375
            </summary>
2376
        </member>
2377
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
2378
            <summary>
2379
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
2380
            with a specified error message.
2381
            </summary>
2382
            <param name="message">The error message that explains the reason for the exception.</param>
2383
        </member>
2384
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
2385
            <summary>
2386
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
2387
            with a specified error message and a reference to the inner exception that is the cause of this exception.
2388
            </summary>
2389
            <param name="message">The error message that explains the reason for the exception.</param>
2390
            <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
2391
        </member>
2392
        <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
2393
            <summary>
2394
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
2395
            </summary>
2396
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
2397
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
2398
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is <c>null</c>.</exception>
2399
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is <c>null</c> or <see cref="P:System.Exception.HResult"/> is zero (0).</exception>
2400
        </member>
2401
        <member name="T:Newtonsoft.Json.JsonSerializer">
2402
            <summary>
2403
            Serializes and deserializes objects into and from the JSON format.
2404
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
2405
            </summary>
2406
        </member>
2407
        <member name="E:Newtonsoft.Json.JsonSerializer.Error">
2408
            <summary>
2409
            Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
2410
            </summary>
2411
        </member>
2412
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
2413
            <summary>
2414
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
2415
            </summary>
2416
        </member>
2417
        <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
2418
            <summary>
2419
            Gets or sets the <see cref="P:Newtonsoft.Json.JsonSerializer.SerializationBinder"/> used by the serializer when resolving type names.
2420
            </summary>
2421
        </member>
2422
        <member name="P:Newtonsoft.Json.JsonSerializer.SerializationBinder">
2423
            <summary>
2424
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ISerializationBinder"/> used by the serializer when resolving type names.
2425
            </summary>
2426
        </member>
2427
        <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
2428
            <summary>
2429
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
2430
            </summary>
2431
            <value>The trace writer.</value>
2432
        </member>
2433
        <member name="P:Newtonsoft.Json.JsonSerializer.EqualityComparer">
2434
            <summary>
2435
            Gets or sets the equality comparer used by the serializer when comparing references.
2436
            </summary>
2437
            <value>The equality comparer.</value>
2438
        </member>
2439
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
2440
            <summary>
2441
            Gets or sets how type name writing and reading is handled by the serializer.
2442
            </summary>
2443
            <remarks>
2444
            <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> should be used with caution when your application deserializes JSON from an external source.
2445
            Incoming types should be validated with a custom <see cref="P:Newtonsoft.Json.JsonSerializer.SerializationBinder"/>
2446
            when deserializing with a value other than <see cref="F:Newtonsoft.Json.TypeNameHandling.None"/>.
2447
            </remarks>
2448
        </member>
2449
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
2450
            <summary>
2451
            Gets or sets how a type name assembly is written and resolved by the serializer.
2452
            </summary>
2453
            <value>The type name assembly format.</value>
2454
        </member>
2455
        <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormatHandling">
2456
            <summary>
2457
            Gets or sets how a type name assembly is written and resolved by the serializer.
2458
            </summary>
2459
            <value>The type name assembly format.</value>
2460
        </member>
2461
        <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
2462
            <summary>
2463
            Gets or sets how object references are preserved by the serializer.
2464
            </summary>
2465
        </member>
2466
        <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
2467
            <summary>
2468
            Gets or sets how reference loops (e.g. a class referencing itself) is handled.
2469
            </summary>
2470
        </member>
2471
        <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
2472
            <summary>
2473
            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
2474
            </summary>
2475
        </member>
2476
        <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
2477
            <summary>
2478
            Gets or sets how null values are handled during serialization and deserialization.
2479
            </summary>
2480
        </member>
2481
        <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
2482
            <summary>
2483
            Gets or sets how default values are handled during serialization and deserialization.
2484
            </summary>
2485
        </member>
2486
        <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
2487
            <summary>
2488
            Gets or sets how objects are created during deserialization.
2489
            </summary>
2490
            <value>The object creation handling.</value>
2491
        </member>
2492
        <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
2493
            <summary>
2494
            Gets or sets how constructors are used during deserialization.
2495
            </summary>
2496
            <value>The constructor handling.</value>
2497
        </member>
2498
        <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">
2499
            <summary>
2500
            Gets or sets how metadata properties are used during deserialization.
2501
            </summary>
2502
            <value>The metadata properties handling.</value>
2503
        </member>
2504
        <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
2505
            <summary>
2506
            Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
2507
            </summary>
2508
            <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
2509
        </member>
2510
        <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
2511
            <summary>
2512
            Gets or sets the contract resolver used by the serializer when
2513
            serializing .NET objects to JSON and vice versa.
2514
            </summary>
2515
        </member>
2516
        <member name="P:Newtonsoft.Json.JsonSerializer.Context">
2517
            <summary>
2518
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
2519
            </summary>
2520
            <value>The context.</value>
2521
        </member>
2522
        <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
2523
            <summary>
2524
            Indicates how JSON text output is formatted.
2525
            </summary>
2526
        </member>
2527
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
2528
            <summary>
2529
            Gets or sets how dates are written to JSON text.
2530
            </summary>
2531
        </member>
2532
        <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
2533
            <summary>
2534
            Gets or sets how <see cref="T:System.DateTime"/> time zones are handled during serialization and deserialization.
2535
            </summary>
2536
        </member>
2537
        <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
2538
            <summary>
2539
            Gets or sets how date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed when reading JSON.
2540
            </summary>
2541
        </member>
2542
        <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
2543
            <summary>
2544
            Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
2545
            </summary>
2546
        </member>
2547
        <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
2548
            <summary>
2549
            Gets or sets how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
2550
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
2551
            are written as JSON text.
2552
            </summary>
2553
        </member>
2554
        <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
2555
            <summary>
2556
            Gets or sets how strings are escaped when writing JSON text.
2557
            </summary>
2558
        </member>
2559
        <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
2560
            <summary>
2561
            Gets or sets how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text,
2562
            and the expected date format when reading JSON text.
2563
            </summary>
2564
        </member>
2565
        <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
2566
            <summary>
2567
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
2568
            </summary>
2569
        </member>
2570
        <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
2571
            <summary>
2572
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
2573
            </summary>
2574
        </member>
2575
        <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
2576
            <summary>
2577
            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
2578
            </summary>
2579
            <value>
2580
                    <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
2581
            </value>
2582
        </member>
2583
        <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
2584
            <summary>
2585
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
2586
            </summary>
2587
        </member>
2588
        <member name="M:Newtonsoft.Json.JsonSerializer.Create">
2589
            <summary>
2590
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
2591
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
2592
            from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
2593
            </summary>
2594
            <returns>
2595
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
2596
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
2597
            from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
2598
            </returns>
2599
        </member>
2600
        <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
2601
            <summary>
2602
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2603
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
2604
            from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
2605
            </summary>
2606
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
2607
            <returns>
2608
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2609
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
2610
            from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
2611
            </returns>
2612
        </member>
2613
        <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
2614
            <summary>
2615
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
2616
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
2617
            from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
2618
            </summary>
2619
            <returns>
2620
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
2621
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
2622
            from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
2623
            </returns>
2624
        </member>
2625
        <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
2626
            <summary>
2627
            Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2628
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
2629
            from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/> as well as the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2630
            </summary>
2631
            <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
2632
            <returns>
2633
            A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2634
            The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
2635
            from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/> as well as the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2636
            </returns>
2637
        </member>
2638
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
2639
            <summary>
2640
            Populates the JSON values onto the target object.
2641
            </summary>
2642
            <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
2643
            <param name="target">The target object to populate values onto.</param>
2644
        </member>
2645
        <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
2646
            <summary>
2647
            Populates the JSON values onto the target object.
2648
            </summary>
2649
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
2650
            <param name="target">The target object to populate values onto.</param>
2651
        </member>
2652
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
2653
            <summary>
2654
            Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
2655
            </summary>
2656
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
2657
            <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
2658
        </member>
2659
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
2660
            <summary>
2661
            Deserializes the JSON structure contained by the specified <see cref="T:System.IO.StringReader"/>
2662
            into an instance of the specified type.
2663
            </summary>
2664
            <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
2665
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
2666
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
2667
        </member>
2668
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
2669
            <summary>
2670
            Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
2671
            into an instance of the specified type.
2672
            </summary>
2673
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
2674
            <typeparam name="T">The type of the object to deserialize.</typeparam>
2675
            <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
2676
        </member>
2677
        <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
2678
            <summary>
2679
            Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
2680
            into an instance of the specified type.
2681
            </summary>
2682
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
2683
            <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
2684
            <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
2685
        </member>
2686
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
2687
            <summary>
2688
            Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
2689
            using the specified <see cref="T:System.IO.TextWriter"/>.
2690
            </summary>
2691
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>
2692
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
2693
        </member>
2694
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
2695
            <summary>
2696
            Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
2697
            using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2698
            </summary>
2699
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
2700
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
2701
            <param name="objectType">
2702
            The type of the value being serialized.
2703
            This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is <see cref="F:Newtonsoft.Json.TypeNameHandling.Auto"/> to write out the type name if the type of the value does not match.
2704
            Specifying the type is optional.
2705
            </param>
2706
        </member>
2707
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
2708
            <summary>
2709
            Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
2710
            using the specified <see cref="T:System.IO.TextWriter"/>.
2711
            </summary>
2712
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>
2713
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
2714
            <param name="objectType">
2715
            The type of the value being serialized.
2716
            This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
2717
            Specifying the type is optional.
2718
            </param>
2719
        </member>
2720
        <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
2721
            <summary>
2722
            Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
2723
            using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2724
            </summary>
2725
            <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
2726
            <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
2727
        </member>
2728
        <member name="T:Newtonsoft.Json.JsonSerializerSettings">
2729
            <summary>
2730
            Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
2731
            </summary>
2732
        </member>
2733
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
2734
            <summary>
2735
            Gets or sets how reference loops (e.g. a class referencing itself) are handled.
2736
            </summary>
2737
            <value>Reference loop handling.</value>
2738
        </member>
2739
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
2740
            <summary>
2741
            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
2742
            </summary>
2743
            <value>Missing member handling.</value>
2744
        </member>
2745
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
2746
            <summary>
2747
            Gets or sets how objects are created during deserialization.
2748
            </summary>
2749
            <value>The object creation handling.</value>
2750
        </member>
2751
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
2752
            <summary>
2753
            Gets or sets how null values are handled during serialization and deserialization.
2754
            </summary>
2755
            <value>Null value handling.</value>
2756
        </member>
2757
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
2758
            <summary>
2759
            Gets or sets how default values are handled during serialization and deserialization.
2760
            </summary>
2761
            <value>The default value handling.</value>
2762
        </member>
2763
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
2764
            <summary>
2765
            Gets or sets a <see cref="T:Newtonsoft.Json.JsonConverter"/> collection that will be used during serialization.
2766
            </summary>
2767
            <value>The converters.</value>
2768
        </member>
2769
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
2770
            <summary>
2771
            Gets or sets how object references are preserved by the serializer.
2772
            </summary>
2773
            <value>The preserve references handling.</value>
2774
        </member>
2775
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
2776
            <summary>
2777
            Gets or sets how type name writing and reading is handled by the serializer.
2778
            </summary>
2779
            <remarks>
2780
            <see cref="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling"/> should be used with caution when your application deserializes JSON from an external source.
2781
            Incoming types should be validated with a custom <see cref="P:Newtonsoft.Json.JsonSerializerSettings.SerializationBinder"/>
2782
            when deserializing with a value other than <see cref="F:Newtonsoft.Json.TypeNameHandling.None"/>.
2783
            </remarks>
2784
            <value>The type name handling.</value>
2785
        </member>
2786
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">
2787
            <summary>
2788
            Gets or sets how metadata properties are used during deserialization.
2789
            </summary>
2790
            <value>The metadata properties handling.</value>
2791
        </member>
2792
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
2793
            <summary>
2794
            Gets or sets how a type name assembly is written and resolved by the serializer.
2795
            </summary>
2796
            <value>The type name assembly format.</value>
2797
        </member>
2798
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormatHandling">
2799
            <summary>
2800
            Gets or sets how a type name assembly is written and resolved by the serializer.
2801
            </summary>
2802
            <value>The type name assembly format.</value>
2803
        </member>
2804
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
2805
            <summary>
2806
            Gets or sets how constructors are used during deserialization.
2807
            </summary>
2808
            <value>The constructor handling.</value>
2809
        </member>
2810
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
2811
            <summary>
2812
            Gets or sets the contract resolver used by the serializer when
2813
            serializing .NET objects to JSON and vice versa.
2814
            </summary>
2815
            <value>The contract resolver.</value>
2816
        </member>
2817
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.EqualityComparer">
2818
            <summary>
2819
            Gets or sets the equality comparer used by the serializer when comparing references.
2820
            </summary>
2821
            <value>The equality comparer.</value>
2822
        </member>
2823
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
2824
            <summary>
2825
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
2826
            </summary>
2827
            <value>The reference resolver.</value>
2828
        </member>
2829
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolverProvider">
2830
            <summary>
2831
            Gets or sets a function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
2832
            </summary>
2833
            <value>A function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.</value>
2834
        </member>
2835
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
2836
            <summary>
2837
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
2838
            </summary>
2839
            <value>The trace writer.</value>
2840
        </member>
2841
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
2842
            <summary>
2843
            Gets or sets the <see cref="P:Newtonsoft.Json.JsonSerializerSettings.SerializationBinder"/> used by the serializer when resolving type names.
2844
            </summary>
2845
            <value>The binder.</value>
2846
        </member>
2847
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.SerializationBinder">
2848
            <summary>
2849
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ISerializationBinder"/> used by the serializer when resolving type names.
2850
            </summary>
2851
            <value>The binder.</value>
2852
        </member>
2853
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
2854
            <summary>
2855
            Gets or sets the error handler called during serialization and deserialization.
2856
            </summary>
2857
            <value>The error handler called during serialization and deserialization.</value>
2858
        </member>
2859
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
2860
            <summary>
2861
            Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
2862
            </summary>
2863
            <value>The context.</value>
2864
        </member>
2865
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
2866
            <summary>
2867
            Gets or sets how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text,
2868
            and the expected date format when reading JSON text.
2869
            </summary>
2870
        </member>
2871
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
2872
            <summary>
2873
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
2874
            </summary>
2875
        </member>
2876
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
2877
            <summary>
2878
            Indicates how JSON text output is formatted.
2879
            </summary>
2880
        </member>
2881
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
2882
            <summary>
2883
            Gets or sets how dates are written to JSON text.
2884
            </summary>
2885
        </member>
2886
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
2887
            <summary>
2888
            Gets or sets how <see cref="T:System.DateTime"/> time zones are handled during serialization and deserialization.
2889
            </summary>
2890
        </member>
2891
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
2892
            <summary>
2893
            Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
2894
            </summary>
2895
        </member>
2896
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
2897
            <summary>
2898
            Gets or sets how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
2899
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
2900
            are written as JSON.
2901
            </summary>
2902
        </member>
2903
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
2904
            <summary>
2905
            Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
2906
            </summary>
2907
        </member>
2908
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
2909
            <summary>
2910
            Gets or sets how strings are escaped when writing JSON text.
2911
            </summary>
2912
        </member>
2913
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
2914
            <summary>
2915
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
2916
            </summary>
2917
        </member>
2918
        <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
2919
            <summary>
2920
            Gets a value indicating whether there will be a check for additional content after deserializing an object.
2921
            </summary>
2922
            <value>
2923
                    <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
2924
            </value>
2925
        </member>
2926
        <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
2927
            <summary>
2928
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
2929
            </summary>
2930
        </member>
2931
        <member name="T:Newtonsoft.Json.JsonTextReader">
2932
            <summary>
2933
            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
2934
            </summary>
2935
        </member>
2936
        <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
2937
            <summary>
2938
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonTextReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
2939
            </summary>
2940
            <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the JSON data to read.</param>
2941
        </member>
2942
        <member name="P:Newtonsoft.Json.JsonTextReader.ArrayPool">
2943
            <summary>
2944
            Gets or sets the reader's character buffer pool.
2945
            </summary>
2946
        </member>
2947
        <member name="M:Newtonsoft.Json.JsonTextReader.Read">
2948
            <summary>
2949
            Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/>.
2950
            </summary>
2951
            <returns>
2952
            <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
2953
            </returns>
2954
        </member>
2955
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
2956
            <summary>
2957
            Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.
2958
            </summary>
2959
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. This method will return <c>null</c> at the end of an array.</returns>
2960
        </member>
2961
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
2962
            <summary>
2963
            Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
2964
            </summary>
2965
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This method will return <c>null</c> at the end of an array.</returns>
2966
        </member>
2967
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
2968
            <summary>
2969
            Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.String"/>.
2970
            </summary>
2971
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
2972
        </member>
2973
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
2974
            <summary>
2975
            Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Byte"/>[].
2976
            </summary>
2977
            <returns>A <see cref="T:System.Byte"/>[] or <c>null</c> if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>
2978
        </member>
2979
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBoolean">
2980
            <summary>
2981
            Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
2982
            </summary>
2983
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. This method will return <c>null</c> at the end of an array.</returns>
2984
        </member>
2985
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
2986
            <summary>
2987
            Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
2988
            </summary>
2989
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>
2990
        </member>
2991
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
2992
            <summary>
2993
            Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
2994
            </summary>
2995
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. This method will return <c>null</c> at the end of an array.</returns>
2996
        </member>
2997
        <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDouble">
2998
            <summary>
2999
            Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
3000
            </summary>
3001
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. This method will return <c>null</c> at the end of an array.</returns>
3002
        </member>
3003
        <member name="M:Newtonsoft.Json.JsonTextReader.Close">
3004
            <summary>
3005
            Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
3006
            If <see cref="P:Newtonsoft.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.TextReader"/> is also closed.
3007
            </summary>
3008
        </member>
3009
        <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
3010
            <summary>
3011
            Gets a value indicating whether the class can return line information.
3012
            </summary>
3013
            <returns>
3014
                    <c>true</c> if <see cref="P:Newtonsoft.Json.JsonTextReader.LineNumber"/> and <see cref="P:Newtonsoft.Json.JsonTextReader.LinePosition"/> can be provided; otherwise, <c>false</c>.
3015
            </returns>
3016
        </member>
3017
        <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
3018
            <summary>
3019
            Gets the current line number.
3020
            </summary>
3021
            <value>
3022
            The current line number or 0 if no line information is available (for example, <see cref="M:Newtonsoft.Json.JsonTextReader.HasLineInfo"/> returns <c>false</c>).
3023
            </value>
3024
        </member>
3025
        <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
3026
            <summary>
3027
            Gets the current line position.
3028
            </summary>
3029
            <value>
3030
            The current line position or 0 if no line information is available (for example, <see cref="M:Newtonsoft.Json.JsonTextReader.HasLineInfo"/> returns <c>false</c>).
3031
            </value>
3032
        </member>
3033
        <member name="T:Newtonsoft.Json.JsonTextWriter">
3034
            <summary>
3035
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
3036
            </summary>
3037
        </member>
3038
        <member name="P:Newtonsoft.Json.JsonTextWriter.ArrayPool">
3039
            <summary>
3040
            Gets or sets the writer's character array pool.
3041
            </summary>
3042
        </member>
3043
        <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
3044
            <summary>
3045
            Gets or sets how many <see cref="P:Newtonsoft.Json.JsonTextWriter.IndentChar"/>s to write for each level in the hierarchy when <see cref="P:Newtonsoft.Json.JsonWriter.Formatting"/> is set to <see cref="F:Newtonsoft.Json.Formatting.Indented"/>.
3046
            </summary>
3047
        </member>
3048
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
3049
            <summary>
3050
            Gets or sets which character to use to quote attribute values.
3051
            </summary>
3052
        </member>
3053
        <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
3054
            <summary>
3055
            Gets or sets which character to use for indenting when <see cref="P:Newtonsoft.Json.JsonWriter.Formatting"/> is set to <see cref="F:Newtonsoft.Json.Formatting.Indented"/>.
3056
            </summary>
3057
        </member>
3058
        <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
3059
            <summary>
3060
            Gets or sets a value indicating whether object names will be surrounded with quotes.
3061
            </summary>
3062
        </member>
3063
        <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
3064
            <summary>
3065
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonTextWriter"/> class using the specified <see cref="T:System.IO.TextWriter"/>.
3066
            </summary>
3067
            <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> to write to.</param>
3068
        </member>
3069
        <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
3070
            <summary>
3071
            Flushes whatever is in the buffer to the underlying <see cref="T:System.IO.TextWriter"/> and also flushes the underlying <see cref="T:System.IO.TextWriter"/>.
3072
            </summary>
3073
        </member>
3074
        <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
3075
            <summary>
3076
            Closes this writer.
3077
            If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.TextWriter"/> is also closed.
3078
            If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
3079
            </summary>
3080
        </member>
3081
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
3082
            <summary>
3083
            Writes the beginning of a JSON object.
3084
            </summary>
3085
        </member>
3086
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
3087
            <summary>
3088
            Writes the beginning of a JSON array.
3089
            </summary>
3090
        </member>
3091
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
3092
            <summary>
3093
            Writes the start of a constructor with the given name.
3094
            </summary>
3095
            <param name="name">The name of the constructor.</param>
3096
        </member>
3097
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
3098
            <summary>
3099
            Writes the specified end token.
3100
            </summary>
3101
            <param name="token">The end token to write.</param>
3102
        </member>
3103
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
3104
            <summary>
3105
            Writes the property name of a name/value pair on a JSON object.
3106
            </summary>
3107
            <param name="name">The name of the property.</param>
3108
        </member>
3109
        <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">
3110
            <summary>
3111
            Writes the property name of a name/value pair on a JSON object.
3112
            </summary>
3113
            <param name="name">The name of the property.</param>
3114
            <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
3115
        </member>
3116
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
3117
            <summary>
3118
            Writes indent characters.
3119
            </summary>
3120
        </member>
3121
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
3122
            <summary>
3123
            Writes the JSON value delimiter.
3124
            </summary>
3125
        </member>
3126
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
3127
            <summary>
3128
            Writes an indent space.
3129
            </summary>
3130
        </member>
3131
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">
3132
            <summary>
3133
            Writes a <see cref="T:System.Object"/> value.
3134
            An error will raised if the value cannot be written as a single JSON token.
3135
            </summary>
3136
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
3137
        </member>
3138
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
3139
            <summary>
3140
            Writes a null value.
3141
            </summary>
3142
        </member>
3143
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
3144
            <summary>
3145
            Writes an undefined value.
3146
            </summary>
3147
        </member>
3148
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
3149
            <summary>
3150
            Writes raw JSON.
3151
            </summary>
3152
            <param name="json">The raw JSON to write.</param>
3153
        </member>
3154
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
3155
            <summary>
3156
            Writes a <see cref="T:System.String"/> value.
3157
            </summary>
3158
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
3159
        </member>
3160
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
3161
            <summary>
3162
            Writes a <see cref="T:System.Int32"/> value.
3163
            </summary>
3164
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
3165
        </member>
3166
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
3167
            <summary>
3168
            Writes a <see cref="T:System.UInt32"/> value.
3169
            </summary>
3170
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
3171
        </member>
3172
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
3173
            <summary>
3174
            Writes a <see cref="T:System.Int64"/> value.
3175
            </summary>
3176
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
3177
        </member>
3178
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
3179
            <summary>
3180
            Writes a <see cref="T:System.UInt64"/> value.
3181
            </summary>
3182
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
3183
        </member>
3184
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
3185
            <summary>
3186
            Writes a <see cref="T:System.Single"/> value.
3187
            </summary>
3188
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
3189
        </member>
3190
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
3191
            <summary>
3192
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value.
3193
            </summary>
3194
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value to write.</param>
3195
        </member>
3196
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
3197
            <summary>
3198
            Writes a <see cref="T:System.Double"/> value.
3199
            </summary>
3200
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
3201
        </member>
3202
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
3203
            <summary>
3204
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value.
3205
            </summary>
3206
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value to write.</param>
3207
        </member>
3208
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
3209
            <summary>
3210
            Writes a <see cref="T:System.Boolean"/> value.
3211
            </summary>
3212
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
3213
        </member>
3214
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
3215
            <summary>
3216
            Writes a <see cref="T:System.Int16"/> value.
3217
            </summary>
3218
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
3219
        </member>
3220
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
3221
            <summary>
3222
            Writes a <see cref="T:System.UInt16"/> value.
3223
            </summary>
3224
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
3225
        </member>
3226
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
3227
            <summary>
3228
            Writes a <see cref="T:System.Char"/> value.
3229
            </summary>
3230
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
3231
        </member>
3232
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
3233
            <summary>
3234
            Writes a <see cref="T:System.Byte"/> value.
3235
            </summary>
3236
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
3237
        </member>
3238
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
3239
            <summary>
3240
            Writes a <see cref="T:System.SByte"/> value.
3241
            </summary>
3242
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
3243
        </member>
3244
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
3245
            <summary>
3246
            Writes a <see cref="T:System.Decimal"/> value.
3247
            </summary>
3248
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
3249
        </member>
3250
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
3251
            <summary>
3252
            Writes a <see cref="T:System.DateTime"/> value.
3253
            </summary>
3254
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
3255
        </member>
3256
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
3257
            <summary>
3258
            Writes a <see cref="T:System.Byte"/>[] value.
3259
            </summary>
3260
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
3261
        </member>
3262
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
3263
            <summary>
3264
            Writes a <see cref="T:System.DateTimeOffset"/> value.
3265
            </summary>
3266
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
3267
        </member>
3268
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
3269
            <summary>
3270
            Writes a <see cref="T:System.Guid"/> value.
3271
            </summary>
3272
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
3273
        </member>
3274
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
3275
            <summary>
3276
            Writes a <see cref="T:System.TimeSpan"/> value.
3277
            </summary>
3278
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
3279
        </member>
3280
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
3281
            <summary>
3282
            Writes a <see cref="T:System.Uri"/> value.
3283
            </summary>
3284
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
3285
        </member>
3286
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
3287
            <summary>
3288
            Writes a comment <c>/*...*/</c> containing the specified text. 
3289
            </summary>
3290
            <param name="text">Text to place inside the comment.</param>
3291
        </member>
3292
        <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
3293
            <summary>
3294
            Writes the given white space.
3295
            </summary>
3296
            <param name="ws">The string of white space characters.</param>
3297
        </member>
3298
        <member name="T:Newtonsoft.Json.JsonToken">
3299
            <summary>
3300
            Specifies the type of JSON token.
3301
            </summary>
3302
        </member>
3303
        <member name="F:Newtonsoft.Json.JsonToken.None">
3304
            <summary>
3305
            This is returned by the <see cref="T:Newtonsoft.Json.JsonReader"/> if a read method has not been called.
3306
            </summary>
3307
        </member>
3308
        <member name="F:Newtonsoft.Json.JsonToken.StartObject">
3309
            <summary>
3310
            An object start token.
3311
            </summary>
3312
        </member>
3313
        <member name="F:Newtonsoft.Json.JsonToken.StartArray">
3314
            <summary>
3315
            An array start token.
3316
            </summary>
3317
        </member>
3318
        <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
3319
            <summary>
3320
            A constructor start token.
3321
            </summary>
3322
        </member>
3323
        <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
3324
            <summary>
3325
            An object property name.
3326
            </summary>
3327
        </member>
3328
        <member name="F:Newtonsoft.Json.JsonToken.Comment">
3329
            <summary>
3330
            A comment.
3331
            </summary>
3332
        </member>
3333
        <member name="F:Newtonsoft.Json.JsonToken.Raw">
3334
            <summary>
3335
            Raw JSON.
3336
            </summary>
3337
        </member>
3338
        <member name="F:Newtonsoft.Json.JsonToken.Integer">
3339
            <summary>
3340
            An integer.
3341
            </summary>
3342
        </member>
3343
        <member name="F:Newtonsoft.Json.JsonToken.Float">
3344
            <summary>
3345
            A float.
3346
            </summary>
3347
        </member>
3348
        <member name="F:Newtonsoft.Json.JsonToken.String">
3349
            <summary>
3350
            A string.
3351
            </summary>
3352
        </member>
3353
        <member name="F:Newtonsoft.Json.JsonToken.Boolean">
3354
            <summary>
3355
            A boolean.
3356
            </summary>
3357
        </member>
3358
        <member name="F:Newtonsoft.Json.JsonToken.Null">
3359
            <summary>
3360
            A null token.
3361
            </summary>
3362
        </member>
3363
        <member name="F:Newtonsoft.Json.JsonToken.Undefined">
3364
            <summary>
3365
            An undefined token.
3366
            </summary>
3367
        </member>
3368
        <member name="F:Newtonsoft.Json.JsonToken.EndObject">
3369
            <summary>
3370
            An object end token.
3371
            </summary>
3372
        </member>
3373
        <member name="F:Newtonsoft.Json.JsonToken.EndArray">
3374
            <summary>
3375
            An array end token.
3376
            </summary>
3377
        </member>
3378
        <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
3379
            <summary>
3380
            A constructor end token.
3381
            </summary>
3382
        </member>
3383
        <member name="F:Newtonsoft.Json.JsonToken.Date">
3384
            <summary>
3385
            A Date.
3386
            </summary>
3387
        </member>
3388
        <member name="F:Newtonsoft.Json.JsonToken.Bytes">
3389
            <summary>
3390
            Byte data.
3391
            </summary>
3392
        </member>
3393
        <member name="T:Newtonsoft.Json.JsonValidatingReader">
3394
            <summary>
3395
            <para>
3396
            Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
3397
            </para>
3398
            <note type="caution">
3399
            JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
3400
            </note>
3401
            </summary>
3402
        </member>
3403
        <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
3404
            <summary>
3405
            Sets an event handler for receiving schema validation errors.
3406
            </summary>
3407
        </member>
3408
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
3409
            <summary>
3410
            Gets the text value of the current JSON token.
3411
            </summary>
3412
            <value></value>
3413
        </member>
3414
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
3415
            <summary>
3416
            Gets the depth of the current token in the JSON document.
3417
            </summary>
3418
            <value>The depth of the current token in the JSON document.</value>
3419
        </member>
3420
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
3421
            <summary>
3422
            Gets the path of the current JSON token. 
3423
            </summary>
3424
        </member>
3425
        <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
3426
            <summary>
3427
            Gets the quotation mark character used to enclose the value of a string.
3428
            </summary>
3429
            <value></value>
3430
        </member>
3431
        <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
3432
            <summary>
3433
            Gets the type of the current JSON token.
3434
            </summary>
3435
            <value></value>
3436
        </member>
3437
        <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
3438
            <summary>
3439
            Gets the .NET type for the current JSON token.
3440
            </summary>
3441
            <value></value>
3442
        </member>
3443
        <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
3444
            <summary>
3445
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
3446
            validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
3447
            </summary>
3448
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
3449
        </member>
3450
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
3451
            <summary>
3452
            Gets or sets the schema.
3453
            </summary>
3454
            <value>The schema.</value>
3455
        </member>
3456
        <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
3457
            <summary>
3458
            Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
3459
            </summary>
3460
            <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
3461
        </member>
3462
        <member name="M:Newtonsoft.Json.JsonValidatingReader.Close">
3463
            <summary>
3464
            Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
3465
            If <see cref="P:Newtonsoft.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> is also closed.
3466
            </summary>
3467
        </member>
3468
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
3469
            <summary>
3470
            Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.
3471
            </summary>
3472
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.</returns>
3473
        </member>
3474
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
3475
            <summary>
3476
            Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Byte"/>[].
3477
            </summary>
3478
            <returns>
3479
            A <see cref="T:System.Byte"/>[] or <c>null</c> if the next JSON token is null.
3480
            </returns>
3481
        </member>
3482
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
3483
            <summary>
3484
            Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
3485
            </summary>
3486
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.</returns>
3487
        </member>
3488
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDouble">
3489
            <summary>
3490
            Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
3491
            </summary>
3492
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.</returns>
3493
        </member>
3494
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBoolean">
3495
            <summary>
3496
            Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
3497
            </summary>
3498
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.</returns>
3499
        </member>
3500
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
3501
            <summary>
3502
            Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.String"/>.
3503
            </summary>
3504
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3505
        </member>
3506
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
3507
            <summary>
3508
            Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
3509
            </summary>
3510
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This method will return <c>null</c> at the end of an array.</returns>
3511
        </member>
3512
        <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
3513
            <summary>
3514
            Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
3515
            </summary>
3516
            <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.</returns>
3517
        </member>
3518
        <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
3519
            <summary>
3520
            Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/>.
3521
            </summary>
3522
            <returns>
3523
            <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
3524
            </returns>
3525
        </member>
3526
        <member name="T:Newtonsoft.Json.JsonWriter">
3527
            <summary>
3528
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
3529
            </summary>
3530
        </member>
3531
        <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
3532
            <summary>
3533
            Gets or sets a value indicating whether the destination should be closed when this writer is closed.
3534
            </summary>
3535
            <value>
3536
            <c>true</c> to close the destination when this writer is closed; otherwise <c>false</c>. The default is <c>true</c>.
3537
            </value>
3538
        </member>
3539
        <member name="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose">
3540
            <summary>
3541
            Gets or sets a value indicating whether the JSON should be auto-completed when this writer is closed.
3542
            </summary>
3543
            <value>
3544
            <c>true</c> to auto-complete the JSON when this writer is closed; otherwise <c>false</c>. The default is <c>true</c>.
3545
            </value>
3546
        </member>
3547
        <member name="P:Newtonsoft.Json.JsonWriter.Top">
3548
            <summary>
3549
            Gets the top.
3550
            </summary>
3551
            <value>The top.</value>
3552
        </member>
3553
        <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
3554
            <summary>
3555
            Gets the state of the writer.
3556
            </summary>
3557
        </member>
3558
        <member name="P:Newtonsoft.Json.JsonWriter.Path">
3559
            <summary>
3560
            Gets the path of the writer. 
3561
            </summary>
3562
        </member>
3563
        <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
3564
            <summary>
3565
            Gets or sets a value indicating how JSON text output should be formatted.
3566
            </summary>
3567
        </member>
3568
        <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
3569
            <summary>
3570
            Gets or sets how dates are written to JSON text.
3571
            </summary>
3572
        </member>
3573
        <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
3574
            <summary>
3575
            Gets or sets how <see cref="T:System.DateTime"/> time zones are handled when writing JSON text.
3576
            </summary>
3577
        </member>
3578
        <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
3579
            <summary>
3580
            Gets or sets how strings are escaped when writing JSON text.
3581
            </summary>
3582
        </member>
3583
        <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
3584
            <summary>
3585
            Gets or sets how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
3586
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
3587
            are written to JSON text.
3588
            </summary>
3589
        </member>
3590
        <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
3591
            <summary>
3592
            Gets or sets how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text.
3593
            </summary>
3594
        </member>
3595
        <member name="P:Newtonsoft.Json.JsonWriter.Culture">
3596
            <summary>
3597
            Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
3598
            </summary>
3599
        </member>
3600
        <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
3601
            <summary>
3602
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriter"/> class.
3603
            </summary>
3604
        </member>
3605
        <member name="M:Newtonsoft.Json.JsonWriter.Flush">
3606
            <summary>
3607
            Flushes whatever is in the buffer to the destination and also flushes the destination.
3608
            </summary>
3609
        </member>
3610
        <member name="M:Newtonsoft.Json.JsonWriter.Close">
3611
            <summary>
3612
            Closes this writer.
3613
            If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the destination is also closed.
3614
            If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
3615
            </summary>
3616
        </member>
3617
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
3618
            <summary>
3619
            Writes the beginning of a JSON object.
3620
            </summary>
3621
        </member>
3622
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
3623
            <summary>
3624
            Writes the end of a JSON object.
3625
            </summary>
3626
        </member>
3627
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
3628
            <summary>
3629
            Writes the beginning of a JSON array.
3630
            </summary>
3631
        </member>
3632
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
3633
            <summary>
3634
            Writes the end of an array.
3635
            </summary>
3636
        </member>
3637
        <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
3638
            <summary>
3639
            Writes the start of a constructor with the given name.
3640
            </summary>
3641
            <param name="name">The name of the constructor.</param>
3642
        </member>
3643
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
3644
            <summary>
3645
            Writes the end constructor.
3646
            </summary>
3647
        </member>
3648
        <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
3649
            <summary>
3650
            Writes the property name of a name/value pair of a JSON object.
3651
            </summary>
3652
            <param name="name">The name of the property.</param>
3653
        </member>
3654
        <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">
3655
            <summary>
3656
            Writes the property name of a name/value pair of a JSON object.
3657
            </summary>
3658
            <param name="name">The name of the property.</param>
3659
            <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
3660
        </member>
3661
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
3662
            <summary>
3663
            Writes the end of the current JSON object or array.
3664
            </summary>
3665
        </member>
3666
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
3667
            <summary>
3668
            Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.
3669
            </summary>
3670
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
3671
        </member>
3672
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">
3673
            <summary>
3674
            Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
3675
            </summary>
3676
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
3677
            <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
3678
        </member>
3679
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken,System.Object)">
3680
            <summary>
3681
            Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.
3682
            </summary>
3683
            <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
3684
            <param name="value">
3685
            The value to write.
3686
            A value is only required for tokens that have an associated value, e.g. the <see cref="T:System.String"/> property name for <see cref="F:Newtonsoft.Json.JsonToken.PropertyName"/>.
3687
            <c>null</c> can be passed to the method for tokens that don't have a value, e.g. <see cref="F:Newtonsoft.Json.JsonToken.StartObject"/>.
3688
            </param>
3689
        </member>
3690
        <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken)">
3691
            <summary>
3692
            Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token.
3693
            </summary>
3694
            <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
3695
        </member>
3696
        <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
3697
            <summary>
3698
            Writes the specified end token.
3699
            </summary>
3700
            <param name="token">The end token to write.</param>
3701
        </member>
3702
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
3703
            <summary>
3704
            Writes indent characters.
3705
            </summary>
3706
        </member>
3707
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
3708
            <summary>
3709
            Writes the JSON value delimiter.
3710
            </summary>
3711
        </member>
3712
        <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
3713
            <summary>
3714
            Writes an indent space.
3715
            </summary>
3716
        </member>
3717
        <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
3718
            <summary>
3719
            Writes a null value.
3720
            </summary>
3721
        </member>
3722
        <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
3723
            <summary>
3724
            Writes an undefined value.
3725
            </summary>
3726
        </member>
3727
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
3728
            <summary>
3729
            Writes raw JSON without changing the writer's state.
3730
            </summary>
3731
            <param name="json">The raw JSON to write.</param>
3732
        </member>
3733
        <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
3734
            <summary>
3735
            Writes raw JSON where a value is expected and updates the writer's state.
3736
            </summary>
3737
            <param name="json">The raw JSON to write.</param>
3738
        </member>
3739
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
3740
            <summary>
3741
            Writes a <see cref="T:System.String"/> value.
3742
            </summary>
3743
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
3744
        </member>
3745
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
3746
            <summary>
3747
            Writes a <see cref="T:System.Int32"/> value.
3748
            </summary>
3749
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
3750
        </member>
3751
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
3752
            <summary>
3753
            Writes a <see cref="T:System.UInt32"/> value.
3754
            </summary>
3755
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
3756
        </member>
3757
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
3758
            <summary>
3759
            Writes a <see cref="T:System.Int64"/> value.
3760
            </summary>
3761
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
3762
        </member>
3763
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
3764
            <summary>
3765
            Writes a <see cref="T:System.UInt64"/> value.
3766
            </summary>
3767
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
3768
        </member>
3769
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
3770
            <summary>
3771
            Writes a <see cref="T:System.Single"/> value.
3772
            </summary>
3773
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
3774
        </member>
3775
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
3776
            <summary>
3777
            Writes a <see cref="T:System.Double"/> value.
3778
            </summary>
3779
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
3780
        </member>
3781
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
3782
            <summary>
3783
            Writes a <see cref="T:System.Boolean"/> value.
3784
            </summary>
3785
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
3786
        </member>
3787
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
3788
            <summary>
3789
            Writes a <see cref="T:System.Int16"/> value.
3790
            </summary>
3791
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
3792
        </member>
3793
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
3794
            <summary>
3795
            Writes a <see cref="T:System.UInt16"/> value.
3796
            </summary>
3797
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
3798
        </member>
3799
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
3800
            <summary>
3801
            Writes a <see cref="T:System.Char"/> value.
3802
            </summary>
3803
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
3804
        </member>
3805
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
3806
            <summary>
3807
            Writes a <see cref="T:System.Byte"/> value.
3808
            </summary>
3809
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
3810
        </member>
3811
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
3812
            <summary>
3813
            Writes a <see cref="T:System.SByte"/> value.
3814
            </summary>
3815
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
3816
        </member>
3817
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
3818
            <summary>
3819
            Writes a <see cref="T:System.Decimal"/> value.
3820
            </summary>
3821
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
3822
        </member>
3823
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
3824
            <summary>
3825
            Writes a <see cref="T:System.DateTime"/> value.
3826
            </summary>
3827
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
3828
        </member>
3829
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
3830
            <summary>
3831
            Writes a <see cref="T:System.DateTimeOffset"/> value.
3832
            </summary>
3833
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
3834
        </member>
3835
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
3836
            <summary>
3837
            Writes a <see cref="T:System.Guid"/> value.
3838
            </summary>
3839
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
3840
        </member>
3841
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
3842
            <summary>
3843
            Writes a <see cref="T:System.TimeSpan"/> value.
3844
            </summary>
3845
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
3846
        </member>
3847
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
3848
            <summary>
3849
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value.
3850
            </summary>
3851
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value to write.</param>
3852
        </member>
3853
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
3854
            <summary>
3855
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value.
3856
            </summary>
3857
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value to write.</param>
3858
        </member>
3859
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
3860
            <summary>
3861
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value.
3862
            </summary>
3863
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value to write.</param>
3864
        </member>
3865
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
3866
            <summary>
3867
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value.
3868
            </summary>
3869
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value to write.</param>
3870
        </member>
3871
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
3872
            <summary>
3873
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value.
3874
            </summary>
3875
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value to write.</param>
3876
        </member>
3877
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
3878
            <summary>
3879
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value.
3880
            </summary>
3881
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value to write.</param>
3882
        </member>
3883
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
3884
            <summary>
3885
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value.
3886
            </summary>
3887
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value to write.</param>
3888
        </member>
3889
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
3890
            <summary>
3891
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value.
3892
            </summary>
3893
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value to write.</param>
3894
        </member>
3895
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
3896
            <summary>
3897
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value.
3898
            </summary>
3899
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value to write.</param>
3900
        </member>
3901
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
3902
            <summary>
3903
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value.
3904
            </summary>
3905
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value to write.</param>
3906
        </member>
3907
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
3908
            <summary>
3909
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value.
3910
            </summary>
3911
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value to write.</param>
3912
        </member>
3913
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
3914
            <summary>
3915
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value.
3916
            </summary>
3917
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value to write.</param>
3918
        </member>
3919
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
3920
            <summary>
3921
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value.
3922
            </summary>
3923
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value to write.</param>
3924
        </member>
3925
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
3926
            <summary>
3927
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value.
3928
            </summary>
3929
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value to write.</param>
3930
        </member>
3931
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">
3932
            <summary>
3933
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value.
3934
            </summary>
3935
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value to write.</param>
3936
        </member>
3937
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
3938
            <summary>
3939
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value.
3940
            </summary>
3941
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value to write.</param>
3942
        </member>
3943
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
3944
            <summary>
3945
            Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value.
3946
            </summary>
3947
            <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value to write.</param>
3948
        </member>
3949
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
3950
            <summary>
3951
            Writes a <see cref="T:System.Byte"/>[] value.
3952
            </summary>
3953
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
3954
        </member>
3955
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
3956
            <summary>
3957
            Writes a <see cref="T:System.Uri"/> value.
3958
            </summary>
3959
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
3960
        </member>
3961
        <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
3962
            <summary>
3963
            Writes a <see cref="T:System.Object"/> value.
3964
            An error will raised if the value cannot be written as a single JSON token.
3965
            </summary>
3966
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
3967
        </member>
3968
        <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
3969
            <summary>
3970
            Writes a comment <c>/*...*/</c> containing the specified text.
3971
            </summary>
3972
            <param name="text">Text to place inside the comment.</param>
3973
        </member>
3974
        <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
3975
            <summary>
3976
            Writes the given white space.
3977
            </summary>
3978
            <param name="ws">The string of white space characters.</param>
3979
        </member>
3980
        <member name="M:Newtonsoft.Json.JsonWriter.Dispose(System.Boolean)">
3981
            <summary>
3982
            Releases unmanaged and - optionally - managed resources.
3983
            </summary>
3984
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
3985
        </member>
3986
        <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">
3987
            <summary>
3988
            Sets the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3989
            </summary>
3990
            <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> being written.</param>
3991
            <param name="value">The value being written.</param>
3992
        </member>
3993
        <member name="T:Newtonsoft.Json.JsonWriterException">
3994
            <summary>
3995
            The exception thrown when an error occurs while writing JSON text.
3996
            </summary>
3997
        </member>
3998
        <member name="P:Newtonsoft.Json.JsonWriterException.Path">
3999
            <summary>
4000
            Gets the path to the JSON where the error occurred.
4001
            </summary>
4002
            <value>The path to the JSON where the error occurred.</value>
4003
        </member>
4004
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
4005
            <summary>
4006
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
4007
            </summary>
4008
        </member>
4009
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
4010
            <summary>
4011
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
4012
            with a specified error message.
4013
            </summary>
4014
            <param name="message">The error message that explains the reason for the exception.</param>
4015
        </member>
4016
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
4017
            <summary>
4018
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
4019
            with a specified error message and a reference to the inner exception that is the cause of this exception.
4020
            </summary>
4021
            <param name="message">The error message that explains the reason for the exception.</param>
4022
            <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
4023
        </member>
4024
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
4025
            <summary>
4026
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
4027
            </summary>
4028
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4029
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4030
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is <c>null</c>.</exception>
4031
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is <c>null</c> or <see cref="P:System.Exception.HResult"/> is zero (0).</exception>
4032
        </member>
4033
        <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.String,System.Exception)">
4034
            <summary>
4035
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
4036
            with a specified error message, JSON path and a reference to the inner exception that is the cause of this exception.
4037
            </summary>
4038
            <param name="message">The error message that explains the reason for the exception.</param>
4039
            <param name="path">The path to the JSON where the error occurred.</param>
4040
            <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
4041
        </member>
4042
        <member name="T:Newtonsoft.Json.Linq.CommentHandling">
4043
            <summary>
4044
            Specifies how JSON comments are handled when loading JSON.
4045
            </summary>
4046
        </member>
4047
        <member name="F:Newtonsoft.Json.Linq.CommentHandling.Ignore">
4048
            <summary>
4049
            Ignore comments.
4050
            </summary>
4051
        </member>
4052
        <member name="F:Newtonsoft.Json.Linq.CommentHandling.Load">
4053
            <summary>
4054
            Load comments as a <see cref="T:Newtonsoft.Json.Linq.JValue"/> with type <see cref="F:Newtonsoft.Json.Linq.JTokenType.Comment"/>.
4055
            </summary>
4056
        </member>
4057
        <member name="T:Newtonsoft.Json.Linq.LineInfoHandling">
4058
            <summary>
4059
            Specifies how line information is handled when loading JSON.
4060
            </summary>
4061
        </member>
4062
        <member name="F:Newtonsoft.Json.Linq.LineInfoHandling.Ignore">
4063
            <summary>
4064
            Ignore line information.
4065
            </summary>
4066
        </member>
4067
        <member name="F:Newtonsoft.Json.Linq.LineInfoHandling.Load">
4068
            <summary>
4069
            Load line information.
4070
            </summary>
4071
        </member>
4072
        <member name="T:Newtonsoft.Json.Linq.Extensions">
4073
            <summary>
4074
            Contains the LINQ to JSON extension methods.
4075
            </summary>
4076
        </member>
4077
        <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
4078
            <summary>
4079
            Returns a collection of tokens that contains the ancestors of every token in the source collection.
4080
            </summary>
4081
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
4082
            <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>
4083
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the ancestors of every token in the source collection.</returns>
4084
        </member>
4085
        <member name="M:Newtonsoft.Json.Linq.Extensions.AncestorsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
4086
            <summary>
4087
            Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection.
4088
            </summary>
4089
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</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 every token in the source collection, the ancestors of every token in the source collection.</returns>
4092
        </member>
4093
        <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
4094
            <summary>
4095
            Returns a collection of tokens that contains the descendants of every token in the source collection.
4096
            </summary>
4097
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
4098
            <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>
4099
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the descendants of every token in the source collection.</returns>
4100
        </member>
4101
        <member name="M:Newtonsoft.Json.Linq.Extensions.DescendantsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
4102
            <summary>
4103
            Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection.
4104
            </summary>
4105
            <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
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>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains every token in the source collection, and the descendants of every token in the source collection.</returns>
4108
        </member>
4109
        <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
4110
            <summary>
4111
            Returns a collection of child properties of every object in the source collection.
4112
            </summary>
4113
            <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>
4114
            <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>
4115
        </member>
4116
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
4117
            <summary>
4118
            Returns a collection of child values of every object in the source collection with the given key.
4119
            </summary>
4120
            <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>
4121
            <param name="key">The token key.</param>
4122
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every token in the source collection with the given key.</returns>
4123
        </member>
4124
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
4125
            <summary>
4126
            Returns a collection of child values of every object in the source collection.
4127
            </summary>
4128
            <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>
4129
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every token in the source collection.</returns>
4130
        </member>
4131
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
4132
            <summary>
4133
            Returns a collection of converted child values of every object in the source collection with the given key.
4134
            </summary>
4135
            <typeparam name="U">The type to convert the values to.</typeparam>
4136
            <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>
4137
            <param name="key">The token key.</param>
4138
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection with the given key.</returns>
4139
        </member>
4140
        <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
4141
            <summary>
4142
            Returns a collection of converted child values of every object in the source collection.
4143
            </summary>
4144
            <typeparam name="U">The type to convert the values to.</typeparam>
4145
            <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>
4146
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
4147
        </member>
4148
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
4149
            <summary>
4150
            Converts the value.
4151
            </summary>
4152
            <typeparam name="U">The type to convert the value to.</typeparam>
4153
            <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>
4154
            <returns>A converted value.</returns>
4155
        </member>
4156
        <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
4157
            <summary>
4158
            Converts the value.
4159
            </summary>
4160
            <typeparam name="T">The source collection type.</typeparam>
4161
            <typeparam name="U">The type to convert the value to.</typeparam>
4162
            <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>
4163
            <returns>A converted value.</returns>
4164
        </member>
4165
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
4166
            <summary>
4167
            Returns a collection of child tokens of every array in the source collection.
4168
            </summary>
4169
            <typeparam name="T">The source collection type.</typeparam>
4170
            <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>
4171
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every token in the source collection.</returns>
4172
        </member>
4173
        <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
4174
            <summary>
4175
            Returns a collection of converted child tokens of every array in the source collection.
4176
            </summary>
4177
            <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>
4178
            <typeparam name="U">The type to convert the values to.</typeparam>
4179
            <typeparam name="T">The source collection type.</typeparam>
4180
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
4181
        </member>
4182
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
4183
            <summary>
4184
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
4185
            </summary>
4186
            <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>
4187
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
4188
        </member>
4189
        <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
4190
            <summary>
4191
            Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
4192
            </summary>
4193
            <typeparam name="T">The source collection type.</typeparam>
4194
            <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>
4195
            <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
4196
        </member>
4197
        <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
4198
            <summary>
4199
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
4200
            </summary>
4201
            <typeparam name="T">The type of token.</typeparam>
4202
        </member>
4203
        <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
4204
            <summary>
4205
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
4206
            </summary>
4207
            <value></value>
4208
        </member>
4209
        <member name="T:Newtonsoft.Json.Linq.JArray">
4210
            <summary>
4211
            Represents a JSON array.
4212
            </summary>
4213
            <example>
4214
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
4215
            </example>
4216
        </member>
4217
        <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
4218
            <summary>
4219
            Gets the container's children tokens.
4220
            </summary>
4221
            <value>The container's children tokens.</value>
4222
        </member>
4223
        <member name="P:Newtonsoft.Json.Linq.JArray.Type">
4224
            <summary>
4225
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4226
            </summary>
4227
            <value>The type.</value>
4228
        </member>
4229
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
4230
            <summary>
4231
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
4232
            </summary>
4233
        </member>
4234
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
4235
            <summary>
4236
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
4237
            </summary>
4238
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
4239
        </member>
4240
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
4241
            <summary>
4242
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
4243
            </summary>
4244
            <param name="content">The contents of the array.</param>
4245
        </member>
4246
        <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
4247
            <summary>
4248
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
4249
            </summary>
4250
            <param name="content">The contents of the array.</param>
4251
        </member>
4252
        <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
4253
            <summary>
4254
            Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
4255
            </summary>
4256
            <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>
4257
            <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>
4258
        </member>
4259
        <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
4260
            <summary>
4261
            Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
4262
            </summary>
4263
            <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>
4264
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
4265
            If this is <c>null</c>, default load settings will be used.</param>
4266
            <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>
4267
        </member>
4268
        <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
4269
            <summary>
4270
            Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
4271
            </summary>
4272
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
4273
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
4274
            <example>
4275
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
4276
            </example>
4277
        </member>
4278
        <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
4279
            <summary>
4280
            Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
4281
            </summary>
4282
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
4283
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
4284
            If this is <c>null</c>, default load settings will be used.</param>
4285
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
4286
            <example>
4287
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
4288
            </example>
4289
        </member>
4290
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
4291
            <summary>
4292
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
4293
            </summary>
4294
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
4295
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object.</returns>
4296
        </member>
4297
        <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
4298
            <summary>
4299
            Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
4300
            </summary>
4301
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
4302
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
4303
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object.</returns>
4304
        </member>
4305
        <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
4306
            <summary>
4307
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
4308
            </summary>
4309
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
4310
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
4311
        </member>
4312
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
4313
            <summary>
4314
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
4315
            </summary>
4316
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
4317
        </member>
4318
        <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
4319
            <summary>
4320
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
4321
            </summary>
4322
            <value></value>
4323
        </member>
4324
        <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
4325
            <summary>
4326
            Determines the index of a specific item in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
4327
            </summary>
4328
            <param name="item">The object to locate in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
4329
            <returns>
4330
            The index of <paramref name="item"/> if found in the list; otherwise, -1.
4331
            </returns>
4332
        </member>
4333
        <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
4334
            <summary>
4335
            Inserts an item to the <see cref="T:Newtonsoft.Json.Linq.JArray"/> at the specified index.
4336
            </summary>
4337
            <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
4338
            <param name="item">The object to insert into the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
4339
            <exception cref="T:System.ArgumentOutOfRangeException">
4340
            <paramref name="index"/> is not a valid index in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
4341
            </exception>
4342
        </member>
4343
        <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
4344
            <summary>
4345
            Removes the <see cref="T:Newtonsoft.Json.Linq.JArray"/> item at the specified index.
4346
            </summary>
4347
            <param name="index">The zero-based index of the item to remove.</param>
4348
            <exception cref="T:System.ArgumentOutOfRangeException">
4349
            <paramref name="index"/> is not a valid index in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
4350
            </exception>
4351
        </member>
4352
        <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">
4353
            <summary>
4354
            Returns an enumerator that iterates through the collection.
4355
            </summary>
4356
            <returns>
4357
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that can be used to iterate through the collection.
4358
            </returns>
4359
        </member>
4360
        <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
4361
            <summary>
4362
            Adds an item to the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
4363
            </summary>
4364
            <param name="item">The object to add to the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
4365
        </member>
4366
        <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
4367
            <summary>
4368
            Removes all items from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
4369
            </summary>
4370
        </member>
4371
        <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
4372
            <summary>
4373
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JArray"/> contains a specific value.
4374
            </summary>
4375
            <param name="item">The object to locate in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
4376
            <returns>
4377
            <c>true</c> if <paramref name="item"/> is found in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>; otherwise, <c>false</c>.
4378
            </returns>
4379
        </member>
4380
        <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
4381
            <summary>
4382
            Copies the elements of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> to an array, starting at a particular array index.
4383
            </summary>
4384
            <param name="array">The array.</param>
4385
            <param name="arrayIndex">Index of the array.</param>
4386
        </member>
4387
        <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
4388
            <summary>
4389
            Gets a value indicating whether the <see cref="T:Newtonsoft.Json.Linq.JArray"/> is read-only.
4390
            </summary>
4391
            <returns><c>true</c> if the <see cref="T:Newtonsoft.Json.Linq.JArray"/> is read-only; otherwise, <c>false</c>.</returns>
4392
        </member>
4393
        <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
4394
            <summary>
4395
            Removes the first occurrence of a specific object from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
4396
            </summary>
4397
            <param name="item">The object to remove from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
4398
            <returns>
4399
            <c>true</c> if <paramref name="item"/> was successfully removed from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>; otherwise, <c>false</c>. This method also returns <c>false</c> if <paramref name="item"/> is not found in the original <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
4400
            </returns>
4401
        </member>
4402
        <member name="T:Newtonsoft.Json.Linq.JConstructor">
4403
            <summary>
4404
            Represents a JSON constructor.
4405
            </summary>
4406
        </member>
4407
        <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
4408
            <summary>
4409
            Gets the container's children tokens.
4410
            </summary>
4411
            <value>The container's children tokens.</value>
4412
        </member>
4413
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
4414
            <summary>
4415
            Gets or sets the name of this constructor.
4416
            </summary>
4417
            <value>The constructor name.</value>
4418
        </member>
4419
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
4420
            <summary>
4421
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4422
            </summary>
4423
            <value>The type.</value>
4424
        </member>
4425
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
4426
            <summary>
4427
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
4428
            </summary>
4429
        </member>
4430
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
4431
            <summary>
4432
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
4433
            </summary>
4434
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
4435
        </member>
4436
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
4437
            <summary>
4438
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
4439
            </summary>
4440
            <param name="name">The constructor name.</param>
4441
            <param name="content">The contents of the constructor.</param>
4442
        </member>
4443
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
4444
            <summary>
4445
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
4446
            </summary>
4447
            <param name="name">The constructor name.</param>
4448
            <param name="content">The contents of the constructor.</param>
4449
        </member>
4450
        <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
4451
            <summary>
4452
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
4453
            </summary>
4454
            <param name="name">The constructor name.</param>
4455
        </member>
4456
        <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
4457
            <summary>
4458
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
4459
            </summary>
4460
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
4461
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
4462
        </member>
4463
        <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
4464
            <summary>
4465
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
4466
            </summary>
4467
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
4468
        </member>
4469
        <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
4470
            <summary>
4471
            Loads a <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
4472
            </summary>
4473
            <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>
4474
            <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>
4475
        </member>
4476
        <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
4477
            <summary>
4478
            Loads a <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
4479
            </summary>
4480
            <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>
4481
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
4482
            If this is <c>null</c>, default load settings will be used.</param>
4483
            <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>
4484
        </member>
4485
        <member name="T:Newtonsoft.Json.Linq.JContainer">
4486
            <summary>
4487
            Represents a token that can contain other tokens.
4488
            </summary>
4489
        </member>
4490
        <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
4491
            <summary>
4492
            Occurs when the list changes or an item in the list changes.
4493
            </summary>
4494
        </member>
4495
        <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
4496
            <summary>
4497
            Occurs before an item is added to the collection.
4498
            </summary>
4499
        </member>
4500
        <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
4501
            <summary>
4502
            Gets the container's children tokens.
4503
            </summary>
4504
            <value>The container's children tokens.</value>
4505
        </member>
4506
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
4507
            <summary>
4508
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
4509
            </summary>
4510
            <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
4511
        </member>
4512
        <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
4513
            <summary>
4514
            Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
4515
            </summary>
4516
            <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
4517
        </member>
4518
        <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
4519
            <summary>
4520
            Gets a value indicating whether this token has child tokens.
4521
            </summary>
4522
            <value>
4523
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
4524
            </value>
4525
        </member>
4526
        <member name="P:Newtonsoft.Json.Linq.JContainer.First">
4527
            <summary>
4528
            Get the first child token of this token.
4529
            </summary>
4530
            <value>
4531
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4532
            </value>
4533
        </member>
4534
        <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
4535
            <summary>
4536
            Get the last child token of this token.
4537
            </summary>
4538
            <value>
4539
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4540
            </value>
4541
        </member>
4542
        <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
4543
            <summary>
4544
            Returns a collection of the child tokens of this token, in document order.
4545
            </summary>
4546
            <returns>
4547
            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.
4548
            </returns>
4549
        </member>
4550
        <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
4551
            <summary>
4552
            Returns a collection of the child values of this token, in document order.
4553
            </summary>
4554
            <typeparam name="T">The type to convert the values to.</typeparam>
4555
            <returns>
4556
            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.
4557
            </returns>
4558
        </member>
4559
        <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
4560
            <summary>
4561
            Returns a collection of the descendant tokens for this token in document order.
4562
            </summary>
4563
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
4564
        </member>
4565
        <member name="M:Newtonsoft.Json.Linq.JContainer.DescendantsAndSelf">
4566
            <summary>
4567
            Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
4568
            </summary>
4569
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing this token, and all the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
4570
        </member>
4571
        <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
4572
            <summary>
4573
            Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4574
            </summary>
4575
            <param name="content">The content to be added.</param>
4576
        </member>
4577
        <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
4578
            <summary>
4579
            Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4580
            </summary>
4581
            <param name="content">The content to be added.</param>
4582
        </member>
4583
        <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
4584
            <summary>
4585
            Creates a <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4586
            </summary>
4587
            <returns>A <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
4588
        </member>
4589
        <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
4590
            <summary>
4591
            Replaces the child nodes of this token with the specified content.
4592
            </summary>
4593
            <param name="content">The content.</param>
4594
        </member>
4595
        <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
4596
            <summary>
4597
            Removes the child nodes from this token.
4598
            </summary>
4599
        </member>
4600
        <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">
4601
            <summary>
4602
            Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4603
            </summary>
4604
            <param name="content">The content to be merged.</param>
4605
        </member>
4606
        <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">
4607
            <summary>
4608
            Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.
4609
            </summary>
4610
            <param name="content">The content to be merged.</param>
4611
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>
4612
        </member>
4613
        <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
4614
            <summary>
4615
            Gets the count of child JSON tokens.
4616
            </summary>
4617
            <value>The count of child JSON tokens.</value>
4618
        </member>
4619
        <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
4620
            <summary>
4621
            Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
4622
            </summary>
4623
            <typeparam name="T">The type of token.</typeparam>
4624
        </member>
4625
        <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
4626
            <summary>
4627
            An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
4628
            </summary>
4629
        </member>
4630
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
4631
            <summary>
4632
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
4633
            </summary>
4634
            <param name="enumerable">The enumerable.</param>
4635
        </member>
4636
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
4637
            <summary>
4638
            Returns an enumerator that can be used to iterate through the collection.
4639
            </summary>
4640
            <returns>
4641
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
4642
            </returns>
4643
        </member>
4644
        <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
4645
            <summary>
4646
            Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
4647
            </summary>
4648
            <value></value>
4649
        </member>
4650
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(Newtonsoft.Json.Linq.JEnumerable{`0})">
4651
            <summary>
4652
            Determines whether the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance.
4653
            </summary>
4654
            <param name="other">The <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> to compare with this instance.</param>
4655
            <returns>
4656
                    <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance; otherwise, <c>false</c>.
4657
            </returns>
4658
        </member>
4659
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
4660
            <summary>
4661
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
4662
            </summary>
4663
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
4664
            <returns>
4665
                    <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
4666
            </returns>
4667
        </member>
4668
        <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
4669
            <summary>
4670
            Returns a hash code for this instance.
4671
            </summary>
4672
            <returns>
4673
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
4674
            </returns>
4675
        </member>
4676
        <member name="T:Newtonsoft.Json.Linq.JObject">
4677
            <summary>
4678
            Represents a JSON object.
4679
            </summary>
4680
            <example>
4681
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
4682
            </example>
4683
        </member>
4684
        <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
4685
            <summary>
4686
            Gets the container's children tokens.
4687
            </summary>
4688
            <value>The container's children tokens.</value>
4689
        </member>
4690
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
4691
            <summary>
4692
            Occurs when a property value changes.
4693
            </summary>
4694
        </member>
4695
        <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">
4696
            <summary>
4697
            Occurs when a property value is changing.
4698
            </summary>
4699
        </member>
4700
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
4701
            <summary>
4702
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
4703
            </summary>
4704
        </member>
4705
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
4706
            <summary>
4707
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
4708
            </summary>
4709
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
4710
        </member>
4711
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
4712
            <summary>
4713
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
4714
            </summary>
4715
            <param name="content">The contents of the object.</param>
4716
        </member>
4717
        <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
4718
            <summary>
4719
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
4720
            </summary>
4721
            <param name="content">The contents of the object.</param>
4722
        </member>
4723
        <member name="P:Newtonsoft.Json.Linq.JObject.Type">
4724
            <summary>
4725
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4726
            </summary>
4727
            <value>The type.</value>
4728
        </member>
4729
        <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
4730
            <summary>
4731
            Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JProperty"/> of this object's properties.
4732
            </summary>
4733
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JProperty"/> of this object's properties.</returns>
4734
        </member>
4735
        <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
4736
            <summary>
4737
            Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
4738
            </summary>
4739
            <param name="name">The property name.</param>
4740
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or <c>null</c>.</returns>
4741
        </member>
4742
        <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
4743
            <summary>
4744
            Gets a <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this object's property values.
4745
            </summary>
4746
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this object's property values.</returns>
4747
        </member>
4748
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
4749
            <summary>
4750
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
4751
            </summary>
4752
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
4753
        </member>
4754
        <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
4755
            <summary>
4756
            Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
4757
            </summary>
4758
            <value></value>
4759
        </member>
4760
        <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
4761
            <summary>
4762
            Loads a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
4763
            </summary>
4764
            <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>
4765
            <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>
4766
            <exception cref="T:Newtonsoft.Json.JsonReaderException">
4767
                <paramref name="reader"/> is not valid JSON.
4768
            </exception>
4769
        </member>
4770
        <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
4771
            <summary>
4772
            Loads a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
4773
            </summary>
4774
            <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>
4775
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
4776
            If this is <c>null</c>, default load settings will be used.</param>
4777
            <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>
4778
            <exception cref="T:Newtonsoft.Json.JsonReaderException">
4779
                <paramref name="reader"/> is not valid JSON.
4780
            </exception>
4781
        </member>
4782
        <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
4783
            <summary>
4784
            Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
4785
            </summary>
4786
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
4787
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
4788
            <exception cref="T:Newtonsoft.Json.JsonReaderException">
4789
                <paramref name="json"/> is not valid JSON.
4790
            </exception>
4791
            <example>
4792
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
4793
            </example>
4794
        </member>
4795
        <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
4796
            <summary>
4797
            Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
4798
            </summary>
4799
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
4800
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
4801
            If this is <c>null</c>, default load settings will be used.</param>
4802
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
4803
            <exception cref="T:Newtonsoft.Json.JsonReaderException">
4804
                <paramref name="json"/> is not valid JSON.
4805
            </exception>
4806
            <example>
4807
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
4808
            </example>
4809
        </member>
4810
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
4811
            <summary>
4812
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
4813
            </summary>
4814
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
4815
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object.</returns>
4816
        </member>
4817
        <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
4818
            <summary>
4819
            Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
4820
            </summary>
4821
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
4822
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
4823
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object.</returns>
4824
        </member>
4825
        <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
4826
            <summary>
4827
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
4828
            </summary>
4829
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
4830
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
4831
        </member>
4832
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
4833
            <summary>
4834
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
4835
            </summary>
4836
            <param name="propertyName">Name of the property.</param>
4837
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
4838
        </member>
4839
        <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
4840
            <summary>
4841
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
4842
            The exact property name will be searched for first and if no matching property is found then
4843
            the <see cref="T:System.StringComparison"/> will be used to match a property.
4844
            </summary>
4845
            <param name="propertyName">Name of the property.</param>
4846
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
4847
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
4848
        </member>
4849
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
4850
            <summary>
4851
            Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
4852
            The exact property name will be searched for first and if no matching property is found then
4853
            the <see cref="T:System.StringComparison"/> will be used to match a property.
4854
            </summary>
4855
            <param name="propertyName">Name of the property.</param>
4856
            <param name="value">The value.</param>
4857
            <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
4858
            <returns><c>true</c> if a value was successfully retrieved; otherwise, <c>false</c>.</returns>
4859
        </member>
4860
        <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
4861
            <summary>
4862
            Adds the specified property name.
4863
            </summary>
4864
            <param name="propertyName">Name of the property.</param>
4865
            <param name="value">The value.</param>
4866
        </member>
4867
        <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
4868
            <summary>
4869
            Removes the property with the specified name.
4870
            </summary>
4871
            <param name="propertyName">Name of the property.</param>
4872
            <returns><c>true</c> if item was successfully removed; otherwise, <c>false</c>.</returns>
4873
        </member>
4874
        <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
4875
            <summary>
4876
            Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
4877
            </summary>
4878
            <param name="propertyName">Name of the property.</param>
4879
            <param name="value">The value.</param>
4880
            <returns><c>true</c> if a value was successfully retrieved; otherwise, <c>false</c>.</returns>
4881
        </member>
4882
        <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
4883
            <summary>
4884
            Returns an enumerator that can be used to iterate through the collection.
4885
            </summary>
4886
            <returns>
4887
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
4888
            </returns>
4889
        </member>
4890
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
4891
            <summary>
4892
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
4893
            </summary>
4894
            <param name="propertyName">Name of the property.</param>
4895
        </member>
4896
        <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">
4897
            <summary>
4898
            Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments.
4899
            </summary>
4900
            <param name="propertyName">Name of the property.</param>
4901
        </member>
4902
        <member name="T:Newtonsoft.Json.Linq.JProperty">
4903
            <summary>
4904
            Represents a JSON property.
4905
            </summary>
4906
        </member>
4907
        <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
4908
            <summary>
4909
            Gets the container's children tokens.
4910
            </summary>
4911
            <value>The container's children tokens.</value>
4912
        </member>
4913
        <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
4914
            <summary>
4915
            Gets the property name.
4916
            </summary>
4917
            <value>The property name.</value>
4918
        </member>
4919
        <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
4920
            <summary>
4921
            Gets or sets the property value.
4922
            </summary>
4923
            <value>The property value.</value>
4924
        </member>
4925
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
4926
            <summary>
4927
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
4928
            </summary>
4929
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
4930
        </member>
4931
        <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
4932
            <summary>
4933
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4934
            </summary>
4935
            <value>The type.</value>
4936
        </member>
4937
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
4938
            <summary>
4939
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
4940
            </summary>
4941
            <param name="name">The property name.</param>
4942
            <param name="content">The property content.</param>
4943
        </member>
4944
        <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
4945
            <summary>
4946
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
4947
            </summary>
4948
            <param name="name">The property name.</param>
4949
            <param name="content">The property content.</param>
4950
        </member>
4951
        <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
4952
            <summary>
4953
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
4954
            </summary>
4955
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
4956
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
4957
        </member>
4958
        <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
4959
            <summary>
4960
            Loads a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
4961
            </summary>
4962
            <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>
4963
            <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>
4964
        </member>
4965
        <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
4966
            <summary>
4967
            Loads a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
4968
            </summary>
4969
            <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>
4970
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
4971
            If this is <c>null</c>, default load settings will be used.</param>
4972
            <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>
4973
        </member>
4974
        <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
4975
            <summary>
4976
            Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
4977
            </summary>
4978
        </member>
4979
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">
4980
            <summary>
4981
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
4982
            </summary>
4983
            <param name="name">The name.</param>
4984
        </member>
4985
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
4986
            <summary>
4987
            When overridden in a derived class, returns whether resetting an object changes its value.
4988
            </summary>
4989
            <returns>
4990
            <c>true</c> if resetting the component changes its value; otherwise, <c>false</c>.
4991
            </returns>
4992
            <param name="component">The component to test for reset capability.</param>
4993
        </member>
4994
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
4995
            <summary>
4996
            When overridden in a derived class, gets the current value of the property on a component.
4997
            </summary>
4998
            <returns>
4999
            The value of a property for a given component.
5000
            </returns>
5001
            <param name="component">The component with the property for which to retrieve the value.</param>
5002
        </member>
5003
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
5004
            <summary>
5005
            When overridden in a derived class, resets the value for this property of the component to the default value.
5006
            </summary>
5007
            <param name="component">The component with the property value that is to be reset to the default value.</param>
5008
        </member>
5009
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
5010
            <summary>
5011
            When overridden in a derived class, sets the value of the component to a different value.
5012
            </summary>
5013
            <param name="component">The component with the property value that is to be set.</param>
5014
            <param name="value">The new value.</param>
5015
        </member>
5016
        <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
5017
            <summary>
5018
            When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
5019
            </summary>
5020
            <returns>
5021
            <c>true</c> if the property should be persisted; otherwise, <c>false</c>.
5022
            </returns>
5023
            <param name="component">The component with the property to be examined for persistence.</param>
5024
        </member>
5025
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
5026
            <summary>
5027
            When overridden in a derived class, gets the type of the component this property is bound to.
5028
            </summary>
5029
            <returns>
5030
            A <see cref="T:System.Type"/> that represents the type of component this property is bound to.
5031
            When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"/> or
5032
            <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"/>
5033
            methods are invoked, the object specified might be an instance of this type.
5034
            </returns>
5035
        </member>
5036
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
5037
            <summary>
5038
            When overridden in a derived class, gets a value indicating whether this property is read-only.
5039
            </summary>
5040
            <returns>
5041
            <c>true</c> if the property is read-only; otherwise, <c>false</c>.
5042
            </returns>
5043
        </member>
5044
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
5045
            <summary>
5046
            When overridden in a derived class, gets the type of the property.
5047
            </summary>
5048
            <returns>
5049
            A <see cref="T:System.Type"/> that represents the type of the property.
5050
            </returns>
5051
        </member>
5052
        <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
5053
            <summary>
5054
            Gets the hash code for the name of the member.
5055
            </summary>
5056
            <value></value>
5057
            <returns>
5058
            The hash code for the name of the member.
5059
            </returns>
5060
        </member>
5061
        <member name="T:Newtonsoft.Json.Linq.JRaw">
5062
            <summary>
5063
            Represents a raw JSON string.
5064
            </summary>
5065
        </member>
5066
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
5067
            <summary>
5068
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
5069
            </summary>
5070
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
5071
        </member>
5072
        <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
5073
            <summary>
5074
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
5075
            </summary>
5076
            <param name="rawJson">The raw json.</param>
5077
        </member>
5078
        <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
5079
            <summary>
5080
            Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
5081
            </summary>
5082
            <param name="reader">The reader.</param>
5083
            <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
5084
        </member>
5085
        <member name="T:Newtonsoft.Json.Linq.JsonLoadSettings">
5086
            <summary>
5087
            Specifies the settings used when loading JSON.
5088
            </summary>
5089
        </member>
5090
        <member name="M:Newtonsoft.Json.Linq.JsonLoadSettings.#ctor">
5091
            <summary>
5092
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> class.
5093
            </summary>
5094
        </member>
5095
        <member name="P:Newtonsoft.Json.Linq.JsonLoadSettings.CommentHandling">
5096
            <summary>
5097
            Gets or sets how JSON comments are handled when loading JSON.
5098
            </summary>
5099
            <value>The JSON comment handling.</value>
5100
        </member>
5101
        <member name="P:Newtonsoft.Json.Linq.JsonLoadSettings.LineInfoHandling">
5102
            <summary>
5103
            Gets or sets how JSON line info is handled when loading JSON.
5104
            </summary>
5105
            <value>The JSON line info handling.</value>
5106
        </member>
5107
        <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">
5108
            <summary>
5109
            Specifies the settings used when merging JSON.
5110
            </summary>
5111
        </member>
5112
        <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">
5113
            <summary>
5114
            Gets or sets the method used when merging JSON arrays.
5115
            </summary>
5116
            <value>The method used when merging JSON arrays.</value>
5117
        </member>
5118
        <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeNullValueHandling">
5119
            <summary>
5120
            Gets or sets how null value properties are merged.
5121
            </summary>
5122
            <value>How null value properties are merged.</value>
5123
        </member>
5124
        <member name="T:Newtonsoft.Json.Linq.JToken">
5125
            <summary>
5126
            Represents an abstract JSON token.
5127
            </summary>
5128
        </member>
5129
        <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
5130
            <summary>
5131
            Gets a comparer that can compare two tokens for value equality.
5132
            </summary>
5133
            <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
5134
        </member>
5135
        <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
5136
            <summary>
5137
            Gets or sets the parent.
5138
            </summary>
5139
            <value>The parent.</value>
5140
        </member>
5141
        <member name="P:Newtonsoft.Json.Linq.JToken.Root">
5142
            <summary>
5143
            Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5144
            </summary>
5145
            <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
5146
        </member>
5147
        <member name="P:Newtonsoft.Json.Linq.JToken.Type">
5148
            <summary>
5149
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5150
            </summary>
5151
            <value>The type.</value>
5152
        </member>
5153
        <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
5154
            <summary>
5155
            Gets a value indicating whether this token has child tokens.
5156
            </summary>
5157
            <value>
5158
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
5159
            </value>
5160
        </member>
5161
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
5162
            <summary>
5163
            Compares the values of two tokens, including the values of all descendant tokens.
5164
            </summary>
5165
            <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
5166
            <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
5167
            <returns><c>true</c> if the tokens are equal; otherwise <c>false</c>.</returns>
5168
        </member>
5169
        <member name="P:Newtonsoft.Json.Linq.JToken.Next">
5170
            <summary>
5171
            Gets the next sibling token of this node.
5172
            </summary>
5173
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
5174
        </member>
5175
        <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
5176
            <summary>
5177
            Gets the previous sibling token of this node.
5178
            </summary>
5179
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
5180
        </member>
5181
        <member name="P:Newtonsoft.Json.Linq.JToken.Path">
5182
            <summary>
5183
            Gets the path of the JSON token. 
5184
            </summary>
5185
        </member>
5186
        <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
5187
            <summary>
5188
            Adds the specified content immediately after this token.
5189
            </summary>
5190
            <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
5191
        </member>
5192
        <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
5193
            <summary>
5194
            Adds the specified content immediately before this token.
5195
            </summary>
5196
            <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
5197
        </member>
5198
        <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
5199
            <summary>
5200
            Returns a collection of the ancestor tokens of this token.
5201
            </summary>
5202
            <returns>A collection of the ancestor tokens of this token.</returns>
5203
        </member>
5204
        <member name="M:Newtonsoft.Json.Linq.JToken.AncestorsAndSelf">
5205
            <summary>
5206
            Returns a collection of tokens that contain this token, and the ancestors of this token.
5207
            </summary>
5208
            <returns>A collection of tokens that contain this token, and the ancestors of this token.</returns>
5209
        </member>
5210
        <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
5211
            <summary>
5212
            Returns a collection of the sibling tokens after this token, in document order.
5213
            </summary>
5214
            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
5215
        </member>
5216
        <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
5217
            <summary>
5218
            Returns a collection of the sibling tokens before this token, in document order.
5219
            </summary>
5220
            <returns>A collection of the sibling tokens before this token, in document order.</returns>
5221
        </member>
5222
        <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
5223
            <summary>
5224
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5225
            </summary>
5226
            <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
5227
        </member>
5228
        <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
5229
            <summary>
5230
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
5231
            </summary>
5232
            <typeparam name="T">The type to convert the token to.</typeparam>
5233
            <param name="key">The token key.</param>
5234
            <returns>The converted token value.</returns>
5235
        </member>
5236
        <member name="P:Newtonsoft.Json.Linq.JToken.First">
5237
            <summary>
5238
            Get the first child token of this token.
5239
            </summary>
5240
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
5241
        </member>
5242
        <member name="P:Newtonsoft.Json.Linq.JToken.Last">
5243
            <summary>
5244
            Get the last child token of this token.
5245
            </summary>
5246
            <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
5247
        </member>
5248
        <member name="M:Newtonsoft.Json.Linq.JToken.Children">
5249
            <summary>
5250
            Returns a collection of the child tokens of this token, in document order.
5251
            </summary>
5252
            <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>
5253
        </member>
5254
        <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
5255
            <summary>
5256
            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
5257
            </summary>
5258
            <typeparam name="T">The type to filter the child tokens on.</typeparam>
5259
            <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>
5260
        </member>
5261
        <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
5262
            <summary>
5263
            Returns a collection of the child values of this token, in document order.
5264
            </summary>
5265
            <typeparam name="T">The type to convert the values to.</typeparam>
5266
            <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>
5267
        </member>
5268
        <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
5269
            <summary>
5270
            Removes this token from its parent.
5271
            </summary>
5272
        </member>
5273
        <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
5274
            <summary>
5275
            Replaces this token with the specified token.
5276
            </summary>
5277
            <param name="value">The value.</param>
5278
        </member>
5279
        <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5280
            <summary>
5281
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5282
            </summary>
5283
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5284
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5285
        </member>
5286
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
5287
            <summary>
5288
            Returns the indented JSON for this token.
5289
            </summary>
5290
            <returns>
5291
            The indented JSON for this token.
5292
            </returns>
5293
        </member>
5294
        <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
5295
            <summary>
5296
            Returns the JSON for this token using the given formatting and converters.
5297
            </summary>
5298
            <param name="formatting">Indicates how the output should be formatted.</param>
5299
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>s which will be used when writing the token.</param>
5300
            <returns>The JSON for this token using the given formatting and converters.</returns>
5301
        </member>
5302
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
5303
            <summary>
5304
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
5305
            </summary>
5306
            <param name="value">The value.</param>
5307
            <returns>The result of the conversion.</returns>
5308
        </member>
5309
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
5310
            <summary>
5311
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>.
5312
            </summary>
5313
            <param name="value">The value.</param>
5314
            <returns>The result of the conversion.</returns>
5315
        </member>
5316
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
5317
            <summary>
5318
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
5319
            </summary>
5320
            <param name="value">The value.</param>
5321
            <returns>The result of the conversion.</returns>
5322
        </member>
5323
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
5324
            <summary>
5325
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/>.
5326
            </summary>
5327
            <param name="value">The value.</param>
5328
            <returns>The result of the conversion.</returns>
5329
        </member>
5330
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
5331
            <summary>
5332
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
5333
            </summary>
5334
            <param name="value">The value.</param>
5335
            <returns>The result of the conversion.</returns>
5336
        </member>
5337
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">
5338
            <summary>
5339
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
5340
            </summary>
5341
            <param name="value">The value.</param>
5342
            <returns>The result of the conversion.</returns>
5343
        </member>
5344
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
5345
            <summary>
5346
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
5347
            </summary>
5348
            <param name="value">The value.</param>
5349
            <returns>The result of the conversion.</returns>
5350
        </member>
5351
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
5352
            <summary>
5353
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
5354
            </summary>
5355
            <param name="value">The value.</param>
5356
            <returns>The result of the conversion.</returns>
5357
        </member>
5358
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
5359
            <summary>
5360
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/>.
5361
            </summary>
5362
            <param name="value">The value.</param>
5363
            <returns>The result of the conversion.</returns>
5364
        </member>
5365
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
5366
            <summary>
5367
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
5368
            </summary>
5369
            <param name="value">The value.</param>
5370
            <returns>The result of the conversion.</returns>
5371
        </member>
5372
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
5373
            <summary>
5374
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
5375
            </summary>
5376
            <param name="value">The value.</param>
5377
            <returns>The result of the conversion.</returns>
5378
        </member>
5379
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
5380
            <summary>
5381
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
5382
            </summary>
5383
            <param name="value">The value.</param>
5384
            <returns>The result of the conversion.</returns>
5385
        </member>
5386
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
5387
            <summary>
5388
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.
5389
            </summary>
5390
            <param name="value">The value.</param>
5391
            <returns>The result of the conversion.</returns>
5392
        </member>
5393
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
5394
            <summary>
5395
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.
5396
            </summary>
5397
            <param name="value">The value.</param>
5398
            <returns>The result of the conversion.</returns>
5399
        </member>
5400
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">
5401
            <summary>
5402
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.
5403
            </summary>
5404
            <param name="value">The value.</param>
5405
            <returns>The result of the conversion.</returns>
5406
        </member>
5407
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
5408
            <summary>
5409
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> .
5410
            </summary>
5411
            <param name="value">The value.</param>
5412
            <returns>The result of the conversion.</returns>
5413
        </member>
5414
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
5415
            <summary>
5416
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/>.
5417
            </summary>
5418
            <param name="value">The value.</param>
5419
            <returns>The result of the conversion.</returns>
5420
        </member>
5421
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
5422
            <summary>
5423
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/>.
5424
            </summary>
5425
            <param name="value">The value.</param>
5426
            <returns>The result of the conversion.</returns>
5427
        </member>
5428
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
5429
            <summary>
5430
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/>.
5431
            </summary>
5432
            <param name="value">The value.</param>
5433
            <returns>The result of the conversion.</returns>
5434
        </member>
5435
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">
5436
            <summary>
5437
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/>.
5438
            </summary>
5439
            <param name="value">The value.</param>
5440
            <returns>The result of the conversion.</returns>
5441
        </member>
5442
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
5443
            <summary>
5444
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
5445
            </summary>
5446
            <param name="value">The value.</param>
5447
            <returns>The result of the conversion.</returns>
5448
        </member>
5449
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
5450
            <summary>
5451
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/>.
5452
            </summary>
5453
            <param name="value">The value.</param>
5454
            <returns>The result of the conversion.</returns>
5455
        </member>
5456
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
5457
            <summary>
5458
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/>.
5459
            </summary>
5460
            <param name="value">The value.</param>
5461
            <returns>The result of the conversion.</returns>
5462
        </member>
5463
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
5464
            <summary>
5465
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
5466
            </summary>
5467
            <param name="value">The value.</param>
5468
            <returns>The result of the conversion.</returns>
5469
        </member>
5470
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
5471
            <summary>
5472
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/>.
5473
            </summary>
5474
            <param name="value">The value.</param>
5475
            <returns>The result of the conversion.</returns>
5476
        </member>
5477
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
5478
            <summary>
5479
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/>.
5480
            </summary>
5481
            <param name="value">The value.</param>
5482
            <returns>The result of the conversion.</returns>
5483
        </member>
5484
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
5485
            <summary>
5486
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
5487
            </summary>
5488
            <param name="value">The value.</param>
5489
            <returns>The result of the conversion.</returns>
5490
        </member>
5491
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
5492
            <summary>
5493
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
5494
            </summary>
5495
            <param name="value">The value.</param>
5496
            <returns>The result of the conversion.</returns>
5497
        </member>
5498
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
5499
            <summary>
5500
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
5501
            </summary>
5502
            <param name="value">The value.</param>
5503
            <returns>The result of the conversion.</returns>
5504
        </member>
5505
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
5506
            <summary>
5507
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
5508
            </summary>
5509
            <param name="value">The value.</param>
5510
            <returns>The result of the conversion.</returns>
5511
        </member>
5512
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
5513
            <summary>
5514
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
5515
            </summary>
5516
            <param name="value">The value.</param>
5517
            <returns>The result of the conversion.</returns>
5518
        </member>
5519
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
5520
            <summary>
5521
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>[].
5522
            </summary>
5523
            <param name="value">The value.</param>
5524
            <returns>The result of the conversion.</returns>
5525
        </member>
5526
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
5527
            <summary>
5528
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
5529
            </summary>
5530
            <param name="value">The value.</param>
5531
            <returns>The result of the conversion.</returns>
5532
        </member>
5533
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
5534
            <summary>
5535
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> .
5536
            </summary>
5537
            <param name="value">The value.</param>
5538
            <returns>The result of the conversion.</returns>
5539
        </member>
5540
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
5541
            <summary>
5542
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
5543
            </summary>
5544
            <param name="value">The value.</param>
5545
            <returns>The result of the conversion.</returns>
5546
        </member>
5547
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
5548
            <summary>
5549
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/>.
5550
            </summary>
5551
            <param name="value">The value.</param>
5552
            <returns>The result of the conversion.</returns>
5553
        </member>
5554
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
5555
            <summary>
5556
            Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.
5557
            </summary>
5558
            <param name="value">The value.</param>
5559
            <returns>The result of the conversion.</returns>
5560
        </member>
5561
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
5562
            <summary>
5563
            Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5564
            </summary>
5565
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5566
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5567
        </member>
5568
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">
5569
            <summary>
5570
            Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5571
            </summary>
5572
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5573
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5574
        </member>
5575
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">
5576
            <summary>
5577
            Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5578
            </summary>
5579
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5580
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5581
        </member>
5582
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">
5583
            <summary>
5584
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5585
            </summary>
5586
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5587
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5588
        </member>
5589
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">
5590
            <summary>
5591
            Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5592
            </summary>
5593
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5594
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5595
        </member>
5596
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">
5597
            <summary>
5598
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5599
            </summary>
5600
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5601
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5602
        </member>
5603
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
5604
            <summary>
5605
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5606
            </summary>
5607
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5608
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5609
        </member>
5610
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
5611
            <summary>
5612
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5613
            </summary>
5614
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5615
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5616
        </member>
5617
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
5618
            <summary>
5619
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5620
            </summary>
5621
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5622
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5623
        </member>
5624
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">
5625
            <summary>
5626
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5627
            </summary>
5628
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5629
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5630
        </member>
5631
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
5632
            <summary>
5633
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5634
            </summary>
5635
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5636
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5637
        </member>
5638
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
5639
            <summary>
5640
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5641
            </summary>
5642
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5643
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5644
        </member>
5645
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
5646
            <summary>
5647
            Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5648
            </summary>
5649
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5650
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5651
        </member>
5652
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
5653
            <summary>
5654
            Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5655
            </summary>
5656
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5657
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5658
        </member>
5659
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
5660
            <summary>
5661
            Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5662
            </summary>
5663
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5664
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5665
        </member>
5666
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
5667
            <summary>
5668
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5669
            </summary>
5670
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5671
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5672
        </member>
5673
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
5674
            <summary>
5675
            Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5676
            </summary>
5677
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5678
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5679
        </member>
5680
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
5681
            <summary>
5682
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5683
            </summary>
5684
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5685
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5686
        </member>
5687
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
5688
            <summary>
5689
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5690
            </summary>
5691
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5692
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5693
        </member>
5694
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
5695
            <summary>
5696
            Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5697
            </summary>
5698
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5699
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5700
        </member>
5701
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
5702
            <summary>
5703
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5704
            </summary>
5705
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5706
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5707
        </member>
5708
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
5709
            <summary>
5710
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5711
            </summary>
5712
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5713
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5714
        </member>
5715
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
5716
            <summary>
5717
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5718
            </summary>
5719
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5720
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5721
        </member>
5722
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
5723
            <summary>
5724
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5725
            </summary>
5726
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5727
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5728
        </member>
5729
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
5730
            <summary>
5731
            Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5732
            </summary>
5733
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5734
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5735
        </member>
5736
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
5737
            <summary>
5738
            Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5739
            </summary>
5740
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5741
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5742
        </member>
5743
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
5744
            <summary>
5745
            Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5746
            </summary>
5747
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5748
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5749
        </member>
5750
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
5751
            <summary>
5752
            Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5753
            </summary>
5754
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5755
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5756
        </member>
5757
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
5758
            <summary>
5759
            Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5760
            </summary>
5761
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5762
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5763
        </member>
5764
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
5765
            <summary>
5766
            Performs an implicit conversion from <see cref="T:System.Byte"/>[] to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5767
            </summary>
5768
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5769
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5770
        </member>
5771
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
5772
            <summary>
5773
            Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5774
            </summary>
5775
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5776
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5777
        </member>
5778
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
5779
            <summary>
5780
            Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5781
            </summary>
5782
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5783
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5784
        </member>
5785
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
5786
            <summary>
5787
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5788
            </summary>
5789
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5790
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5791
        </member>
5792
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
5793
            <summary>
5794
            Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5795
            </summary>
5796
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5797
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5798
        </member>
5799
        <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
5800
            <summary>
5801
            Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5802
            </summary>
5803
            <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
5804
            <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
5805
        </member>
5806
        <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
5807
            <summary>
5808
            Creates a <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
5809
            </summary>
5810
            <returns>A <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
5811
        </member>
5812
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
5813
            <summary>
5814
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
5815
            </summary>
5816
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
5817
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object.</returns>
5818
        </member>
5819
        <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
5820
            <summary>
5821
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5822
            </summary>
5823
            <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
5824
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
5825
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object.</returns>
5826
        </member>
5827
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
5828
            <summary>
5829
            Creates an instance of the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5830
            </summary>
5831
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
5832
            <returns>The new object created from the JSON value.</returns>
5833
        </member>
5834
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
5835
            <summary>
5836
            Creates an instance of the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5837
            </summary>
5838
            <param name="objectType">The object type that the token will be deserialized to.</param>
5839
            <returns>The new object created from the JSON value.</returns>
5840
        </member>
5841
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
5842
            <summary>
5843
            Creates an instance of the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5844
            </summary>
5845
            <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
5846
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
5847
            <returns>The new object created from the JSON value.</returns>
5848
        </member>
5849
        <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
5850
            <summary>
5851
            Creates an instance of the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5852
            </summary>
5853
            <param name="objectType">The object type that the token will be deserialized to.</param>
5854
            <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
5855
            <returns>The new object created from the JSON value.</returns>
5856
        </member>
5857
        <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
5858
            <summary>
5859
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
5860
            </summary>
5861
            <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
5862
            <returns>
5863
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
5864
            that were read from the reader. The runtime type of the token is determined
5865
            by the token type of the first token encountered in the reader.
5866
            </returns>
5867
        </member>
5868
        <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
5869
            <summary>
5870
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
5871
            </summary>
5872
            <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>
5873
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
5874
            If this is <c>null</c>, default load settings will be used.</param>
5875
            <returns>
5876
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
5877
            that were read from the reader. The runtime type of the token is determined
5878
            by the token type of the first token encountered in the reader.
5879
            </returns>
5880
        </member>
5881
        <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
5882
            <summary>
5883
            Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
5884
            </summary>
5885
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
5886
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
5887
        </member>
5888
        <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
5889
            <summary>
5890
            Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
5891
            </summary>
5892
            <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
5893
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
5894
            If this is <c>null</c>, default load settings will be used.</param>
5895
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
5896
        </member>
5897
        <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
5898
            <summary>
5899
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
5900
            </summary>
5901
            <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
5902
            <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
5903
            If this is <c>null</c>, default load settings will be used.</param>
5904
            <returns>
5905
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
5906
            that were read from the reader. The runtime type of the token is determined
5907
            by the token type of the first token encountered in the reader.
5908
            </returns>
5909
        </member>
5910
        <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
5911
            <summary>
5912
            Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
5913
            </summary>
5914
            <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
5915
            <returns>
5916
            A <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
5917
            that were read from the reader. The runtime type of the token is determined
5918
            by the token type of the first token encountered in the reader.
5919
            </returns>
5920
        </member>
5921
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
5922
            <summary>
5923
            Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
5924
            </summary>
5925
            <param name="path">
5926
            A <see cref="T:System.String"/> that contains a JPath expression.
5927
            </param>
5928
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or <c>null</c>.</returns>
5929
        </member>
5930
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
5931
            <summary>
5932
            Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
5933
            </summary>
5934
            <param name="path">
5935
            A <see cref="T:System.String"/> that contains a JPath expression.
5936
            </param>
5937
            <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.</param>
5938
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
5939
        </member>
5940
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
5941
            <summary>
5942
            Selects a collection of elements using a JPath expression.
5943
            </summary>
5944
            <param name="path">
5945
            A <see cref="T:System.String"/> that contains a JPath expression.
5946
            </param>
5947
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the selected elements.</returns>
5948
        </member>
5949
        <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">
5950
            <summary>
5951
            Selects a collection of elements using a JPath expression.
5952
            </summary>
5953
            <param name="path">
5954
            A <see cref="T:System.String"/> that contains a JPath expression.
5955
            </param>
5956
            <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.</param>
5957
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the selected elements.</returns>
5958
        </member>
5959
        <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
5960
            <summary>
5961
            Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
5962
            </summary>
5963
            <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
5964
        </member>
5965
        <member name="M:Newtonsoft.Json.Linq.JToken.AddAnnotation(System.Object)">
5966
            <summary>
5967
            Adds an object to the annotation list of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5968
            </summary>
5969
            <param name="annotation">The annotation to add.</param>
5970
        </member>
5971
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotation``1">
5972
            <summary>
5973
            Get the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5974
            </summary>
5975
            <typeparam name="T">The type of the annotation to retrieve.</typeparam>
5976
            <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
5977
        </member>
5978
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotation(System.Type)">
5979
            <summary>
5980
            Gets the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5981
            </summary>
5982
            <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotation to retrieve.</param>
5983
            <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
5984
        </member>
5985
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotations``1">
5986
            <summary>
5987
            Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5988
            </summary>
5989
            <typeparam name="T">The type of the annotations to retrieve.</typeparam>
5990
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the annotations for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
5991
        </member>
5992
        <member name="M:Newtonsoft.Json.Linq.JToken.Annotations(System.Type)">
5993
            <summary>
5994
            Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5995
            </summary>
5996
            <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotations to retrieve.</param>
5997
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:System.Object"/> that contains the annotations that match the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
5998
        </member>
5999
        <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations``1">
6000
            <summary>
6001
            Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6002
            </summary>
6003
            <typeparam name="T">The type of annotations to remove.</typeparam>
6004
        </member>
6005
        <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations(System.Type)">
6006
            <summary>
6007
            Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6008
            </summary>
6009
            <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of annotations to remove.</param>
6010
        </member>
6011
        <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
6012
            <summary>
6013
            Compares tokens to determine whether they are equal.
6014
            </summary>
6015
        </member>
6016
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
6017
            <summary>
6018
            Determines whether the specified objects are equal.
6019
            </summary>
6020
            <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
6021
            <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
6022
            <returns>
6023
            <c>true</c> if the specified objects are equal; otherwise, <c>false</c>.
6024
            </returns>
6025
        </member>
6026
        <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
6027
            <summary>
6028
            Returns a hash code for the specified object.
6029
            </summary>
6030
            <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
6031
            <returns>A hash code for the specified object.</returns>
6032
            <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is <c>null</c>.</exception>
6033
        </member>
6034
        <member name="T:Newtonsoft.Json.Linq.JTokenReader">
6035
            <summary>
6036
            Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
6037
            </summary>
6038
        </member>
6039
        <member name="P:Newtonsoft.Json.Linq.JTokenReader.CurrentToken">
6040
            <summary>
6041
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the reader's current position.
6042
            </summary>
6043
        </member>
6044
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
6045
            <summary>
6046
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
6047
            </summary>
6048
            <param name="token">The token to read from.</param>
6049
        </member>
6050
        <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
6051
            <summary>
6052
            Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6053
            </summary>
6054
            <returns>
6055
            <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
6056
            </returns>
6057
        </member>
6058
        <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">
6059
            <summary>
6060
            Gets the path of the current JSON token. 
6061
            </summary>
6062
        </member>
6063
        <member name="T:Newtonsoft.Json.Linq.JTokenType">
6064
            <summary>
6065
            Specifies the type of token.
6066
            </summary>
6067
        </member>
6068
        <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
6069
            <summary>
6070
            No token type has been set.
6071
            </summary>
6072
        </member>
6073
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
6074
            <summary>
6075
            A JSON object.
6076
            </summary>
6077
        </member>
6078
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
6079
            <summary>
6080
            A JSON array.
6081
            </summary>
6082
        </member>
6083
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
6084
            <summary>
6085
            A JSON constructor.
6086
            </summary>
6087
        </member>
6088
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
6089
            <summary>
6090
            A JSON object property.
6091
            </summary>
6092
        </member>
6093
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
6094
            <summary>
6095
            A comment.
6096
            </summary>
6097
        </member>
6098
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
6099
            <summary>
6100
            An integer value.
6101
            </summary>
6102
        </member>
6103
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
6104
            <summary>
6105
            A float value.
6106
            </summary>
6107
        </member>
6108
        <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
6109
            <summary>
6110
            A string value.
6111
            </summary>
6112
        </member>
6113
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
6114
            <summary>
6115
            A boolean value.
6116
            </summary>
6117
        </member>
6118
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
6119
            <summary>
6120
            A null value.
6121
            </summary>
6122
        </member>
6123
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
6124
            <summary>
6125
            An undefined value.
6126
            </summary>
6127
        </member>
6128
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
6129
            <summary>
6130
            A date value.
6131
            </summary>
6132
        </member>
6133
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
6134
            <summary>
6135
            A raw JSON value.
6136
            </summary>
6137
        </member>
6138
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
6139
            <summary>
6140
            A collection of bytes value.
6141
            </summary>
6142
        </member>
6143
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
6144
            <summary>
6145
            A Guid value.
6146
            </summary>
6147
        </member>
6148
        <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
6149
            <summary>
6150
            A Uri value.
6151
            </summary>
6152
        </member>
6153
        <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
6154
            <summary>
6155
            A TimeSpan value.
6156
            </summary>
6157
        </member>
6158
        <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
6159
            <summary>
6160
            Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
6161
            </summary>
6162
        </member>
6163
        <member name="P:Newtonsoft.Json.Linq.JTokenWriter.CurrentToken">
6164
            <summary>
6165
            Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the writer's current position.
6166
            </summary>
6167
        </member>
6168
        <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
6169
            <summary>
6170
            Gets the token being written.
6171
            </summary>
6172
            <value>The token being written.</value>
6173
        </member>
6174
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
6175
            <summary>
6176
            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"/>.
6177
            </summary>
6178
            <param name="container">The container being written to.</param>
6179
        </member>
6180
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
6181
            <summary>
6182
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
6183
            </summary>
6184
        </member>
6185
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
6186
            <summary>
6187
            Flushes whatever is in the buffer to the underlying <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.
6188
            </summary>
6189
        </member>
6190
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
6191
            <summary>
6192
            Closes this writer.
6193
            If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
6194
            </summary>
6195
            <remarks>
6196
            Setting <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> to <c>true</c> has no additional effect, since the underlying <see cref="T:Newtonsoft.Json.Linq.JContainer"/> is a type that cannot be closed.
6197
            </remarks>
6198
        </member>
6199
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
6200
            <summary>
6201
            Writes the beginning of a JSON object.
6202
            </summary>
6203
        </member>
6204
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
6205
            <summary>
6206
            Writes the beginning of a JSON array.
6207
            </summary>
6208
        </member>
6209
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
6210
            <summary>
6211
            Writes the start of a constructor with the given name.
6212
            </summary>
6213
            <param name="name">The name of the constructor.</param>
6214
        </member>
6215
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
6216
            <summary>
6217
            Writes the end.
6218
            </summary>
6219
            <param name="token">The token.</param>
6220
        </member>
6221
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
6222
            <summary>
6223
            Writes the property name of a name/value pair on a JSON object.
6224
            </summary>
6225
            <param name="name">The name of the property.</param>
6226
        </member>
6227
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
6228
            <summary>
6229
            Writes a <see cref="T:System.Object"/> value.
6230
            An error will be raised if the value cannot be written as a single JSON token.
6231
            </summary>
6232
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
6233
        </member>
6234
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
6235
            <summary>
6236
            Writes a null value.
6237
            </summary>
6238
        </member>
6239
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
6240
            <summary>
6241
            Writes an undefined value.
6242
            </summary>
6243
        </member>
6244
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
6245
            <summary>
6246
            Writes raw JSON.
6247
            </summary>
6248
            <param name="json">The raw JSON to write.</param>
6249
        </member>
6250
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
6251
            <summary>
6252
            Writes a comment <c>/*...*/</c> containing the specified text.
6253
            </summary>
6254
            <param name="text">Text to place inside the comment.</param>
6255
        </member>
6256
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
6257
            <summary>
6258
            Writes a <see cref="T:System.String"/> value.
6259
            </summary>
6260
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
6261
        </member>
6262
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
6263
            <summary>
6264
            Writes a <see cref="T:System.Int32"/> value.
6265
            </summary>
6266
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
6267
        </member>
6268
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
6269
            <summary>
6270
            Writes a <see cref="T:System.UInt32"/> value.
6271
            </summary>
6272
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
6273
        </member>
6274
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
6275
            <summary>
6276
            Writes a <see cref="T:System.Int64"/> value.
6277
            </summary>
6278
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
6279
        </member>
6280
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
6281
            <summary>
6282
            Writes a <see cref="T:System.UInt64"/> value.
6283
            </summary>
6284
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
6285
        </member>
6286
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
6287
            <summary>
6288
            Writes a <see cref="T:System.Single"/> value.
6289
            </summary>
6290
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
6291
        </member>
6292
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
6293
            <summary>
6294
            Writes a <see cref="T:System.Double"/> value.
6295
            </summary>
6296
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
6297
        </member>
6298
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
6299
            <summary>
6300
            Writes a <see cref="T:System.Boolean"/> value.
6301
            </summary>
6302
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
6303
        </member>
6304
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
6305
            <summary>
6306
            Writes a <see cref="T:System.Int16"/> value.
6307
            </summary>
6308
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
6309
        </member>
6310
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
6311
            <summary>
6312
            Writes a <see cref="T:System.UInt16"/> value.
6313
            </summary>
6314
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
6315
        </member>
6316
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
6317
            <summary>
6318
            Writes a <see cref="T:System.Char"/> value.
6319
            </summary>
6320
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
6321
        </member>
6322
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
6323
            <summary>
6324
            Writes a <see cref="T:System.Byte"/> value.
6325
            </summary>
6326
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
6327
        </member>
6328
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
6329
            <summary>
6330
            Writes a <see cref="T:System.SByte"/> value.
6331
            </summary>
6332
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
6333
        </member>
6334
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
6335
            <summary>
6336
            Writes a <see cref="T:System.Decimal"/> value.
6337
            </summary>
6338
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
6339
        </member>
6340
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
6341
            <summary>
6342
            Writes a <see cref="T:System.DateTime"/> value.
6343
            </summary>
6344
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
6345
        </member>
6346
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">
6347
            <summary>
6348
            Writes a <see cref="T:System.DateTimeOffset"/> value.
6349
            </summary>
6350
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
6351
        </member>
6352
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
6353
            <summary>
6354
            Writes a <see cref="T:System.Byte"/>[] value.
6355
            </summary>
6356
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
6357
        </member>
6358
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
6359
            <summary>
6360
            Writes a <see cref="T:System.TimeSpan"/> value.
6361
            </summary>
6362
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
6363
        </member>
6364
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
6365
            <summary>
6366
            Writes a <see cref="T:System.Guid"/> value.
6367
            </summary>
6368
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
6369
        </member>
6370
        <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
6371
            <summary>
6372
            Writes a <see cref="T:System.Uri"/> value.
6373
            </summary>
6374
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
6375
        </member>
6376
        <member name="T:Newtonsoft.Json.Linq.JValue">
6377
            <summary>
6378
            Represents a value in JSON (string, integer, date, etc).
6379
            </summary>
6380
        </member>
6381
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
6382
            <summary>
6383
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
6384
            </summary>
6385
            <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
6386
        </member>
6387
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
6388
            <summary>
6389
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6390
            </summary>
6391
            <param name="value">The value.</param>
6392
        </member>
6393
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
6394
            <summary>
6395
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6396
            </summary>
6397
            <param name="value">The value.</param>
6398
        </member>
6399
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
6400
            <summary>
6401
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6402
            </summary>
6403
            <param name="value">The value.</param>
6404
        </member>
6405
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
6406
            <summary>
6407
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6408
            </summary>
6409
            <param name="value">The value.</param>
6410
        </member>
6411
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
6412
            <summary>
6413
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6414
            </summary>
6415
            <param name="value">The value.</param>
6416
        </member>
6417
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
6418
            <summary>
6419
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6420
            </summary>
6421
            <param name="value">The value.</param>
6422
        </member>
6423
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
6424
            <summary>
6425
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6426
            </summary>
6427
            <param name="value">The value.</param>
6428
        </member>
6429
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTimeOffset)">
6430
            <summary>
6431
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6432
            </summary>
6433
            <param name="value">The value.</param>
6434
        </member>
6435
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
6436
            <summary>
6437
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6438
            </summary>
6439
            <param name="value">The value.</param>
6440
        </member>
6441
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
6442
            <summary>
6443
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6444
            </summary>
6445
            <param name="value">The value.</param>
6446
        </member>
6447
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
6448
            <summary>
6449
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6450
            </summary>
6451
            <param name="value">The value.</param>
6452
        </member>
6453
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
6454
            <summary>
6455
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6456
            </summary>
6457
            <param name="value">The value.</param>
6458
        </member>
6459
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
6460
            <summary>
6461
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6462
            </summary>
6463
            <param name="value">The value.</param>
6464
        </member>
6465
        <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
6466
            <summary>
6467
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6468
            </summary>
6469
            <param name="value">The value.</param>
6470
        </member>
6471
        <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
6472
            <summary>
6473
            Gets a value indicating whether this token has child tokens.
6474
            </summary>
6475
            <value>
6476
                    <c>true</c> if this token has child values; otherwise, <c>false</c>.
6477
            </value>
6478
        </member>
6479
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
6480
            <summary>
6481
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
6482
            </summary>
6483
            <param name="value">The value.</param>
6484
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
6485
        </member>
6486
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
6487
            <summary>
6488
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
6489
            </summary>
6490
            <param name="value">The value.</param>
6491
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
6492
        </member>
6493
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">
6494
            <summary>
6495
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
6496
            </summary>
6497
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
6498
        </member>
6499
        <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">
6500
            <summary>
6501
            Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> undefined value.
6502
            </summary>
6503
            <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> undefined value.</returns>
6504
        </member>
6505
        <member name="P:Newtonsoft.Json.Linq.JValue.Type">
6506
            <summary>
6507
            Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6508
            </summary>
6509
            <value>The type.</value>
6510
        </member>
6511
        <member name="P:Newtonsoft.Json.Linq.JValue.Value">
6512
            <summary>
6513
            Gets or sets the underlying token value.
6514
            </summary>
6515
            <value>The underlying token value.</value>
6516
        </member>
6517
        <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6518
            <summary>
6519
            Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6520
            </summary>
6521
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6522
            <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>s which will be used when writing the token.</param>
6523
        </member>
6524
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
6525
            <summary>
6526
            Indicates whether the current object is equal to another object of the same type.
6527
            </summary>
6528
            <returns>
6529
            <c>true</c> if the current object is equal to the <paramref name="other"/> parameter; otherwise, <c>false</c>.
6530
            </returns>
6531
            <param name="other">An object to compare with this object.</param>
6532
        </member>
6533
        <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
6534
            <summary>
6535
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
6536
            </summary>
6537
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
6538
            <returns>
6539
            <c>true</c> if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, <c>false</c>.
6540
            </returns>
6541
        </member>
6542
        <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
6543
            <summary>
6544
            Serves as a hash function for a particular type.
6545
            </summary>
6546
            <returns>
6547
            A hash code for the current <see cref="T:System.Object"/>.
6548
            </returns>
6549
        </member>
6550
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
6551
            <summary>
6552
            Returns a <see cref="T:System.String"/> that represents this instance.
6553
            </summary>
6554
            <returns>
6555
            A <see cref="T:System.String"/> that represents this instance.
6556
            </returns>
6557
        </member>
6558
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
6559
            <summary>
6560
            Returns a <see cref="T:System.String"/> that represents this instance.
6561
            </summary>
6562
            <param name="format">The format.</param>
6563
            <returns>
6564
            A <see cref="T:System.String"/> that represents this instance.
6565
            </returns>
6566
        </member>
6567
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
6568
            <summary>
6569
            Returns a <see cref="T:System.String"/> that represents this instance.
6570
            </summary>
6571
            <param name="formatProvider">The format provider.</param>
6572
            <returns>
6573
            A <see cref="T:System.String"/> that represents this instance.
6574
            </returns>
6575
        </member>
6576
        <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
6577
            <summary>
6578
            Returns a <see cref="T:System.String"/> that represents this instance.
6579
            </summary>
6580
            <param name="format">The format.</param>
6581
            <param name="formatProvider">The format provider.</param>
6582
            <returns>
6583
            A <see cref="T:System.String"/> that represents this instance.
6584
            </returns>
6585
        </member>
6586
        <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
6587
            <summary>
6588
            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.
6589
            </summary>
6590
            <param name="obj">An object to compare with this instance.</param>
6591
            <returns>
6592
            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
6593
            Value
6594
            Meaning
6595
            Less than zero
6596
            This instance is less than <paramref name="obj"/>.
6597
            Zero
6598
            This instance is equal to <paramref name="obj"/>.
6599
            Greater than zero
6600
            This instance is greater than <paramref name="obj"/>.
6601
            </returns>
6602
            <exception cref="T:System.ArgumentException">
6603
                    <paramref name="obj"/> is not of the same type as this instance.
6604
            </exception>
6605
        </member>
6606
        <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
6607
            <summary>
6608
            Specifies how JSON arrays are merged together.
6609
            </summary>
6610
        </member>
6611
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">
6612
            <summary>Concatenate arrays.</summary>
6613
        </member>
6614
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">
6615
            <summary>Union arrays, skipping items that already exist.</summary>
6616
        </member>
6617
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">
6618
            <summary>Replace all array items.</summary>
6619
        </member>
6620
        <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">
6621
            <summary>Merge array items together, matched by index.</summary>
6622
        </member>
6623
        <member name="T:Newtonsoft.Json.Linq.MergeNullValueHandling">
6624
            <summary>
6625
            Specifies how null value properties are merged.
6626
            </summary>
6627
        </member>
6628
        <member name="F:Newtonsoft.Json.Linq.MergeNullValueHandling.Ignore">
6629
            <summary>
6630
            The content's null value properties will be ignored during merging.
6631
            </summary>
6632
        </member>
6633
        <member name="F:Newtonsoft.Json.Linq.MergeNullValueHandling.Merge">
6634
            <summary>
6635
            The content's null value properties will be merged.
6636
            </summary>
6637
        </member>
6638
        <member name="T:Newtonsoft.Json.MemberSerialization">
6639
            <summary>
6640
            Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6641
            </summary>
6642
        </member>
6643
        <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
6644
            <summary>
6645
            All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
6646
            This is the default member serialization mode.
6647
            </summary>
6648
        </member>
6649
        <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
6650
            <summary>
6651
            Only members marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/> are serialized.
6652
            This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute"/>.
6653
            </summary>
6654
        </member>
6655
        <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
6656
            <summary>
6657
            All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
6658
            This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
6659
            and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to <c>false</c>.
6660
            </summary>
6661
        </member>
6662
        <member name="T:Newtonsoft.Json.MetadataPropertyHandling">
6663
            <summary>
6664
            Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6665
            </summary>
6666
        </member>
6667
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">
6668
            <summary>
6669
            Read metadata properties located at the start of a JSON object.
6670
            </summary>
6671
        </member>
6672
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">
6673
            <summary>
6674
            Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
6675
            </summary>
6676
        </member>
6677
        <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">
6678
            <summary>
6679
            Do not try to read metadata properties.
6680
            </summary>
6681
        </member>
6682
        <member name="T:Newtonsoft.Json.MissingMemberHandling">
6683
            <summary>
6684
            Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6685
            </summary>
6686
        </member>
6687
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
6688
            <summary>
6689
            Ignore a missing member and do not attempt to deserialize it.
6690
            </summary>
6691
        </member>
6692
        <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
6693
            <summary>
6694
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
6695
            </summary>
6696
        </member>
6697
        <member name="T:Newtonsoft.Json.NullValueHandling">
6698
            <summary>
6699
            Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6700
            </summary>
6701
            <example>
6702
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class" />
6703
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example" />
6704
            </example>
6705
        </member>
6706
        <member name="F:Newtonsoft.Json.NullValueHandling.Include">
6707
            <summary>
6708
            Include null values when serializing and deserializing objects.
6709
            </summary>
6710
        </member>
6711
        <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
6712
            <summary>
6713
            Ignore null values when serializing and deserializing objects.
6714
            </summary>
6715
        </member>
6716
        <member name="T:Newtonsoft.Json.ObjectCreationHandling">
6717
            <summary>
6718
            Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6719
            </summary>
6720
        </member>
6721
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
6722
            <summary>
6723
            Reuse existing objects, create new objects when needed.
6724
            </summary>
6725
        </member>
6726
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
6727
            <summary>
6728
            Only reuse existing objects.
6729
            </summary>
6730
        </member>
6731
        <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
6732
            <summary>
6733
            Always create new objects.
6734
            </summary>
6735
        </member>
6736
        <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
6737
            <summary>
6738
            Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6739
            Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement <see cref="T:System.Runtime.Serialization.ISerializable"/>.
6740
            </summary>
6741
            <example>
6742
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References" />       
6743
            </example>
6744
        </member>
6745
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
6746
            <summary>
6747
            Do not preserve references when serializing types.
6748
            </summary>
6749
        </member>
6750
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
6751
            <summary>
6752
            Preserve references when serializing into a JSON object structure.
6753
            </summary>
6754
        </member>
6755
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
6756
            <summary>
6757
            Preserve references when serializing into a JSON array structure.
6758
            </summary>
6759
        </member>
6760
        <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
6761
            <summary>
6762
            Preserve references when serializing.
6763
            </summary>
6764
        </member>
6765
        <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
6766
            <summary>
6767
            Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6768
            </summary>
6769
        </member>
6770
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
6771
            <summary>
6772
            Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
6773
            </summary>
6774
        </member>
6775
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
6776
            <summary>
6777
            Ignore loop references and do not serialize.
6778
            </summary>
6779
        </member>
6780
        <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
6781
            <summary>
6782
            Serialize loop references.
6783
            </summary>
6784
        </member>
6785
        <member name="T:Newtonsoft.Json.Required">
6786
            <summary>
6787
            Indicating whether a property is required.
6788
            </summary>
6789
        </member>
6790
        <member name="F:Newtonsoft.Json.Required.Default">
6791
            <summary>
6792
            The property is not required. The default state.
6793
            </summary>
6794
        </member>
6795
        <member name="F:Newtonsoft.Json.Required.AllowNull">
6796
            <summary>
6797
            The property must be defined in JSON but can be a null value.
6798
            </summary>
6799
        </member>
6800
        <member name="F:Newtonsoft.Json.Required.Always">
6801
            <summary>
6802
            The property must be defined in JSON and cannot be a null value.
6803
            </summary>
6804
        </member>
6805
        <member name="F:Newtonsoft.Json.Required.DisallowNull">
6806
            <summary>
6807
            The property is not required but it cannot be a null value.
6808
            </summary>
6809
        </member>
6810
        <member name="T:Newtonsoft.Json.Schema.Extensions">
6811
            <summary>
6812
            <para>
6813
            Contains the JSON schema extension methods.
6814
            </para>
6815
            <note type="caution">
6816
            JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
6817
            </note>
6818
            </summary>
6819
        </member>
6820
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
6821
            <summary>
6822
            <para>
6823
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
6824
            </para>
6825
            <note type="caution">
6826
            JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
6827
            </note>
6828
            </summary>
6829
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6830
            <param name="schema">The schema to test with.</param>
6831
            <returns>
6832
                    <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
6833
            </returns>
6834
        </member>
6835
        <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
6836
            <summary>
6837
            <para>
6838
            Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
6839
            </para>
6840
            <note type="caution">
6841
            JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
6842
            </note>
6843
            </summary>
6844
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6845
            <param name="schema">The schema to test with.</param>
6846
            <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
6847
            <returns>
6848
                    <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
6849
            </returns>
6850
        </member>
6851
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
6852
            <summary>
6853
            <para>
6854
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6855
            </para>
6856
            <note type="caution">
6857
            JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
6858
            </note>
6859
            </summary>
6860
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6861
            <param name="schema">The schema to test with.</param>
6862
        </member>
6863
        <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
6864
            <summary>
6865
            <para>
6866
            Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6867
            </para>
6868
            <note type="caution">
6869
            JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
6870
            </note>
6871
            </summary>
6872
            <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
6873
            <param name="schema">The schema to test with.</param>
6874
            <param name="validationEventHandler">The validation event handler.</param>
6875
        </member>
6876
        <member name="T:Newtonsoft.Json.Schema.JsonSchema">
6877
            <summary>
6878
            <para>
6879
            An in-memory representation of a JSON Schema.
6880
            </para>
6881
            <note type="caution">
6882
            JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
6883
            </note>
6884
            </summary>
6885
        </member>
6886
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
6887
            <summary>
6888
            Gets or sets the id.
6889
            </summary>
6890
        </member>
6891
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
6892
            <summary>
6893
            Gets or sets the title.
6894
            </summary>
6895
        </member>
6896
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
6897
            <summary>
6898
            Gets or sets whether the object is required.
6899
            </summary>
6900
        </member>
6901
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
6902
            <summary>
6903
            Gets or sets whether the object is read-only.
6904
            </summary>
6905
        </member>
6906
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
6907
            <summary>
6908
            Gets or sets whether the object is visible to users.
6909
            </summary>
6910
        </member>
6911
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
6912
            <summary>
6913
            Gets or sets whether the object is transient.
6914
            </summary>
6915
        </member>
6916
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
6917
            <summary>
6918
            Gets or sets the description of the object.
6919
            </summary>
6920
        </member>
6921
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
6922
            <summary>
6923
            Gets or sets the types of values allowed by the object.
6924
            </summary>
6925
            <value>The type.</value>
6926
        </member>
6927
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
6928
            <summary>
6929
            Gets or sets the pattern.
6930
            </summary>
6931
            <value>The pattern.</value>
6932
        </member>
6933
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
6934
            <summary>
6935
            Gets or sets the minimum length.
6936
            </summary>
6937
            <value>The minimum length.</value>
6938
        </member>
6939
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
6940
            <summary>
6941
            Gets or sets the maximum length.
6942
            </summary>
6943
            <value>The maximum length.</value>
6944
        </member>
6945
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
6946
            <summary>
6947
            Gets or sets a number that the value should be divisible by.
6948
            </summary>
6949
            <value>A number that the value should be divisible by.</value>
6950
        </member>
6951
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
6952
            <summary>
6953
            Gets or sets the minimum.
6954
            </summary>
6955
            <value>The minimum.</value>
6956
        </member>
6957
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
6958
            <summary>
6959
            Gets or sets the maximum.
6960
            </summary>
6961
            <value>The maximum.</value>
6962
        </member>
6963
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
6964
            <summary>
6965
            Gets or sets a flag indicating whether the value can not equal the number defined by the <c>minimum</c> attribute (<see cref="P:Newtonsoft.Json.Schema.JsonSchema.Minimum"/>).
6966
            </summary>
6967
            <value>A flag indicating whether the value can not equal the number defined by the <c>minimum</c> attribute (<see cref="P:Newtonsoft.Json.Schema.JsonSchema.Minimum"/>).</value>
6968
        </member>
6969
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
6970
            <summary>
6971
            Gets or sets a flag indicating whether the value can not equal the number defined by the <c>maximum</c> attribute (<see cref="P:Newtonsoft.Json.Schema.JsonSchema.Maximum"/>).
6972
            </summary>
6973
            <value>A flag indicating whether the value can not equal the number defined by the <c>maximum</c> attribute (<see cref="P:Newtonsoft.Json.Schema.JsonSchema.Maximum"/>).</value>
6974
        </member>
6975
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
6976
            <summary>
6977
            Gets or sets the minimum number of items.
6978
            </summary>
6979
            <value>The minimum number of items.</value>
6980
        </member>
6981
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
6982
            <summary>
6983
            Gets or sets the maximum number of items.
6984
            </summary>
6985
            <value>The maximum number of items.</value>
6986
        </member>
6987
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
6988
            <summary>
6989
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
6990
            </summary>
6991
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
6992
        </member>
6993
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">
6994
            <summary>
6995
            Gets or sets a value indicating whether items in an array are validated using the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> instance at their array position from <see cref="P:Newtonsoft.Json.Schema.JsonSchema.Items"/>.
6996
            </summary>
6997
            <value>
6998
                    <c>true</c> if items are validated using their array position; otherwise, <c>false</c>.
6999
            </value>
7000
        </member>
7001
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">
7002
            <summary>
7003
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.
7004
            </summary>
7005
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value>
7006
        </member>
7007
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">
7008
            <summary>
7009
            Gets or sets a value indicating whether additional items are allowed.
7010
            </summary>
7011
            <value>
7012
                    <c>true</c> if additional items are allowed; otherwise, <c>false</c>.
7013
            </value>
7014
        </member>
7015
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">
7016
            <summary>
7017
            Gets or sets whether the array items must be unique.
7018
            </summary>
7019
        </member>
7020
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
7021
            <summary>
7022
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
7023
            </summary>
7024
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
7025
        </member>
7026
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
7027
            <summary>
7028
            Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
7029
            </summary>
7030
            <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
7031
        </member>
7032
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
7033
            <summary>
7034
            Gets or sets the pattern properties.
7035
            </summary>
7036
            <value>The pattern properties.</value>
7037
        </member>
7038
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
7039
            <summary>
7040
            Gets or sets a value indicating whether additional properties are allowed.
7041
            </summary>
7042
            <value>
7043
                    <c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
7044
            </value>
7045
        </member>
7046
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
7047
            <summary>
7048
            Gets or sets the required property if this property is present.
7049
            </summary>
7050
            <value>The required property if this property is present.</value>
7051
        </member>
7052
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
7053
            <summary>
7054
            Gets or sets the a collection of valid enum values allowed.
7055
            </summary>
7056
            <value>A collection of valid enum values allowed.</value>
7057
        </member>
7058
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
7059
            <summary>
7060
            Gets or sets disallowed types.
7061
            </summary>
7062
            <value>The disallowed types.</value>
7063
        </member>
7064
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
7065
            <summary>
7066
            Gets or sets the default value.
7067
            </summary>
7068
            <value>The default value.</value>
7069
        </member>
7070
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
7071
            <summary>
7072
            Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.
7073
            </summary>
7074
            <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value>
7075
        </member>
7076
        <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
7077
            <summary>
7078
            Gets or sets the format.
7079
            </summary>
7080
            <value>The format.</value>
7081
        </member>
7082
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
7083
            <summary>
7084
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
7085
            </summary>
7086
        </member>
7087
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
7088
            <summary>
7089
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7090
            </summary>
7091
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
7092
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
7093
        </member>
7094
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7095
            <summary>
7096
            Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7097
            </summary>
7098
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
7099
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
7100
            <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
7101
        </member>
7102
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
7103
            <summary>
7104
            Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains JSON Schema.
7105
            </summary>
7106
            <param name="json">A <see cref="T:System.String"/> that contains JSON Schema.</param>
7107
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON Schema.</returns>
7108
        </member>
7109
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7110
            <summary>
7111
            Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains JSON Schema using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
7112
            </summary>
7113
            <param name="json">A <see cref="T:System.String"/> that contains JSON Schema.</param>
7114
            <param name="resolver">The resolver.</param>
7115
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON Schema.</returns>
7116
        </member>
7117
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
7118
            <summary>
7119
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
7120
            </summary>
7121
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7122
        </member>
7123
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7124
            <summary>
7125
            Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
7126
            </summary>
7127
            <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7128
            <param name="resolver">The resolver used.</param>
7129
        </member>
7130
        <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
7131
            <summary>
7132
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
7133
            </summary>
7134
            <returns>
7135
            A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
7136
            </returns>
7137
        </member>
7138
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
7139
            <summary>
7140
            <para>
7141
            Returns detailed information about the schema exception.
7142
            </para>
7143
            <note type="caution">
7144
            JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
7145
            </note>
7146
            </summary>
7147
        </member>
7148
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
7149
            <summary>
7150
            Gets the line number indicating where the error occurred.
7151
            </summary>
7152
            <value>The line number indicating where the error occurred.</value>
7153
        </member>
7154
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
7155
            <summary>
7156
            Gets the line position indicating where the error occurred.
7157
            </summary>
7158
            <value>The line position indicating where the error occurred.</value>
7159
        </member>
7160
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
7161
            <summary>
7162
            Gets the path to the JSON where the error occurred.
7163
            </summary>
7164
            <value>The path to the JSON where the error occurred.</value>
7165
        </member>
7166
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
7167
            <summary>
7168
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
7169
            </summary>
7170
        </member>
7171
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
7172
            <summary>
7173
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7174
            with a specified error message.
7175
            </summary>
7176
            <param name="message">The error message that explains the reason for the exception.</param>
7177
        </member>
7178
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
7179
            <summary>
7180
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7181
            with a specified error message and a reference to the inner exception that is the cause of this exception.
7182
            </summary>
7183
            <param name="message">The error message that explains the reason for the exception.</param>
7184
            <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
7185
        </member>
7186
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7187
            <summary>
7188
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
7189
            </summary>
7190
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
7191
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
7192
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is <c>null</c>.</exception>
7193
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is <c>null</c> or <see cref="P:System.Exception.HResult"/> is zero (0).</exception>
7194
        </member>
7195
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
7196
            <summary>
7197
            <para>
7198
            Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
7199
            </para>
7200
            <note type="caution">
7201
            JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
7202
            </note>
7203
            </summary>
7204
        </member>
7205
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
7206
            <summary>
7207
            Gets or sets how undefined schemas are handled by the serializer.
7208
            </summary>
7209
        </member>
7210
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
7211
            <summary>
7212
            Gets or sets the contract resolver.
7213
            </summary>
7214
            <value>The contract resolver.</value>
7215
        </member>
7216
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
7217
            <summary>
7218
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7219
            </summary>
7220
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7221
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7222
        </member>
7223
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7224
            <summary>
7225
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7226
            </summary>
7227
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7228
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
7229
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7230
        </member>
7231
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
7232
            <summary>
7233
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7234
            </summary>
7235
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7236
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
7237
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7238
        </member>
7239
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
7240
            <summary>
7241
            Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7242
            </summary>
7243
            <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7244
            <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
7245
            <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
7246
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7247
        </member>
7248
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
7249
            <summary>
7250
            <para>
7251
            Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
7252
            </para>
7253
            <note type="caution">
7254
            JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
7255
            </note>
7256
            </summary>
7257
        </member>
7258
        <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
7259
            <summary>
7260
            Gets or sets the loaded schemas.
7261
            </summary>
7262
            <value>The loaded schemas.</value>
7263
        </member>
7264
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
7265
            <summary>
7266
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
7267
            </summary>
7268
        </member>
7269
        <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
7270
            <summary>
7271
            Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.
7272
            </summary>
7273
            <param name="reference">The id.</param>
7274
            <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>
7275
        </member>
7276
        <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
7277
            <summary>
7278
            <para>
7279
            The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
7280
            </para>
7281
            <note type="caution">
7282
            JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
7283
            </note>
7284
            </summary>
7285
        </member>
7286
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
7287
            <summary>
7288
            No type specified.
7289
            </summary>
7290
        </member>
7291
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
7292
            <summary>
7293
            String type.
7294
            </summary>
7295
        </member>
7296
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
7297
            <summary>
7298
            Float type.
7299
            </summary>
7300
        </member>
7301
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
7302
            <summary>
7303
            Integer type.
7304
            </summary>
7305
        </member>
7306
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
7307
            <summary>
7308
            Boolean type.
7309
            </summary>
7310
        </member>
7311
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
7312
            <summary>
7313
            Object type.
7314
            </summary>
7315
        </member>
7316
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
7317
            <summary>
7318
            Array type.
7319
            </summary>
7320
        </member>
7321
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
7322
            <summary>
7323
            Null type.
7324
            </summary>
7325
        </member>
7326
        <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
7327
            <summary>
7328
            Any type.
7329
            </summary>
7330
        </member>
7331
        <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
7332
            <summary>
7333
            <para>
7334
            Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
7335
            </para>
7336
            <note type="caution">
7337
            JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
7338
            </note>
7339
            </summary>
7340
        </member>
7341
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
7342
            <summary>
7343
            Do not infer a schema Id.
7344
            </summary>
7345
        </member>
7346
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
7347
            <summary>
7348
            Use the .NET type name as the schema Id.
7349
            </summary>
7350
        </member>
7351
        <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
7352
            <summary>
7353
            Use the assembly qualified .NET type name as the schema Id.
7354
            </summary>
7355
        </member>
7356
        <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
7357
            <summary>
7358
            <para>
7359
            Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
7360
            </para>
7361
            <note type="caution">
7362
            JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
7363
            </note>
7364
            </summary>
7365
        </member>
7366
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
7367
            <summary>
7368
            Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.
7369
            </summary>
7370
            <value>The JsonSchemaException associated with the validation error.</value>
7371
        </member>
7372
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
7373
            <summary>
7374
            Gets the path of the JSON location where the validation error occurred.
7375
            </summary>
7376
            <value>The path of the JSON location where the validation error occurred.</value>
7377
        </member>
7378
        <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
7379
            <summary>
7380
            Gets the text description corresponding to the validation error.
7381
            </summary>
7382
            <value>The text description.</value>
7383
        </member>
7384
        <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
7385
            <summary>
7386
            <para>
7387
            Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
7388
            </para>
7389
            <note type="caution">
7390
            JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
7391
            </note>
7392
            </summary>
7393
        </member>
7394
        <member name="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy">
7395
            <summary>
7396
            A camel case naming strategy.
7397
            </summary>
7398
        </member>
7399
        <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.#ctor(System.Boolean,System.Boolean)">
7400
            <summary>
7401
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy"/> class.
7402
            </summary>
7403
            <param name="processDictionaryKeys">
7404
            A flag indicating whether dictionary keys should be processed.
7405
            </param>
7406
            <param name="overrideSpecifiedNames">
7407
            A flag indicating whether explicitly specified property names should be processed,
7408
            e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>.
7409
            </param>
7410
        </member>
7411
        <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.#ctor(System.Boolean,System.Boolean,System.Boolean)">
7412
            <summary>
7413
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy"/> class.
7414
            </summary>
7415
            <param name="processDictionaryKeys">
7416
            A flag indicating whether dictionary keys should be processed.
7417
            </param>
7418
            <param name="overrideSpecifiedNames">
7419
            A flag indicating whether explicitly specified property names should be processed,
7420
            e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>.
7421
            </param>
7422
            <param name="processExtensionDataNames">
7423
            A flag indicating whether extension data names should be processed.
7424
            </param>
7425
        </member>
7426
        <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.#ctor">
7427
            <summary>
7428
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy"/> class.
7429
            </summary>
7430
        </member>
7431
        <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.ResolvePropertyName(System.String)">
7432
            <summary>
7433
            Resolves the specified property name.
7434
            </summary>
7435
            <param name="name">The property name to resolve.</param>
7436
            <returns>The resolved property name.</returns>
7437
        </member>
7438
        <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
7439
            <summary>
7440
            Resolves member mappings for a type, camel casing property names.
7441
            </summary>
7442
        </member>
7443
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
7444
            <summary>
7445
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
7446
            </summary>
7447
        </member>
7448
        <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolveContract(System.Type)">
7449
            <summary>
7450
            Resolves the contract for a given type.
7451
            </summary>
7452
            <param name="type">The type to resolve a contract for.</param>
7453
            <returns>The contract for a given type.</returns>
7454
        </member>
7455
        <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
7456
            <summary>
7457
            Used by <see cref="T:Newtonsoft.Json.JsonSerializer"/> to resolve a <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for a given <see cref="T:System.Type"/>.
7458
            </summary>
7459
        </member>
7460
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
7461
            <summary>
7462
            Gets a value indicating whether members are being get and set using dynamic code generation.
7463
            This value is determined by the runtime permissions available.
7464
            </summary>
7465
            <value>
7466
                    <c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
7467
            </value>
7468
        </member>
7469
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
7470
            <summary>
7471
            Gets or sets the default members search flags.
7472
            </summary>
7473
            <value>The default members search flags.</value>
7474
        </member>
7475
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
7476
            <summary>
7477
            Gets or sets a value indicating whether compiler generated members should be serialized.
7478
            </summary>
7479
            <value>
7480
                    <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
7481
            </value>
7482
        </member>
7483
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
7484
            <summary>
7485
            Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.
7486
            </summary>
7487
            <value>
7488
                    <c>true</c> if the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
7489
            </value>
7490
        </member>
7491
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
7492
            <summary>
7493
            Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.
7494
            </summary>
7495
            <value>
7496
                    <c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
7497
            </value>
7498
        </member>
7499
        <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.NamingStrategy">
7500
            <summary>
7501
            Gets or sets the naming strategy used to resolve how property names and dictionary keys are serialized.
7502
            </summary>
7503
            <value>The naming strategy used to resolve how property names and dictionary keys are serialized.</value>
7504
        </member>
7505
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
7506
            <summary>
7507
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
7508
            </summary>
7509
        </member>
7510
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
7511
            <summary>
7512
            Resolves the contract for a given type.
7513
            </summary>
7514
            <param name="type">The type to resolve a contract for.</param>
7515
            <returns>The contract for a given type.</returns>
7516
        </member>
7517
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
7518
            <summary>
7519
            Gets the serializable members for the type.
7520
            </summary>
7521
            <param name="objectType">The type to get serializable members for.</param>
7522
            <returns>The serializable members for the type.</returns>
7523
        </member>
7524
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
7525
            <summary>
7526
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
7527
            </summary>
7528
            <param name="objectType">Type of the object.</param>
7529
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
7530
        </member>
7531
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
7532
            <summary>
7533
            Creates the constructor parameters.
7534
            </summary>
7535
            <param name="constructor">The constructor to create properties for.</param>
7536
            <param name="memberProperties">The type's member properties.</param>
7537
            <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
7538
        </member>
7539
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
7540
            <summary>
7541
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
7542
            </summary>
7543
            <param name="matchingMemberProperty">The matching member property.</param>
7544
            <param name="parameterInfo">The constructor parameter.</param>
7545
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
7546
        </member>
7547
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
7548
            <summary>
7549
            Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for the contract.
7550
            </summary>
7551
            <param name="objectType">Type of the object.</param>
7552
            <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter" />.</returns>
7553
        </member>
7554
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
7555
            <summary>
7556
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
7557
            </summary>
7558
            <param name="objectType">Type of the object.</param>
7559
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
7560
        </member>
7561
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
7562
            <summary>
7563
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
7564
            </summary>
7565
            <param name="objectType">Type of the object.</param>
7566
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
7567
        </member>
7568
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
7569
            <summary>
7570
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
7571
            </summary>
7572
            <param name="objectType">Type of the object.</param>
7573
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
7574
        </member>
7575
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
7576
            <summary>
7577
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
7578
            </summary>
7579
            <param name="objectType">Type of the object.</param>
7580
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
7581
        </member>
7582
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
7583
            <summary>
7584
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
7585
            </summary>
7586
            <param name="objectType">Type of the object.</param>
7587
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
7588
        </member>
7589
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
7590
            <summary>
7591
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
7592
            </summary>
7593
            <param name="objectType">Type of the object.</param>
7594
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
7595
        </member>
7596
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
7597
            <summary>
7598
            Determines which contract type is created for the given type.
7599
            </summary>
7600
            <param name="objectType">Type of the object.</param>
7601
            <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
7602
        </member>
7603
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
7604
            <summary>
7605
            Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
7606
            </summary>
7607
            <param name="type">The type to create properties for.</param>
7608
            /// <param name="memberSerialization">The member serialization mode for the type.</param>
7609
            <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
7610
        </member>
7611
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
7612
            <summary>
7613
            Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
7614
            </summary>
7615
            <param name="member">The member.</param>
7616
            <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
7617
        </member>
7618
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
7619
            <summary>
7620
            Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
7621
            </summary>
7622
            <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
7623
            <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
7624
            <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
7625
        </member>
7626
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
7627
            <summary>
7628
            Resolves the name of the property.
7629
            </summary>
7630
            <param name="propertyName">Name of the property.</param>
7631
            <returns>Resolved name of the property.</returns>
7632
        </member>
7633
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveExtensionDataName(System.String)">
7634
            <summary>
7635
            Resolves the name of the extension data. By default no changes are made to extension data names.
7636
            </summary>
7637
            <param name="extensionDataName">Name of the extension data.</param>
7638
            <returns>Resolved name of the extension data.</returns>
7639
        </member>
7640
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveDictionaryKey(System.String)">
7641
            <summary>
7642
            Resolves the key of the dictionary. By default <see cref="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)"/> is used to resolve dictionary keys.
7643
            </summary>
7644
            <param name="dictionaryKey">Key of the dictionary.</param>
7645
            <returns>Resolved key of the dictionary.</returns>
7646
        </member>
7647
        <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
7648
            <summary>
7649
            Gets the resolved name of the property.
7650
            </summary>
7651
            <param name="propertyName">Name of the property.</param>
7652
            <returns>Name of the property.</returns>
7653
        </member>
7654
        <member name="T:Newtonsoft.Json.Serialization.DefaultNamingStrategy">
7655
            <summary>
7656
            The default naming strategy. Property names and dictionary keys are unchanged.
7657
            </summary>
7658
        </member>
7659
        <member name="M:Newtonsoft.Json.Serialization.DefaultNamingStrategy.ResolvePropertyName(System.String)">
7660
            <summary>
7661
            Resolves the specified property name.
7662
            </summary>
7663
            <param name="name">The property name to resolve.</param>
7664
            <returns>The resolved property name.</returns>
7665
        </member>
7666
        <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
7667
            <summary>
7668
            The default serialization binder used when resolving and loading classes from type names.
7669
            </summary>
7670
        </member>
7671
        <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.#ctor">
7672
            <summary>
7673
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder"/> class.
7674
            </summary>
7675
        </member>
7676
        <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
7677
            <summary>
7678
            When overridden in a derived class, controls the binding of a serialized object to a type.
7679
            </summary>
7680
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
7681
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
7682
            <returns>
7683
            The type of the object the formatter creates a new instance of.
7684
            </returns>
7685
        </member>
7686
        <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)">
7687
            <summary>
7688
            When overridden in a derived class, controls the binding of a serialized object to a type.
7689
            </summary>
7690
            <param name="serializedType">The type of the object the formatter creates a new instance of.</param>
7691
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
7692
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
7693
        </member>
7694
        <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">
7695
            <summary>
7696
            Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.
7697
            </summary>
7698
        </member>
7699
        <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">
7700
            <summary>
7701
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
7702
            For example a filter level of <see cref="F:System.Diagnostics.TraceLevel.Info"/> will exclude <see cref="F:System.Diagnostics.TraceLevel.Verbose"/> messages and include <see cref="F:System.Diagnostics.TraceLevel.Info"/>,
7703
            <see cref="F:System.Diagnostics.TraceLevel.Warning"/> and <see cref="F:System.Diagnostics.TraceLevel.Error"/> messages.
7704
            </summary>
7705
            <value>
7706
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
7707
            </value>
7708
        </member>
7709
        <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
7710
            <summary>
7711
            Writes the specified trace level, message and optional exception.
7712
            </summary>
7713
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
7714
            <param name="message">The trace message.</param>
7715
            <param name="ex">The trace exception. This parameter is optional.</param>
7716
        </member>
7717
        <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
7718
            <summary>
7719
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
7720
            </summary>
7721
        </member>
7722
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
7723
            <summary>
7724
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
7725
            </summary>
7726
            <param name="memberInfo">The member info.</param>
7727
        </member>
7728
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
7729
            <summary>
7730
            Sets the value.
7731
            </summary>
7732
            <param name="target">The target to set the value on.</param>
7733
            <param name="value">The value to set on the target.</param>
7734
        </member>
7735
        <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
7736
            <summary>
7737
            Gets the value.
7738
            </summary>
7739
            <param name="target">The target to get the value from.</param>
7740
            <returns>The value.</returns>
7741
        </member>
7742
        <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
7743
            <summary>
7744
            Provides information surrounding an error.
7745
            </summary>
7746
        </member>
7747
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
7748
            <summary>
7749
            Gets the error.
7750
            </summary>
7751
            <value>The error.</value>
7752
        </member>
7753
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
7754
            <summary>
7755
            Gets the original object that caused the error.
7756
            </summary>
7757
            <value>The original object that caused the error.</value>
7758
        </member>
7759
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
7760
            <summary>
7761
            Gets the member that caused the error.
7762
            </summary>
7763
            <value>The member that caused the error.</value>
7764
        </member>
7765
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
7766
            <summary>
7767
            Gets the path of the JSON location where the error occurred.
7768
            </summary>
7769
            <value>The path of the JSON location where the error occurred.</value>
7770
        </member>
7771
        <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
7772
            <summary>
7773
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
7774
            </summary>
7775
            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
7776
        </member>
7777
        <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
7778
            <summary>
7779
            Provides data for the Error event.
7780
            </summary>
7781
        </member>
7782
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
7783
            <summary>
7784
            Gets the current object the error event is being raised against.
7785
            </summary>
7786
            <value>The current object the error event is being raised against.</value>
7787
        </member>
7788
        <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
7789
            <summary>
7790
            Gets the error context.
7791
            </summary>
7792
            <value>The error context.</value>
7793
        </member>
7794
        <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
7795
            <summary>
7796
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
7797
            </summary>
7798
            <param name="currentObject">The current object.</param>
7799
            <param name="errorContext">The error context.</param>
7800
        </member>
7801
        <member name="T:Newtonsoft.Json.Serialization.IAttributeProvider">
7802
            <summary>
7803
            Provides methods to get attributes.
7804
            </summary>
7805
        </member>
7806
        <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Boolean)">
7807
            <summary>
7808
            Returns a collection of all of the attributes, or an empty collection if there are no attributes.
7809
            </summary>
7810
            <param name="inherit">When <c>true</c>, look up the hierarchy chain for the inherited custom attribute.</param>
7811
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
7812
        </member>
7813
        <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Type,System.Boolean)">
7814
            <summary>
7815
            Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
7816
            </summary>
7817
            <param name="attributeType">The type of the attributes.</param>
7818
            <param name="inherit">When <c>true</c>, look up the hierarchy chain for the inherited custom attribute.</param>
7819
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
7820
        </member>
7821
        <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
7822
            <summary>
7823
            Used by <see cref="T:Newtonsoft.Json.JsonSerializer"/> to resolve a <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for a given <see cref="T:System.Type"/>.
7824
            </summary>
7825
            <example>
7826
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class" />
7827
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example" />
7828
            </example>
7829
        </member>
7830
        <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
7831
            <summary>
7832
            Resolves the contract for a given type.
7833
            </summary>
7834
            <param name="type">The type to resolve a contract for.</param>
7835
            <returns>The contract for a given type.</returns>
7836
        </member>
7837
        <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
7838
            <summary>
7839
            Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7840
            </summary>
7841
        </member>
7842
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
7843
            <summary>
7844
            Resolves a reference to its object.
7845
            </summary>
7846
            <param name="context">The serialization context.</param>
7847
            <param name="reference">The reference to resolve.</param>
7848
            <returns>The object that was resolved from the reference.</returns>
7849
        </member>
7850
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
7851
            <summary>
7852
            Gets the reference for the specified object.
7853
            </summary>
7854
            <param name="context">The serialization context.</param>
7855
            <param name="value">The object to get a reference for.</param>
7856
            <returns>The reference to the object.</returns>
7857
        </member>
7858
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
7859
            <summary>
7860
            Determines whether the specified object is referenced.
7861
            </summary>
7862
            <param name="context">The serialization context.</param>
7863
            <param name="value">The object to test for a reference.</param>
7864
            <returns>
7865
                    <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
7866
            </returns>
7867
        </member>
7868
        <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
7869
            <summary>
7870
            Adds a reference to the specified object.
7871
            </summary>
7872
            <param name="context">The serialization context.</param>
7873
            <param name="reference">The reference.</param>
7874
            <param name="value">The object to reference.</param>
7875
        </member>
7876
        <member name="T:Newtonsoft.Json.Serialization.ISerializationBinder">
7877
            <summary>
7878
            Allows users to control class loading and mandate what class to load.
7879
            </summary>
7880
        </member>
7881
        <member name="M:Newtonsoft.Json.Serialization.ISerializationBinder.BindToType(System.String,System.String)">
7882
            <summary>
7883
            When implemented, controls the binding of a serialized object to a type.
7884
            </summary>
7885
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
7886
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object</param>
7887
            <returns>The type of the object the formatter creates a new instance of.</returns>
7888
        </member>
7889
        <member name="M:Newtonsoft.Json.Serialization.ISerializationBinder.BindToName(System.Type,System.String@,System.String@)">
7890
            <summary>
7891
            When implemented, controls the binding of a serialized object to a type.
7892
            </summary>
7893
            <param name="serializedType">The type of the object the formatter creates a new instance of.</param>
7894
            <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
7895
            <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
7896
        </member>
7897
        <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
7898
            <summary>
7899
            Represents a trace writer.
7900
            </summary>
7901
        </member>
7902
        <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
7903
            <summary>
7904
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
7905
            For example a filter level of <see cref="F:System.Diagnostics.TraceLevel.Info"/> will exclude <see cref="F:System.Diagnostics.TraceLevel.Verbose"/> messages and include <see cref="F:System.Diagnostics.TraceLevel.Info"/>,
7906
            <see cref="F:System.Diagnostics.TraceLevel.Warning"/> and <see cref="F:System.Diagnostics.TraceLevel.Error"/> messages.
7907
            </summary>
7908
            <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>
7909
        </member>
7910
        <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
7911
            <summary>
7912
            Writes the specified trace level, message and optional exception.
7913
            </summary>
7914
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
7915
            <param name="message">The trace message.</param>
7916
            <param name="ex">The trace exception. This parameter is optional.</param>
7917
        </member>
7918
        <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
7919
            <summary>
7920
            Provides methods to get and set values.
7921
            </summary>
7922
        </member>
7923
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
7924
            <summary>
7925
            Sets the value.
7926
            </summary>
7927
            <param name="target">The target to set the value on.</param>
7928
            <param name="value">The value to set on the target.</param>
7929
        </member>
7930
        <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
7931
            <summary>
7932
            Gets the value.
7933
            </summary>
7934
            <param name="target">The target to get the value from.</param>
7935
            <returns>The value.</returns>
7936
        </member>
7937
        <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
7938
            <summary>
7939
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7940
            </summary>
7941
        </member>
7942
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
7943
            <summary>
7944
            Gets the <see cref="T:System.Type"/> of the collection items.
7945
            </summary>
7946
            <value>The <see cref="T:System.Type"/> of the collection items.</value>
7947
        </member>
7948
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
7949
            <summary>
7950
            Gets a value indicating whether the collection type is a multidimensional array.
7951
            </summary>
7952
            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
7953
        </member>
7954
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.OverrideCreator">
7955
            <summary>
7956
            Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
7957
            </summary>
7958
            <value>The function used to create the object.</value>
7959
        </member>
7960
        <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.HasParameterizedCreator">
7961
            <summary>
7962
            Gets a value indicating whether the creator has a parameter with the collection values.
7963
            </summary>
7964
            <value><c>true</c> if the creator has a parameter with the collection values; otherwise, <c>false</c>.</value>
7965
        </member>
7966
        <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
7967
            <summary>
7968
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
7969
            </summary>
7970
            <param name="underlyingType">The underlying type for the contract.</param>
7971
        </member>
7972
        <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
7973
            <summary>
7974
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7975
            </summary>
7976
        </member>
7977
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
7978
            <summary>
7979
            Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter" />.
7980
            </summary>
7981
            <value>The converter.</value>
7982
        </member>
7983
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
7984
            <summary>
7985
            Gets or sets a value indicating whether the collection items preserve object references.
7986
            </summary>
7987
            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
7988
        </member>
7989
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
7990
            <summary>
7991
            Gets or sets the collection item reference loop handling.
7992
            </summary>
7993
            <value>The reference loop handling.</value>
7994
        </member>
7995
        <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
7996
            <summary>
7997
            Gets or sets the collection item type name handling.
7998
            </summary>
7999
            <value>The type name handling.</value>
8000
        </member>
8001
        <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
8002
            <summary>
8003
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
8004
            </summary>
8005
            <param name="underlyingType">The underlying type for the contract.</param>
8006
        </member>
8007
        <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">
8008
            <summary>
8009
            Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.
8010
            </summary>
8011
            <param name="o">The object that raised the callback event.</param>
8012
            <param name="context">The streaming context.</param>
8013
        </member>
8014
        <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">
8015
            <summary>
8016
            Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.
8017
            </summary>
8018
            <param name="o">The object that raised the callback event.</param>
8019
            <param name="context">The streaming context.</param>
8020
            <param name="errorContext">The error context.</param>
8021
        </member>
8022
        <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">
8023
            <summary>
8024
            Sets extension data for an object during deserialization.
8025
            </summary>
8026
            <param name="o">The object to set extension data on.</param>
8027
            <param name="key">The extension data key.</param>
8028
            <param name="value">The extension data value.</param>
8029
        </member>
8030
        <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">
8031
            <summary>
8032
            Gets extension data for an object during serialization.
8033
            </summary>
8034
            <param name="o">The object to set extension data on.</param>
8035
        </member>
8036
        <member name="T:Newtonsoft.Json.Serialization.JsonContract">
8037
            <summary>
8038
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8039
            </summary>
8040
        </member>
8041
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
8042
            <summary>
8043
            Gets the underlying type for the contract.
8044
            </summary>
8045
            <value>The underlying type for the contract.</value>
8046
        </member>
8047
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
8048
            <summary>
8049
            Gets or sets the type created during deserialization.
8050
            </summary>
8051
            <value>The type created during deserialization.</value>
8052
        </member>
8053
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
8054
            <summary>
8055
            Gets or sets whether this type contract is serialized as a reference.
8056
            </summary>
8057
            <value>Whether this type contract is serialized as a reference.</value>
8058
        </member>
8059
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
8060
            <summary>
8061
            Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for this contract.
8062
            </summary>
8063
            <value>The converter.</value>
8064
        </member>
8065
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">
8066
            <summary>
8067
            Gets or sets all methods called immediately after deserialization of the object.
8068
            </summary>
8069
            <value>The methods called immediately after deserialization of the object.</value>
8070
        </member>
8071
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">
8072
            <summary>
8073
            Gets or sets all methods called during deserialization of the object.
8074
            </summary>
8075
            <value>The methods called during deserialization of the object.</value>
8076
        </member>
8077
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">
8078
            <summary>
8079
            Gets or sets all methods called after serialization of the object graph.
8080
            </summary>
8081
            <value>The methods called after serialization of the object graph.</value>
8082
        </member>
8083
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">
8084
            <summary>
8085
            Gets or sets all methods called before serialization of the object.
8086
            </summary>
8087
            <value>The methods called before serialization of the object.</value>
8088
        </member>
8089
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">
8090
            <summary>
8091
            Gets or sets all method called when an error is thrown during the serialization of the object.
8092
            </summary>
8093
            <value>The methods called when an error is thrown during the serialization of the object.</value>
8094
        </member>
8095
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
8096
            <summary>
8097
            Gets or sets the default creator method used to create the object.
8098
            </summary>
8099
            <value>The default creator method used to create the object.</value>
8100
        </member>
8101
        <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
8102
            <summary>
8103
            Gets or sets a value indicating whether the default creator is non-public.
8104
            </summary>
8105
            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
8106
        </member>
8107
        <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
8108
            <summary>
8109
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8110
            </summary>
8111
        </member>
8112
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyResolver">
8113
            <summary>
8114
            Gets or sets the dictionary key resolver.
8115
            </summary>
8116
            <value>The dictionary key resolver.</value>
8117
        </member>
8118
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
8119
            <summary>
8120
            Gets the <see cref="T:System.Type"/> of the dictionary keys.
8121
            </summary>
8122
            <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
8123
        </member>
8124
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
8125
            <summary>
8126
            Gets the <see cref="T:System.Type"/> of the dictionary values.
8127
            </summary>
8128
            <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
8129
        </member>
8130
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.OverrideCreator">
8131
            <summary>
8132
            Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
8133
            </summary>
8134
            <value>The function used to create the object.</value>
8135
        </member>
8136
        <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.HasParameterizedCreator">
8137
            <summary>
8138
            Gets a value indicating whether the creator has a parameter with the dictionary values.
8139
            </summary>
8140
            <value><c>true</c> if the creator has a parameter with the dictionary values; otherwise, <c>false</c>.</value>
8141
        </member>
8142
        <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
8143
            <summary>
8144
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
8145
            </summary>
8146
            <param name="underlyingType">The underlying type for the contract.</param>
8147
        </member>
8148
        <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
8149
            <summary>
8150
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8151
            </summary>
8152
        </member>
8153
        <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
8154
            <summary>
8155
            Gets or sets the <see cref="T:System.Runtime.Serialization.ISerializable"/> object constructor.
8156
            </summary>
8157
            <value>The <see cref="T:System.Runtime.Serialization.ISerializable"/> object constructor.</value>
8158
        </member>
8159
        <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
8160
            <summary>
8161
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
8162
            </summary>
8163
            <param name="underlyingType">The underlying type for the contract.</param>
8164
        </member>
8165
        <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
8166
            <summary>
8167
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8168
            </summary>
8169
        </member>
8170
        <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
8171
            <summary>
8172
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
8173
            </summary>
8174
            <param name="underlyingType">The underlying type for the contract.</param>
8175
        </member>
8176
        <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
8177
            <summary>
8178
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8179
            </summary>
8180
        </member>
8181
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
8182
            <summary>
8183
            Gets or sets the object member serialization.
8184
            </summary>
8185
            <value>The member object serialization.</value>
8186
        </member>
8187
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
8188
            <summary>
8189
            Gets or sets a value that indicates whether the object's properties are required.
8190
            </summary>
8191
            <value>
8192
                    A value indicating whether the object's properties are required.
8193
            </value>
8194
        </member>
8195
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
8196
            <summary>
8197
            Gets the object's properties.
8198
            </summary>
8199
            <value>The object's properties.</value>
8200
        </member>
8201
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">
8202
            <summary>
8203
            Gets a collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> instances that define the parameters used with <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator"/>.
8204
            </summary>
8205
        </member>
8206
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">
8207
            <summary>
8208
            Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
8209
            This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection.
8210
            </summary>
8211
            <value>The function used to create the object.</value>
8212
        </member>
8213
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">
8214
            <summary>
8215
            Gets or sets the extension data setter.
8216
            </summary>
8217
        </member>
8218
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">
8219
            <summary>
8220
            Gets or sets the extension data getter.
8221
            </summary>
8222
        </member>
8223
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataValueType">
8224
            <summary>
8225
            Gets or sets the extension data value type.
8226
            </summary>
8227
        </member>
8228
        <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataNameResolver">
8229
            <summary>
8230
            Gets or sets the extension data name resolver.
8231
            </summary>
8232
            <value>The extension data name resolver.</value>
8233
        </member>
8234
        <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
8235
            <summary>
8236
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
8237
            </summary>
8238
            <param name="underlyingType">The underlying type for the contract.</param>
8239
        </member>
8240
        <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
8241
            <summary>
8242
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8243
            </summary>
8244
        </member>
8245
        <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
8246
            <summary>
8247
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
8248
            </summary>
8249
            <param name="underlyingType">The underlying type for the contract.</param>
8250
        </member>
8251
        <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
8252
            <summary>
8253
            Maps a JSON property to a .NET member or constructor parameter.
8254
            </summary>
8255
        </member>
8256
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
8257
            <summary>
8258
            Gets or sets the name of the property.
8259
            </summary>
8260
            <value>The name of the property.</value>
8261
        </member>
8262
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
8263
            <summary>
8264
            Gets or sets the type that declared this property.
8265
            </summary>
8266
            <value>The type that declared this property.</value>
8267
        </member>
8268
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
8269
            <summary>
8270
            Gets or sets the order of serialization of a member.
8271
            </summary>
8272
            <value>The numeric order of serialization.</value>
8273
        </member>
8274
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
8275
            <summary>
8276
            Gets or sets the name of the underlying member or parameter.
8277
            </summary>
8278
            <value>The name of the underlying member or parameter.</value>
8279
        </member>
8280
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
8281
            <summary>
8282
            Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
8283
            </summary>
8284
            <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>
8285
        </member>
8286
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.AttributeProvider">
8287
            <summary>
8288
            Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.
8289
            </summary>
8290
            <value>The <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.</value>
8291
        </member>
8292
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
8293
            <summary>
8294
            Gets or sets the type of the property.
8295
            </summary>
8296
            <value>The type of the property.</value>
8297
        </member>
8298
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
8299
            <summary>
8300
            Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter" /> for the property.
8301
            If set this converter takes precedence over the contract converter for the property type.
8302
            </summary>
8303
            <value>The converter.</value>
8304
        </member>
8305
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
8306
            <summary>
8307
            Gets or sets the member converter.
8308
            </summary>
8309
            <value>The member converter.</value>
8310
        </member>
8311
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
8312
            <summary>
8313
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
8314
            </summary>
8315
            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
8316
        </member>
8317
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
8318
            <summary>
8319
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
8320
            </summary>
8321
            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
8322
        </member>
8323
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
8324
            <summary>
8325
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
8326
            </summary>
8327
            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
8328
        </member>
8329
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
8330
            <summary>
8331
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
8332
            </summary>
8333
            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
8334
        </member>
8335
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
8336
            <summary>
8337
            Gets the default value.
8338
            </summary>
8339
            <value>The default value.</value>
8340
        </member>
8341
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
8342
            <summary>
8343
            Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
8344
            </summary>
8345
            <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
8346
        </member>
8347
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
8348
            <summary>
8349
            Gets or sets a value indicating whether this property preserves object references.
8350
            </summary>
8351
            <value>
8352
                    <c>true</c> if this instance is reference; otherwise, <c>false</c>.
8353
            </value>
8354
        </member>
8355
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
8356
            <summary>
8357
            Gets or sets the property null value handling.
8358
            </summary>
8359
            <value>The null value handling.</value>
8360
        </member>
8361
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
8362
            <summary>
8363
            Gets or sets the property default value handling.
8364
            </summary>
8365
            <value>The default value handling.</value>
8366
        </member>
8367
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
8368
            <summary>
8369
            Gets or sets the property reference loop handling.
8370
            </summary>
8371
            <value>The reference loop handling.</value>
8372
        </member>
8373
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
8374
            <summary>
8375
            Gets or sets the property object creation handling.
8376
            </summary>
8377
            <value>The object creation handling.</value>
8378
        </member>
8379
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
8380
            <summary>
8381
            Gets or sets or sets the type name handling.
8382
            </summary>
8383
            <value>The type name handling.</value>
8384
        </member>
8385
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
8386
            <summary>
8387
            Gets or sets a predicate used to determine whether the property should be serialized.
8388
            </summary>
8389
            <value>A predicate used to determine whether the property should be serialized.</value>
8390
        </member>
8391
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldDeserialize">
8392
            <summary>
8393
            Gets or sets a predicate used to determine whether the property should be deserialized.
8394
            </summary>
8395
            <value>A predicate used to determine whether the property should be deserialized.</value>
8396
        </member>
8397
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
8398
            <summary>
8399
            Gets or sets a predicate used to determine whether the property should be serialized.
8400
            </summary>
8401
            <value>A predicate used to determine whether the property should be serialized.</value>
8402
        </member>
8403
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
8404
            <summary>
8405
            Gets or sets an action used to set whether the property has been deserialized.
8406
            </summary>
8407
            <value>An action used to set whether the property has been deserialized.</value>
8408
        </member>
8409
        <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
8410
            <summary>
8411
            Returns a <see cref="T:System.String"/> that represents this instance.
8412
            </summary>
8413
            <returns>
8414
            A <see cref="T:System.String"/> that represents this instance.
8415
            </returns>
8416
        </member>
8417
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
8418
            <summary>
8419
            Gets or sets the converter used when serializing the property's collection items.
8420
            </summary>
8421
            <value>The collection's items converter.</value>
8422
        </member>
8423
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
8424
            <summary>
8425
            Gets or sets whether this property's collection items are serialized as a reference.
8426
            </summary>
8427
            <value>Whether this property's collection items are serialized as a reference.</value>
8428
        </member>
8429
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
8430
            <summary>
8431
            Gets or sets the type name handling used when serializing the property's collection items.
8432
            </summary>
8433
            <value>The collection's items type name handling.</value>
8434
        </member>
8435
        <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
8436
            <summary>
8437
            Gets or sets the reference loop handling used when serializing the property's collection items.
8438
            </summary>
8439
            <value>The collection's items reference loop handling.</value>
8440
        </member>
8441
        <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
8442
            <summary>
8443
            A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
8444
            </summary>
8445
        </member>
8446
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
8447
            <summary>
8448
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
8449
            </summary>
8450
            <param name="type">The type.</param>
8451
        </member>
8452
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
8453
            <summary>
8454
            When implemented in a derived class, extracts the key from the specified element.
8455
            </summary>
8456
            <param name="item">The element from which to extract the key.</param>
8457
            <returns>The key for the specified element.</returns>
8458
        </member>
8459
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
8460
            <summary>
8461
            Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
8462
            </summary>
8463
            <param name="property">The property to add to the collection.</param>
8464
        </member>
8465
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
8466
            <summary>
8467
            Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
8468
            First attempts to get an exact case match of <paramref name="propertyName"/> and then
8469
            a case insensitive match.
8470
            </summary>
8471
            <param name="propertyName">Name of the property.</param>
8472
            <returns>A matching property if found.</returns>
8473
        </member>
8474
        <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
8475
            <summary>
8476
            Gets a property by property name.
8477
            </summary>
8478
            <param name="propertyName">The name of the property to get.</param>
8479
            <param name="comparisonType">Type property name string comparison.</param>
8480
            <returns>A matching property if found.</returns>
8481
        </member>
8482
        <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
8483
            <summary>
8484
            Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8485
            </summary>
8486
        </member>
8487
        <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
8488
            <summary>
8489
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
8490
            </summary>
8491
            <param name="underlyingType">The underlying type for the contract.</param>
8492
        </member>
8493
        <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.CreateJsonConverterInstance(System.Type,System.Object[])">
8494
            <summary>
8495
            Lookup and create an instance of the <see cref="T:Newtonsoft.Json.JsonConverter"/> type described by the argument.
8496
            </summary>
8497
            <param name="converterType">The <see cref="T:Newtonsoft.Json.JsonConverter"/> type to create.</param>
8498
            <param name="converterArgs">Optional arguments to pass to an initializing constructor of the JsonConverter.
8499
            If <c>null</c>, the default constructor is used.</param>
8500
        </member>
8501
        <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
8502
            <summary>
8503
            Represents a trace writer that writes to memory. When the trace message limit is
8504
            reached then old trace messages will be removed as new messages are added.
8505
            </summary>
8506
        </member>
8507
        <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
8508
            <summary>
8509
            Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
8510
            For example a filter level of <see cref="F:System.Diagnostics.TraceLevel.Info"/> will exclude <see cref="F:System.Diagnostics.TraceLevel.Verbose"/> messages and include <see cref="F:System.Diagnostics.TraceLevel.Info"/>,
8511
            <see cref="F:System.Diagnostics.TraceLevel.Warning"/> and <see cref="F:System.Diagnostics.TraceLevel.Error"/> messages.
8512
            </summary>
8513
            <value>
8514
            The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
8515
            </value>
8516
        </member>
8517
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
8518
            <summary>
8519
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.
8520
            </summary>
8521
        </member>
8522
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
8523
            <summary>
8524
            Writes the specified trace level, message and optional exception.
8525
            </summary>
8526
            <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
8527
            <param name="message">The trace message.</param>
8528
            <param name="ex">The trace exception. This parameter is optional.</param>
8529
        </member>
8530
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
8531
            <summary>
8532
            Returns an enumeration of the most recent trace messages.
8533
            </summary>
8534
            <returns>An enumeration of the most recent trace messages.</returns>
8535
        </member>
8536
        <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
8537
            <summary>
8538
            Returns a <see cref="T:System.String"/> of the most recent trace messages.
8539
            </summary>
8540
            <returns>
8541
            A <see cref="T:System.String"/> of the most recent trace messages.
8542
            </returns>
8543
        </member>
8544
        <member name="T:Newtonsoft.Json.Serialization.NamingStrategy">
8545
            <summary>
8546
            A base class for resolving how property names and dictionary keys are serialized.
8547
            </summary>
8548
        </member>
8549
        <member name="P:Newtonsoft.Json.Serialization.NamingStrategy.ProcessDictionaryKeys">
8550
            <summary>
8551
            A flag indicating whether dictionary keys should be processed.
8552
            Defaults to <c>false</c>.
8553
            </summary>
8554
        </member>
8555
        <member name="P:Newtonsoft.Json.Serialization.NamingStrategy.ProcessExtensionDataNames">
8556
            <summary>
8557
            A flag indicating whether extension data names should be processed.
8558
            Defaults to <c>false</c>.
8559
            </summary>
8560
        </member>
8561
        <member name="P:Newtonsoft.Json.Serialization.NamingStrategy.OverrideSpecifiedNames">
8562
            <summary>
8563
            A flag indicating whether explicitly specified property names,
8564
            e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>, should be processed.
8565
            Defaults to <c>false</c>.
8566
            </summary>
8567
        </member>
8568
        <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetPropertyName(System.String,System.Boolean)">
8569
            <summary>
8570
            Gets the serialized name for a given property name.
8571
            </summary>
8572
            <param name="name">The initial property name.</param>
8573
            <param name="hasSpecifiedName">A flag indicating whether the property has had a name explicitly specified.</param>
8574
            <returns>The serialized property name.</returns>
8575
        </member>
8576
        <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetExtensionDataName(System.String)">
8577
            <summary>
8578
            Gets the serialized name for a given extension data name.
8579
            </summary>
8580
            <param name="name">The initial extension data name.</param>
8581
            <returns>The serialized extension data name.</returns>
8582
        </member>
8583
        <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetDictionaryKey(System.String)">
8584
            <summary>
8585
            Gets the serialized key for a given dictionary key.
8586
            </summary>
8587
            <param name="key">The initial dictionary key.</param>
8588
            <returns>The serialized dictionary key.</returns>
8589
        </member>
8590
        <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.ResolvePropertyName(System.String)">
8591
            <summary>
8592
            Resolves the specified property name.
8593
            </summary>
8594
            <param name="name">The property name to resolve.</param>
8595
            <returns>The resolved property name.</returns>
8596
        </member>
8597
        <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
8598
            <summary>
8599
            Represents a method that constructs an object.
8600
            </summary>
8601
            <typeparam name="T">The object type to create.</typeparam>
8602
        </member>
8603
        <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
8604
            <summary>
8605
            When applied to a method, specifies that the method is called when an error occurs serializing an object.
8606
            </summary>
8607
        </member>
8608
        <member name="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider">
8609
            <summary>
8610
            Provides methods to get attributes from a <see cref="T:System.Type"/>, <see cref="T:System.Reflection.MemberInfo"/>, <see cref="T:System.Reflection.ParameterInfo"/> or <see cref="T:System.Reflection.Assembly"/>.
8611
            </summary>
8612
        </member>
8613
        <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.#ctor(System.Object)">
8614
            <summary>
8615
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider"/> class.
8616
            </summary>
8617
            <param name="attributeProvider">The instance to get attributes for. This parameter should be a <see cref="T:System.Type"/>, <see cref="T:System.Reflection.MemberInfo"/>, <see cref="T:System.Reflection.ParameterInfo"/> or <see cref="T:System.Reflection.Assembly"/>.</param>
8618
        </member>
8619
        <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Boolean)">
8620
            <summary>
8621
            Returns a collection of all of the attributes, or an empty collection if there are no attributes.
8622
            </summary>
8623
            <param name="inherit">When <c>true</c>, look up the hierarchy chain for the inherited custom attribute.</param>
8624
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
8625
        </member>
8626
        <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Type,System.Boolean)">
8627
            <summary>
8628
            Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
8629
            </summary>
8630
            <param name="attributeType">The type of the attributes.</param>
8631
            <param name="inherit">When <c>true</c>, look up the hierarchy chain for the inherited custom attribute.</param>
8632
            <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
8633
        </member>
8634
        <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
8635
            <summary>
8636
            Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
8637
            </summary>
8638
        </member>
8639
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
8640
            <summary>
8641
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
8642
            </summary>
8643
            <param name="memberInfo">The member info.</param>
8644
        </member>
8645
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
8646
            <summary>
8647
            Sets the value.
8648
            </summary>
8649
            <param name="target">The target to set the value on.</param>
8650
            <param name="value">The value to set on the target.</param>
8651
        </member>
8652
        <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
8653
            <summary>
8654
            Gets the value.
8655
            </summary>
8656
            <param name="target">The target to get the value from.</param>
8657
            <returns>The value.</returns>
8658
        </member>
8659
        <member name="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy">
8660
            <summary>
8661
            A snake case naming strategy.
8662
            </summary>
8663
        </member>
8664
        <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.#ctor(System.Boolean,System.Boolean)">
8665
            <summary>
8666
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy"/> class.
8667
            </summary>
8668
            <param name="processDictionaryKeys">
8669
            A flag indicating whether dictionary keys should be processed.
8670
            </param>
8671
            <param name="overrideSpecifiedNames">
8672
            A flag indicating whether explicitly specified property names should be processed,
8673
            e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>.
8674
            </param>
8675
        </member>
8676
        <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.#ctor(System.Boolean,System.Boolean,System.Boolean)">
8677
            <summary>
8678
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy"/> class.
8679
            </summary>
8680
            <param name="processDictionaryKeys">
8681
            A flag indicating whether dictionary keys should be processed.
8682
            </param>
8683
            <param name="overrideSpecifiedNames">
8684
            A flag indicating whether explicitly specified property names should be processed,
8685
            e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>.
8686
            </param>
8687
            <param name="processExtensionDataNames">
8688
            A flag indicating whether extension data names should be processed.
8689
            </param>
8690
        </member>
8691
        <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.#ctor">
8692
            <summary>
8693
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy"/> class.
8694
            </summary>
8695
        </member>
8696
        <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.ResolvePropertyName(System.String)">
8697
            <summary>
8698
            Resolves the specified property name.
8699
            </summary>
8700
            <param name="name">The property name to resolve.</param>
8701
            <returns>The resolved property name.</returns>
8702
        </member>
8703
        <member name="T:Newtonsoft.Json.StringEscapeHandling">
8704
            <summary>
8705
            Specifies how strings are escaped when writing JSON text.
8706
            </summary>
8707
        </member>
8708
        <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
8709
            <summary>
8710
            Only control characters (e.g. newline) are escaped.
8711
            </summary>
8712
        </member>
8713
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
8714
            <summary>
8715
            All non-ASCII and control characters (e.g. newline) are escaped.
8716
            </summary>
8717
        </member>
8718
        <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
8719
            <summary>
8720
            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.
8721
            </summary>
8722
        </member>
8723
        <member name="T:Newtonsoft.Json.TypeNameAssemblyFormatHandling">
8724
            <summary>
8725
            Indicates the method that will be used during deserialization for locating and loading assemblies.
8726
            </summary>
8727
        </member>
8728
        <member name="F:Newtonsoft.Json.TypeNameAssemblyFormatHandling.Simple">
8729
            <summary>
8730
            In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the <c>LoadWithPartialName</c> method of the <see cref="T:System.Reflection.Assembly"/> class is used to load the assembly.
8731
            </summary>
8732
        </member>
8733
        <member name="F:Newtonsoft.Json.TypeNameAssemblyFormatHandling.Full">
8734
            <summary>
8735
            In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The <c>Load</c> method of the <see cref="T:System.Reflection.Assembly"/> class is used to load the assembly.
8736
            </summary>
8737
        </member>
8738
        <member name="T:Newtonsoft.Json.TypeNameHandling">
8739
            <summary>
8740
            Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8741
            </summary>
8742
            <remarks>
8743
            <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> should be used with caution when your application deserializes JSON from an external source.
8744
            Incoming types should be validated with a custom <see cref="P:Newtonsoft.Json.JsonSerializer.SerializationBinder"/>
8745
            when deserializing with a value other than <see cref="F:Newtonsoft.Json.TypeNameHandling.None"/>.
8746
            </remarks>
8747
        </member>
8748
        <member name="F:Newtonsoft.Json.TypeNameHandling.None">
8749
            <summary>
8750
            Do not include the .NET type name when serializing types.
8751
            </summary>
8752
        </member>
8753
        <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
8754
            <summary>
8755
            Include the .NET type name when serializing into a JSON object structure.
8756
            </summary>
8757
        </member>
8758
        <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
8759
            <summary>
8760
            Include the .NET type name when serializing into a JSON array structure.
8761
            </summary>
8762
        </member>
8763
        <member name="F:Newtonsoft.Json.TypeNameHandling.All">
8764
            <summary>
8765
            Always include the .NET type name when serializing.
8766
            </summary>
8767
        </member>
8768
        <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
8769
            <summary>
8770
            Include the .NET type name when the type of the object being serialized is not the same as its declared type.
8771
            Note that this doesn't include the root serialized object by default. To include the root object's type name in JSON
8772
            you must specify a root type object with <see cref="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)"/>
8773
            or <see cref="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)"/>.
8774
            </summary>
8775
        </member>
8776
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
8777
            <summary>
8778
            Determines whether the collection is <c>null</c> or empty.
8779
            </summary>
8780
            <param name="collection">The collection.</param>
8781
            <returns>
8782
                    <c>true</c> if the collection is <c>null</c> or empty; otherwise, <c>false</c>.
8783
            </returns>
8784
        </member>
8785
        <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
8786
            <summary>
8787
            Adds the elements of the specified collection to the specified generic <see cref="T:System.Collections.Generic.IList`1"/>.
8788
            </summary>
8789
            <param name="initial">The list to add to.</param>
8790
            <param name="collection">The collection of elements to add.</param>
8791
        </member>
8792
        <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
8793
            <summary>
8794
            Converts the value to the specified type. If the value is unable to be converted, the
8795
            value is checked whether it assignable to the specified type.
8796
            </summary>
8797
            <param name="initialValue">The value to convert.</param>
8798
            <param name="culture">The culture to use when converting.</param>
8799
            <param name="targetType">The type to convert or cast the value to.</param>
8800
            <returns>
8801
            The converted type. If conversion was unsuccessful, the initial value
8802
            is returned if assignable to the target type.
8803
            </returns>
8804
        </member>
8805
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
8806
            <summary>
8807
            Gets a dictionary of the names and values of an <see cref="T:System.Enum"/> type.
8808
            </summary>
8809
            <returns></returns>
8810
        </member>
8811
        <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
8812
            <summary>
8813
            Gets a dictionary of the names and values of an Enum type.
8814
            </summary>
8815
            <param name="enumType">The enum type to get names and values for.</param>
8816
            <returns></returns>
8817
        </member>
8818
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
8819
            <summary>
8820
            Gets the type of the typed collection's items.
8821
            </summary>
8822
            <param name="type">The type.</param>
8823
            <returns>The type of the typed collection's items.</returns>
8824
        </member>
8825
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
8826
            <summary>
8827
            Gets the member's underlying type.
8828
            </summary>
8829
            <param name="member">The member.</param>
8830
            <returns>The underlying type of the member.</returns>
8831
        </member>
8832
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
8833
            <summary>
8834
            Determines whether the member is an indexed property.
8835
            </summary>
8836
            <param name="member">The member.</param>
8837
            <returns>
8838
                    <c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
8839
            </returns>
8840
        </member>
8841
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
8842
            <summary>
8843
            Determines whether the property is an indexed property.
8844
            </summary>
8845
            <param name="property">The property.</param>
8846
            <returns>
8847
                    <c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
8848
            </returns>
8849
        </member>
8850
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
8851
            <summary>
8852
            Gets the member's value on the object.
8853
            </summary>
8854
            <param name="member">The member.</param>
8855
            <param name="target">The target object.</param>
8856
            <returns>The member's value on the object.</returns>
8857
        </member>
8858
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
8859
            <summary>
8860
            Sets the member's value on the target object.
8861
            </summary>
8862
            <param name="member">The member.</param>
8863
            <param name="target">The target.</param>
8864
            <param name="value">The value.</param>
8865
        </member>
8866
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
8867
            <summary>
8868
            Determines whether the specified MemberInfo can be read.
8869
            </summary>
8870
            <param name="member">The MemberInfo to determine whether can be read.</param>
8871
            /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
8872
            <returns>
8873
                    <c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
8874
            </returns>
8875
        </member>
8876
        <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
8877
            <summary>
8878
            Determines whether the specified MemberInfo can be set.
8879
            </summary>
8880
            <param name="member">The MemberInfo to determine whether can be set.</param>
8881
            <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
8882
            <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
8883
            <returns>
8884
                    <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
8885
            </returns>
8886
        </member>
8887
        <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
8888
            <summary>
8889
            Builds a string. Unlike <see cref="T:System.Text.StringBuilder"/> this class lets you reuse its internal buffer.
8890
            </summary>
8891
        </member>
8892
        <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
8893
            <summary>
8894
            Determines whether the string is all white space. Empty string will return <c>false</c>.
8895
            </summary>
8896
            <param name="s">The string to test whether it is all white space.</param>
8897
            <returns>
8898
                    <c>true</c> if the string is all white space; otherwise, <c>false</c>.
8899
            </returns>
8900
        </member>
8901
        <member name="T:Newtonsoft.Json.WriteState">
8902
            <summary>
8903
            Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
8904
            </summary>
8905
        </member>
8906
        <member name="F:Newtonsoft.Json.WriteState.Error">
8907
            <summary>
8908
            An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
8909
            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.
8910
            Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls result in an <see cref="T:System.InvalidOperationException"/> being thrown.
8911
            </summary>
8912
        </member>
8913
        <member name="F:Newtonsoft.Json.WriteState.Closed">
8914
            <summary>
8915
            The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called.
8916
            </summary>
8917
        </member>
8918
        <member name="F:Newtonsoft.Json.WriteState.Object">
8919
            <summary>
8920
            An object is being written. 
8921
            </summary>
8922
        </member>
8923
        <member name="F:Newtonsoft.Json.WriteState.Array">
8924
            <summary>
8925
            An array is being written.
8926
            </summary>
8927
        </member>
8928
        <member name="F:Newtonsoft.Json.WriteState.Constructor">
8929
            <summary>
8930
            A constructor is being written.
8931
            </summary>
8932
        </member>
8933
        <member name="F:Newtonsoft.Json.WriteState.Property">
8934
            <summary>
8935
            A property is being written.
8936
            </summary>
8937
        </member>
8938
        <member name="F:Newtonsoft.Json.WriteState.Start">
8939
            <summary>
8940
            A <see cref="T:Newtonsoft.Json.JsonWriter"/> write method has not been called.
8941
            </summary>
8942
        </member>
8943
    </members>
8944
</doc>
클립보드 이미지 추가 (최대 크기: 500 MB)